*** makeinfo/makeinfo.c Sun Sep 19 10:24:44 1999 --- makeinfo/makeinfo.c Tue Aug 8 09:11:00 2000 *************** *** 483,490 **** #endif /* Set the text message domain. */ ! bindtextdomain (PACKAGE, LOCALEDIR); ! textdomain (PACKAGE); /* Parse argument flags from the input line. */ while ((c = getopt_long (argc, argv, "D:e:E:f:hI:o:p:P:r:s:U:vV:w", --- 483,490 ---- #endif /* Set the text message domain. */ ! // bindtextdomain (PACKAGE, LOCALEDIR); ! // textdomain (PACKAGE); /* Parse argument flags from the input line. */ while ((c = getopt_long (argc, argv, "D:e:E:f:hI:o:p:P:r:s:U:vV:w", *************** *** 1318,1329 **** else real_output_filename = xstrdup (real_output_filename); ! output_stream = fopen (real_output_filename, "w"); } set_current_output_filename (real_output_filename); ! if (verbose_mode) printf (_("Making %s file `%s' from `%s'.\n"), no_headers ? "text" : (html ? "HTML" : "info"), output_filename, input_filename); --- 1318,1329 ---- else real_output_filename = xstrdup (real_output_filename); ! output_stream = fopen (real_output_filename, "wb"); } set_current_output_filename (real_output_filename); ! if (verbose_mode || (output_stream != stdout)) printf (_("Making %s file `%s' from `%s'.\n"), no_headers ? "text" : (html ? "HTML" : "info"), output_filename, input_filename); *** makeinfo/node.c Mon Sep 20 07:31:20 1999 --- makeinfo/node.c Tue Aug 8 08:59:00 2000 *************** *** 1508,1514 **** sprintf (split_filename, "%s%s", root_pathname, split_basename); ! fd = open (split_filename, O_WRONLY|O_TRUNC|O_CREAT, 0666); if (fd < 0 || write (fd, the_header, header_size) != header_size || write (fd, the_file + file_top, file_bot - file_top) --- 1508,1514 ---- sprintf (split_filename, "%s%s", root_pathname, split_basename); ! fd = open (split_filename, O_BINARY|O_WRONLY|O_TRUNC|O_CREAT, 0666); if (fd < 0 || write (fd, the_header, header_size) != header_size || write (fd, the_file + file_top, file_bot - file_top) *************** *** 1544,1550 **** /* We have sucessfully created the subfiles. Now write out the original again. We must use `output_stream', or write_tag_table_indirect () won't know where to place the output. */ ! output_stream = fopen (filename, "w"); if (!output_stream) { perror (filename); --- 1544,1550 ---- /* We have sucessfully created the subfiles. Now write out the original again. We must use `output_stream', or write_tag_table_indirect () won't know where to place the output. */ ! output_stream = fopen (filename, "wb"); if (!output_stream) { perror (filename); *** makeinfo/toc.c Mon Aug 9 15:28:18 1999 --- makeinfo/toc.c Tue Aug 8 09:02:52 2000 *************** *** 355,361 **** return -1; } ! toc_fp = fopen (fname, "w"); if (!toc_fp) { fs_error (fname); --- 355,361 ---- return -1; } ! toc_fp = fopen (fname, "wb"); if (!toc_fp) { fs_error (fname); *** lib/system.h Sat Jul 17 16:11:34 1999 --- lib/system.h Mon Aug 7 15:24:12 2000 *************** *** 42,49 **** #endif /* For gettext (NLS). */ ! #include ! #define _(String) gettext (String) #define N_(String) (String) #ifdef STDC_HEADERS --- 42,50 ---- #endif /* For gettext (NLS). */ ! /* #include */ ! /* #define _(String) gettext (String) */ ! #define _(String) (String) #define N_(String) (String) #ifdef STDC_HEADERS *** lib\config.h Tue Jan 1 00:00:00 1980 --- lib\config.h Mon Aug 7 15:32:20 2000 *************** *** 0 **** --- 1,280 ---- + /* config.in. Generated automatically from configure.in by autoheader. */ + /* acconfig.h + This file is in the public domain. + $Id: acconfig.h,v 1.3 1998/12/06 22:04:03 karl Exp $ + + Descriptive text for the C preprocessor macros that + the distributed Autoconf macros can define. + No software package will use all of them; autoheader copies the ones + your configure.in uses into your configuration header file templates. + + The entries are in sort -df order: alphabetical, case insensitive, + ignoring punctuation (such as underscores). Although this order + can split up related entries, it makes it easier to check whether + a given entry is in the file. + + Leave the following blank line there!! Autoheader needs it. */ + + + + /* Define if using alloca.c. */ + #undef C_ALLOCA + + /* Define to empty if the keyword does not work. */ + #undef const + + /* Define to one of _getb67, GETB67, getb67 for Cray-2 and Cray-YMP systems. + This function is required for alloca.c support on those systems. */ + #undef CRAY_STACKSEG_END + + /* Define if you have alloca, as a function or macro. */ + #define HAVE_ALLOCA 1 + + /* Define if you have and it should be used (not on Ultrix). */ + #undef HAVE_ALLOCA_H + + /* Define if you don't have vprintf but do have _doprnt. */ + #undef HAVE_DOPRNT + + /* Define if you have a working `mmap' system call. */ + #undef HAVE_MMAP + + /* Define if you have the strcoll function and it is properly defined. */ + #define HAVE_STRCOLL 1 + + /* Define if you have the vprintf function. */ + #define HAVE_VPRINTF 1 + + /* Define as __inline if that's what the C compiler calls it. */ + #undef inline + + /* Define if on MINIX. */ + #undef _MINIX + + /* Define to `long' if doesn't define. */ + typedef long off_t; + + /* Define if the system does not provide POSIX.1 features except + with this defined. */ + #undef _POSIX_1_SOURCE + + /* Define if you need to in order for stat and other things to work. */ + #undef _POSIX_SOURCE + + /* Define as the return type of signal handlers (int or void). */ + #undef RETSIGTYPE + + /* Define if the setvbuf function takes the buffering type as its second + argument and the buffer pointer as the third, as on System V + before release 3. */ + #undef SETVBUF_REVERSED + + /* Define to `unsigned' if doesn't define. */ + #undef size_t + + /* If using the C implementation of alloca, define if you know the + direction of stack growth for your system; otherwise it will be + automatically deduced at run-time. + STACK_DIRECTION > 0 => grows toward higher addresses + STACK_DIRECTION < 0 => grows toward lower addresses + STACK_DIRECTION = 0 => direction of growth unknown + */ + #undef STACK_DIRECTION + + /* Define if the `S_IS*' macros in do not work properly. */ + #undef STAT_MACROS_BROKEN + + /* Define if you have the ANSI C header files. */ + #define STDC_HEADERS 1 + + /* Define if your declares struct tm. */ + #undef TM_IN_SYS_TIME + + /* Define to 1 if NLS is requested. */ + #undef ENABLE_NLS + + /* Define as 1 if you have catgets and don't want to use GNU gettext. */ + #undef HAVE_CATGETS + + /* Define as 1 if you have gettext and don't want to use GNU gettext. */ + #undef HAVE_GETTEXT + + /* Define if your locale.h file contains LC_MESSAGES. */ + #undef HAVE_LC_MESSAGES + + /* Define as 1 if you have the stpcpy function. */ + #undef HAVE_STPCPY + + /* Define if you have the __argz_count function. */ + #undef HAVE___ARGZ_COUNT + + /* Define if you have the __argz_next function. */ + #undef HAVE___ARGZ_NEXT + + /* Define if you have the __argz_stringify function. */ + #undef HAVE___ARGZ_STRINGIFY + + /* Define if you have the bzero function. */ + #undef HAVE_BZERO + + /* Define if you have the dcgettext function. */ + #undef HAVE_DCGETTEXT + + /* Define if you have the getcwd function. */ + #define HAVE_GETCWD 1 + + /* Define if you have the getpagesize function. */ + #undef HAVE_GETPAGESIZE + + /* Define if you have the memcpy function. */ + #define HAVE_MEMCPY 1 + + /* Define if you have the memmove function. */ + #define HAVE_MEMMOVE 1 + + /* Define if you have the memset function. */ + #define HAVE_MEMSET 1 + + /* Define if you have the munmap function. */ + #undef HAVE_MUNMAP + + /* Define if you have the putenv function. */ + #define HAVE_PUTENV + + /* Define if you have the setenv function. */ + #undef HAVE_SETENV + + /* Define if you have the setlocale function. */ + #undef HAVE_SETLOCALE + + /* Define if you have the setvbuf function. */ + #define HAVE_SETVBUF 1 + + /* Define if you have the sigprocmask function. */ + #undef HAVE_SIGPROCMASK + + /* Define if you have the sigsetmask function. */ + #undef HAVE_SIGSETMASK + + /* Define if you have the stpcpy function. */ + #undef HAVE_STPCPY + + /* Define if you have the strcasecmp function. */ + #undef HAVE_STRCASECMP + + /* Define if you have the strchr function. */ + #define HAVE_STRCHR 1 + + /* Define if you have the strdup function. */ + #define HAVE_STRDUP 1 + + /* Define if you have the strerror function. */ + #define HAVE_STRERROR 1 + + /* Define if you have the strncasecmp function. */ + #undef HAVE_STRNCASECMP + + /* Define if you have the header file. */ + #undef HAVE_ARGZ_H + + /* Define if you have the header file. */ + #define HAVE_FCNTL_H 1 + + /* Define if you have the header file. */ + #define HAVE_LIMITS_H 1 + + /* Define if you have the header file. */ + #define HAVE_LOCALE_H 1 + + /* Define if you have the header file. */ + #define HAVE_MALLOC_H 1 + + /* Define if you have the header file. */ + #define HAVE_MEMORY_H 1 + + /* Define if you have the header file. */ + #undef HAVE_NCURSES_TERMCAP_H + + /* Define if you have the header file. */ + #undef HAVE_NL_TYPES_H + + /* Define if you have the header file. */ + #undef HAVE_PWD_H + + /* Define if you have the header file. */ + #define HAVE_STDLIB_H 1 + + /* Define if you have the header file. */ + #define HAVE_STRING_H 1 + + /* Define if you have the header file. */ + #undef HAVE_STRINGS_H + + /* Define if you have the header file. */ + #undef HAVE_SYS_FCNTL_H + + /* Define if you have the header file. */ + #undef HAVE_SYS_FILE_H + + /* Define if you have the header file. */ + #undef HAVE_SYS_PARAM_H + + /* Define if you have the header file. */ + #undef HAVE_SYS_PTEM_H + + /* Define if you have the header file. */ + #undef HAVE_SYS_TIME_H + + /* Define if you have the header file. */ + #undef HAVE_SYS_TTOLD_H + + /* Define if you have the header file. */ + #undef HAVE_SYS_WAIT_H + + /* Define if you have the header file. */ + #undef HAVE_TERMCAP_H + + /* Define if you have the header file. */ + #undef HAVE_TERMIO_H + + /* Define if you have the header file. */ + #undef HAVE_TERMIOS_H + + /* Define if you have the header file. */ + #undef HAVE_UNISTD_H + + /* Define if you have the bsd library (-lbsd). */ + #undef HAVE_LIBBSD + + /* Define if you have the i library (-li). */ + #undef HAVE_LIBI + + /* Name of package */ + #define PACKAGE "texinfo" + + /* Version number of package */ + #define VERSION "4.0" + + /* Define if TIOCGWINSZ requires sys/ioctl.h */ + #undef GWINSZ_IN_SYS_IOCTL + + /* Define if this function is declared. */ + #undef HAVE_DECL_STRERROR + + /* Define if this function is declared. */ + #undef HAVE_DECL_STRCASECMP + + /* Define if this function is declared. */ + #undef HAVE_DECL_STRNCASECMP + + /* Define if this function is declared. */ + #undef HAVE_DECL_STRCOLL + + + + /* Leave that blank line there!! Autoheader needs it. + If you're adding to this file, keep in mind: + The entries are in sort -df order: alphabetical, case insensitive, + ignoring punctuation (such as underscores). */ + + #define R_OK 4 *** makeinfo/makeinfo.dsp Tue Jan 1 00:00:00 1980 --- makeinfo/makeinfo.dsp Mon Aug 7 15:54:04 2000 *************** *** 0 **** --- 1,180 ---- + # Microsoft Developer Studio Project File - Name="makeinfo" - Package Owner=<4> + # Microsoft Developer Studio Generated Build File, Format Version 6.00 + # ** DO NOT EDIT ** + + # TARGTYPE "Win32 (x86) Console Application" 0x0103 + + CFG=makeinfo - Win32 Debug + !MESSAGE This is not a valid makefile. To build this project using NMAKE, + !MESSAGE use the Export Makefile command and run + !MESSAGE + !MESSAGE NMAKE /f "makeinfo.mak". + !MESSAGE + !MESSAGE You can specify a configuration when running NMAKE + !MESSAGE by defining the macro CFG on the command line. For example: + !MESSAGE + !MESSAGE NMAKE /f "makeinfo.mak" CFG="makeinfo - Win32 Debug" + !MESSAGE + !MESSAGE Possible choices for configuration are: + !MESSAGE + !MESSAGE "makeinfo - Win32 Release" (based on "Win32 (x86) Console Application") + !MESSAGE "makeinfo - Win32 Debug" (based on "Win32 (x86) Console Application") + !MESSAGE + + # Begin Project + # PROP AllowPerConfigDependencies 0 + # PROP Scc_ProjName "" + # PROP Scc_LocalPath "" + CPP=cl.exe + RSC=rc.exe + + !IF "$(CFG)" == "makeinfo - Win32 Release" + + # PROP BASE Use_MFC 0 + # PROP BASE Use_Debug_Libraries 0 + # PROP BASE Output_Dir "Release" + # PROP BASE Intermediate_Dir "Release" + # PROP BASE Target_Dir "" + # PROP Use_MFC 0 + # PROP Use_Debug_Libraries 0 + # PROP Output_Dir "Release" + # PROP Intermediate_Dir "Release" + # PROP Target_Dir "" + # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c + # ADD CPP /nologo /W3 /GX /O2 /I "../lib" /D "NDEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D HAVE_CONFIG_H=1 /YX /FD /c + # ADD BASE RSC /l 0x409 /d "NDEBUG" + # ADD RSC /l 0x409 /d "NDEBUG" + BSC32=bscmake.exe + # ADD BASE BSC32 /nologo + # ADD BSC32 /nologo + LINK32=link.exe + # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 + # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 + + !ELSEIF "$(CFG)" == "makeinfo - Win32 Debug" + + # PROP BASE Use_MFC 0 + # PROP BASE Use_Debug_Libraries 1 + # PROP BASE Output_Dir "Debug" + # PROP BASE Intermediate_Dir "Debug" + # PROP BASE Target_Dir "" + # PROP Use_MFC 0 + # PROP Use_Debug_Libraries 1 + # PROP Output_Dir "Debug" + # PROP Intermediate_Dir "Debug" + # PROP Target_Dir "" + # ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c + # ADD CPP /nologo /W3 /Gm /GX /ZI /Od /I "../lib" /D "_DEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D HAVE_CONFIG_H=1 /YX /FD /GZ /c + # ADD BASE RSC /l 0x409 /d "_DEBUG" + # ADD RSC /l 0x409 /d "_DEBUG" + BSC32=bscmake.exe + # ADD BASE BSC32 /nologo + # ADD BSC32 /nologo + LINK32=link.exe + # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept + # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept + + !ENDIF + + # Begin Target + + # Name "makeinfo - Win32 Release" + # Name "makeinfo - Win32 Debug" + # Begin Group "Source Files" + + # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" + # Begin Source File + + SOURCE=.\cmds.c + # End Source File + # Begin Source File + + SOURCE=.\defun.c + # End Source File + # Begin Source File + + SOURCE=.\files.c + # End Source File + # Begin Source File + + SOURCE=.\footnote.c + # End Source File + # Begin Source File + + SOURCE=..\lib\getopt.c + # End Source File + # Begin Source File + + SOURCE=..\lib\getopt1.c + # End Source File + # Begin Source File + + SOURCE=.\html.c + # End Source File + # Begin Source File + + SOURCE=.\index.c + # End Source File + # Begin Source File + + SOURCE=.\insertion.c + # End Source File + # Begin Source File + + SOURCE=.\lang.c + # End Source File + # Begin Source File + + SOURCE=.\macro.c + # End Source File + # Begin Source File + + SOURCE=.\makeinfo.c + # End Source File + # Begin Source File + + SOURCE=.\multi.c + # End Source File + # Begin Source File + + SOURCE=.\node.c + # End Source File + # Begin Source File + + SOURCE=.\sectioning.c + # End Source File + # Begin Source File + + SOURCE=..\lib\strcasecmp.c + # End Source File + # Begin Source File + + SOURCE=..\lib\substring.c + # End Source File + # Begin Source File + + SOURCE=.\toc.c + # End Source File + # Begin Source File + + SOURCE=..\lib\xexit.c + # End Source File + # Begin Source File + + SOURCE=..\lib\xmalloc.c + # End Source File + # Begin Source File + + SOURCE=..\lib\xstrdup.c + # End Source File + # End Group + # Begin Group "Header Files" + + # PROP Default_Filter "h;hpp;hxx;hm;inl" + # End Group + # Begin Group "Resource Files" + + # PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" + # End Group + # End Target + # End Project *** makeinfo/makeinfo.dsw Tue Jan 1 00:00:00 1980 --- makeinfo/makeinfo.dsw Mon Aug 7 15:06:12 2000 *************** *** 0 **** --- 1,29 ---- + Microsoft Developer Studio Workspace File, Format Version 6.00 + # WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! + + ############################################################################### + + Project: "makeinfo"=".\makeinfo.dsp" - Package Owner=<4> + + Package=<5> + {{{ + }}} + + Package=<4> + {{{ + }}} + + ############################################################################### + + Global: + + Package=<5> + {{{ + }}} + + Package=<3> + {{{ + }}} + + ############################################################################### +