Changeset 153 for branches/GNU/src/gmake/configure.in
- Timestamp:
- Sep 8, 2004, 4:43:30 AM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/gmake/configure.in
r54 r153 1 1 # Process this file with autoconf to produce a configure script. 2 2 3 AC_INIT([GNU make],[3.81rc1],[bug-make@gnu.org]) 4 5 AC_PREREQ(2.57) 6 7 AC_REVISION([[$Id: configure.in,v 1.120 2003/07/31 13:04:32 psmith Exp $]]) 3 AC_INIT([GNU make],[3.81beta1],[bug-make@gnu.org]) 4 5 AC_PREREQ(2.59) 6 AC_REVISION([[$Id: configure.in,v 1.125 2004/03/06 08:05:19 psmith Exp $]]) 8 7 9 8 # Autoconf setup … … 13 12 14 13 # Automake setup 15 AM_INIT_AUTOMAKE([1. 7.6])14 AM_INIT_AUTOMAKE([1.8.2]) 16 15 17 16 # Checks for programs. … … 35 34 # Enable gettext, in "external" mode. 36 35 37 AM_GNU_GETTEXT_VERSION(0.1 2.1)36 AM_GNU_GETTEXT_VERSION(0.14.1) 38 37 AM_GNU_GETTEXT([external]) 39 38 … … 54 53 memory.h sys/param.h sys/time.h sys/timeb.h) 55 54 55 # Set a flag if we have an ANSI C compiler 56 if test "$ac_cv_prog_cc_stdc" != no; then 57 AC_DEFINE(HAVE_ANSI_COMPILER, 1, 58 [Define if your compiler conforms to the ANSI C standard.]) 59 fi 60 61 62 # Determine what kind of variadic function calls we support 63 AC_CHECK_HEADERS(stdarg.h varargs.h, break) 64 56 65 AM_PROG_CC_C_O 57 AM_PROG_CC_STDC58 66 AC_C_CONST 59 67 AC_TYPE_SIGNAL … … 131 139 strerror strsignal) 132 140 133 make_FUNC_SETVBUF_REVERSED141 AC_FUNC_SETVBUF_REVERSED 134 142 135 143 # strcoll() is used by the GNU glob library … … 246 254 [make_cv_sa_restart=yes], 247 255 [make_cv_sa_restart=no])]) 256 257 # enable make_cv_sa_restart for OS/2 258 case "$host_os" in 259 os2*) make_cv_sa_restart=yes ;; 260 esac 261 248 262 if test "$make_cv_sa_restart" != no; then 249 263 AC_DEFINE(HAVE_SA_RESTART, 1, … … 328 342 AM_WITH_DMALLOC 329 343 344 # Forcibly disable SET_MAKE. If it's set it breaks things like the test 345 # scripts, etc. 346 SET_MAKE= 330 347 331 348 # Sanity check and inform the user of what we found
Note:
See TracChangeset
for help on using the changeset viewer.