Changeset 7715


Ignore:
Timestamp:
2004-07-07T16:18:28+12:00 (20 years ago)
Author:
kjdon
Message:

changed the value on AC_DEFINES to 1 instead of - I think this is what teh default is if you give no value

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl3/configure.ac

    r7714 r7715  
    1010AC_SUBST(VERSION)
    1111
    12 AC_DEFINE(PROTOTYPES, "", Define to 1 if ANSI function prototypes are usable.)
     12AC_DEFINE(PROTOTYPES, 1, Define to 1 if ANSI function prototypes are usable.)
    1313
    1414dnl Checks for programs.
     
    7474AC_HEADER_STDC
    7575AC_CHECK_HEADERS(fcntl.h limits.h sys/time.h unistd.h crypt.h string.h memory.h sys/procfs.h)
    76 AC_EGREP_HEADER(fread, stdio.h, AC_DEFINE(HAVE_FREAD_DECL, "", Some braindead header files do not have the requ'd function declarations))
    77 AC_EGREP_HEADER(fgetc, stdio.h, AC_DEFINE(HAVE_FGETC_DECL, "", Some braindead header files do not have the requ'd function declarations))
    78 AC_EGREP_HEADER(pr_brksize, sys/procfs.h, AC_DEFINE(HAVE_PR_BRKSIZE, "", See if have this field in the prstatus_t structure. It stores the size of the process heap))
     76AC_EGREP_HEADER(fread, stdio.h, AC_DEFINE(HAVE_FREAD_DECL, 1, Some braindead header files do not have the requ'd function declarations))
     77AC_EGREP_HEADER(fgetc, stdio.h, AC_DEFINE(HAVE_FGETC_DECL, 1, Some braindead header files do not have the requ'd function declarations))
     78AC_EGREP_HEADER(pr_brksize, sys/procfs.h, AC_DEFINE(HAVE_PR_BRKSIZE, 1, See if have this field in the prstatus_t structure. It stores the size of the process heap))
    7979
    8080dnl Checks for library functions.
Note: See TracChangeset for help on using the changeset viewer.