home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 7 / FreshFishVol7.bin / bbs / gnu / autoconf-1.11-src.lha / GNU / src / amiga / autoconf-1.11 / NEWS < prev    next >
Text File  |  1994-05-10  |  6KB  |  153 lines

  1. Major changes in release 1.11:
  2.  
  3. * AC_PROG_INSTALL calls install.sh with the -c option.
  4. * AC_SET_MAKE cleans up after itself.
  5. * AC_OUTPUT sets prefix and exec_prefix if they weren't set already.
  6. * AC_OUTPUT prevents shells from looking in PATH for config.status.
  7.  
  8. Plus a few other bug fixes.
  9.  
  10. Major changes in release 1.10:
  11.  
  12. * autoheader uses config.h.bot if present, analogous to config.h.top.
  13. * AC_PROG_INSTALL looks for install.sh in srcdir or srcdir/.. or
  14.   srcdir/../.. and never uses cp.
  15. * AC_PROG_CXX looks for cxx as a C++ compiler.
  16.  
  17. Plus several bugs fixed.
  18.  
  19. Major changes in release 1.9:
  20.  
  21. * AC_YYTEXT_POINTER replaces AC_DECLARE_YYTEXT.
  22. * AC_SIZEOF_TYPE generates the cpp symbol name automatically,
  23.   and autoheader generates entries for those names automatically.
  24. * AC_FIND_X gets the result from xmkmf correctly.
  25. * AC_FIND_X assumes no X if --without-x was given.
  26. * AC_FIND_XTRA adds libraries to the variable X_EXTRA_LIBS.
  27. * AC_PROG_INSTALL finds OSF/1 installbsd.
  28.  
  29. Major changes in release 1.8:
  30.  
  31. ** New macros:
  32. * New macros AC_LANG_C, AC_LANG_CPLUSPLUS, AC_LANG_SAVE, AC_LANG_RESTORE,
  33.   AC_PROG_CXX, AC_PROG_CXXCPP, AC_REQUIRE_CPP
  34.   for checking both C++ and C features in one configure script.
  35. * New macros AC_CHECKING, AC_VERBOSE, AC_WARN, AC_ERROR for printing messages.
  36. * New macros AC_FIND_XTRA, AC_MMAP, AC_SIZEOF_TYPE, AC_PREREQ,
  37.   AC_SET_MAKE, AC_ENABLE.
  38.  
  39. ** Changed macros:
  40. * AC_FIND_X looks for X in more places.
  41. * AC_PROG_INSTALL defaults to install.sh instead of cp, if it's in srcdir.
  42.   install.sh is distributed with Autoconf.
  43. * AC_DECLARE_YYTEXT has been removed because it can't work, pending
  44.   a rewrite of quoting in AC_DEFINE.
  45. * AC_OUTPUT adds its comments in C format when substituting in C files.
  46. * AC_COMPILE_CHECK protects its ECHO-TEXT argument with double quotes.
  47.  
  48. ** New or changed command line options:
  49. * configure accepts --enable-FEATURE[=ARG] and --disable-FEATURE options.
  50. * configure accepts --without-PACKAGE, which sets withval=no.
  51. * configure accepts --x-includes=DIR and --x-libraries=DIR.
  52. * Giving --with-PACKAGE no argument sets withval=yes instead of withval=1.
  53. * configure accepts --help, --version, --silent/--quiet, --no-create options.
  54. * configure accepts and ignores most other Cygnus configure options, and
  55.   warns about unknown options.
  56. * config.status accepts --help, --version options.
  57.  
  58. ** Paths and other changes:
  59. * Relative srcdir values are not made absolute.
  60. * The values of @prefix@ and @exec_prefix@ and @top_srcdir@ get substituted.
  61. * Autoconf library files are installed in ${datadir}/autoconf, not ${datadir}.
  62. * autoheader optionally copies config.h.top to the beginning of config.h.in.
  63. * The example Makefile dependencies for configure et al. work better.
  64. * Namespace cleanup: all shell variables used internally by Autoconf
  65.   have names beginning with `ac_'.
  66.  
  67. More big improvements are in process for future releases, but have not
  68. yet been (variously) finished, integrated, tested, or documented enough
  69. to release yet.
  70.  
  71. Major changes in release 1.7:
  72.  
  73. * New macro AC_OBSOLETE.
  74. * Bugs in Makefile.in fixed.
  75. * AC_LONG_FILE_NAMES improved.
  76.  
  77. Major changes in release 1.6:
  78.  
  79. * New macro AC_LONG_64_BITS.
  80. * Multiple .h files can be created.
  81. * AC_FIND_X looks for X files directly if it doesn't find xmkmf.
  82. * AC_ALLOCA defines C_ALLOCA if using alloca.c.
  83. * --with-NAME can take a value, e.g., --with-targets=sun4,hp300bsd.
  84. * Unused --no-create option to configure removed.
  85. * autoheader doesn't change the timestamp of its output file if
  86.   the file didn't change.
  87. * All macros that look for libraries now use AC_HAVE_LIBRARY.
  88. * config.status checks three optional environment variables to
  89.   modify its behavior.
  90. * The usual bug fixes.
  91.  
  92. Major changes in release 1.5:
  93.  
  94. * New macros AC_FIND_X, AC_OFF_T, AC_STAT_MACROS_BROKEN, AC_REVISION.
  95. * autoconf and autoheader scripts have GNU standards conforming
  96.   --version and --help options (they print their message and exit).
  97. * Many bug fixes.
  98.  
  99. Major changes in release 1.4:
  100.  
  101. * New macros AC_HAVE_POUNDBANG, AC_TIME_WITH_SYS_TIME, AC_LONG_DOUBLE,
  102.   AC_GETGROUPS_T, AC_DEFINE_UNQUOTED.
  103. * autoconf and autoheader use the M4 environment variable to determine the
  104.   path of the m4 program to use.
  105. * The --macrodir option to autoconf and autoheader specifies the directory
  106.   in which acspecific.m4, acgeneral.m4, etc. reside if not the default.
  107. * autoconf and autoheader can take `-' as their file names, which means to
  108.   read stdin as input.
  109. * Resulting configure scripts can take a --verbose option which causes them
  110.   to print the results of their tests.
  111. * AC_DEFINE quotes its second argument in such a way that spaces, magic
  112.   shell characters, etc. will be preserved during various stages of
  113.   expansion done by the shell.  If you don't want this, use
  114.   AC_DEFINE_UNQUOTED instead.
  115. * Much textual processing done with external calls to tr and sed have been
  116.   internalized with builtin m4 `patsubst' and `translit' calls.
  117. * AC_OUTPUT doesn't hardwire the filenames it outputs.  Instead, you can
  118.   set the shell variables `gen_files' and `gen_config' to the list of
  119.   filenames to output.
  120. * AC_DECLARE_YYTEXT does an AC_SUBST of `LEX_OUTPUT_ROOT', which may be
  121.   "lex.yy" or "lexyy", depending on the system. 
  122. * AC_PROGRAMS_CHECK takes an optional third arg.  If given, it is used as
  123.   the default value. 
  124. * If AC_ALLOCA chooses alloca.c, it also defines STACK_DIRECTION.
  125. * AC_CONST works much more reliably on more systems.
  126. * Many bug fixes.
  127.  
  128. Major changes in release 1.3:
  129.  
  130. configure no longer requires awk for packages that use a config.h.
  131. Support handling --with-PACKAGE options.
  132. New `autoheader' script to create `config.h.in' from `configure.in'.
  133. Ignore troublesome -lucb and -lPW when searching for alloca.
  134. Rename --exec_prefix to --exec-prefix for GNU standards conformance.
  135. Improve detection of STDC library.
  136. Add AC_HAVE_LIBRARY to check for non-default libraries.
  137. Function checking should work with future GNU libc releases.
  138.  
  139. Major changes in release 1.2:
  140.  
  141. The --srcdir option is now usually unnecessary.
  142. Add a file containing sample comments describing CPP macros.
  143. A comment in config.status tells which host it was configured on.
  144. Substituted variable values can now contain commas.
  145. Fix bugs in various feature checks.
  146.  
  147. Major changes in release 1.1:
  148.  
  149. Added AC_STRCOLL macro.
  150. Made AC_GETLOADAVG check for more things.
  151. AC_OUTPUT argument is now optional.
  152. Various bug fixes.
  153.