Ignore:
Timestamp:
Sep 8, 2004, 4:43:30 AM (21 years ago)
Author:
bird
Message:

GNU Make 3.81beta1.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/GNU/src/gmake/configure.in

    r54 r153  
    11# Process this file with autoconf to produce a configure script.
    22
    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 $]])
     3AC_INIT([GNU make],[3.81beta1],[bug-make@gnu.org])
     4
     5AC_PREREQ(2.59)
     6AC_REVISION([[$Id: configure.in,v 1.125 2004/03/06 08:05:19 psmith Exp $]])
    87
    98# Autoconf setup
     
    1312
    1413# Automake setup
    15 AM_INIT_AUTOMAKE([1.7.6])
     14AM_INIT_AUTOMAKE([1.8.2])
    1615
    1716# Checks for programs.
     
    3534# Enable gettext, in "external" mode.
    3635
    37 AM_GNU_GETTEXT_VERSION(0.12.1)
     36AM_GNU_GETTEXT_VERSION(0.14.1)
    3837AM_GNU_GETTEXT([external])
    3938
     
    5453                 memory.h sys/param.h sys/time.h sys/timeb.h)
    5554
     55# Set a flag if we have an ANSI C compiler
     56if 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.])
     59fi
     60
     61
     62# Determine what kind of variadic function calls we support
     63AC_CHECK_HEADERS(stdarg.h varargs.h, break)
     64
    5665AM_PROG_CC_C_O
    57 AM_PROG_CC_STDC
    5866AC_C_CONST
    5967AC_TYPE_SIGNAL
     
    131139                strerror strsignal)
    132140
    133 make_FUNC_SETVBUF_REVERSED
     141AC_FUNC_SETVBUF_REVERSED
    134142
    135143# strcoll() is used by the GNU glob library
     
    246254    [make_cv_sa_restart=yes],
    247255    [make_cv_sa_restart=no])])
     256
     257# enable make_cv_sa_restart for OS/2
     258case "$host_os" in
     259  os2*) make_cv_sa_restart=yes ;;
     260esac
     261
    248262if test "$make_cv_sa_restart" != no; then
    249263  AC_DEFINE(HAVE_SA_RESTART, 1,
     
    328342AM_WITH_DMALLOC
    329343
     344# Forcibly disable SET_MAKE.  If it's set it breaks things like the test
     345# scripts, etc.
     346SET_MAKE=
    330347
    331348# Sanity check and inform the user of what we found
Note: See TracChangeset for help on using the changeset viewer.