Changeset 280 for branches/GNU/src/gmake/configure.in
- Timestamp:
- May 16, 2005, 6:54:02 PM (20 years ago)
- Location:
- branches/GNU/src/gmake
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/gmake
- Property svn:ignore
-
old new 34 34 README.DOS 35 35 README.W32 36 README.OS2 36 37 aclocal.m4 37 38 autom4te.cache
-
- Property svn:ignore
-
branches/GNU/src/gmake/configure.in
r153 r280 1 1 # Process this file with autoconf to produce a configure script. 2 2 3 AC_INIT([GNU make],[3.81beta 1],[bug-make@gnu.org])3 AC_INIT([GNU make],[3.81beta3],[bug-make@gnu.org]) 4 4 5 5 AC_PREREQ(2.59) 6 AC_REVISION([[$Id: configure.in,v 1.1 25 2004/03/06 08:05:19psmith Exp $]])6 AC_REVISION([[$Id: configure.in,v 1.135 2005/05/10 01:38:18 psmith Exp $]]) 7 7 8 8 # Autoconf setup … … 51 51 AC_HEADER_TIME 52 52 AC_CHECK_HEADERS(stdlib.h locale.h unistd.h limits.h fcntl.h string.h \ 53 memory.h sys/param.h sys/ time.h sys/timeb.h)53 memory.h sys/param.h sys/resource.h sys/time.h sys/timeb.h) 54 54 55 55 # Set a flag if we have an ANSI C compiler … … 135 135 136 136 AC_CHECK_FUNCS( memcpy memmove strchr strdup mkstemp mktemp fdopen \ 137 bsd_signal dup2 getcwd sigsetmask sigaction getgroups \ 138 seteuid setegid setlinebuf setreuid setregid setvbuf pipe \ 139 strerror strsignal) 137 bsd_signal dup2 getcwd realpath sigsetmask sigaction \ 138 getgroups seteuid setegid setlinebuf setreuid setregid \ 139 getrlimit setrlimit setvbuf pipe strerror strsignal \ 140 lstat readlink) 140 141 141 142 AC_FUNC_SETVBUF_REVERSED … … 167 168 fi 168 169 169 AC_CHECK_DECLS([sys_siglist]) 170 AC_CHECK_DECLS([sys_siglist],,, 171 [#include <signal.h> 172 /* NetBSD declares sys_siglist in unistd.h. */ 173 #if HAVE_UNISTD_H 174 # include <unistd.h> 175 #endif 176 ]) 170 177 171 178 … … 236 243 AM_CONDITIONAL(USE_CUSTOMS, test "$use_customs" = true) 237 244 245 # See if the user asked to handle case insensitive file systems. 246 247 AH_TEMPLATE(HAVE_CASE_INSENSITIVE_FS, [Use case insensitive file names]) 248 AC_ARG_ENABLE(case-insensitive-file-system, 249 AC_HELP_STRING([--enable-case-insensitive-file-system], 250 [enable case insensitive file system support]), 251 case_insensitive_fs="yes" AC_DEFINE(HAVE_CASE_INSENSITIVE_FS), 252 case_insensitive_fs="no") 253 238 254 # See if we can handle the job server feature, and if the user wants it. 239 255 … … 255 271 [make_cv_sa_restart=no])]) 256 272 257 # enable make_cv_sa_restart for OS/2258 case "$host_os" in259 os2*) make_cv_sa_restart=yes ;;260 esac261 262 273 if test "$make_cv_sa_restart" != no; then 263 274 AC_DEFINE(HAVE_SA_RESTART, 1, 264 275 [Define if <signal.h> defines the SA_RESTART constant.]) 265 276 fi 277 278 # enable make_cv_sa_restart for OS/2 so that the jobserver will be enabled, 279 # but do it after HAVE_SA_RESTART has been defined. 280 case "$host_os" in 281 os2*) make_cv_sa_restart=yes ;; 282 esac 266 283 267 284 case "$ac_cv_func_pipe/$ac_cv_func_sigaction/$make_cv_sa_restart/$has_wait_nohang/$make_cv_job_server" in … … 269 286 AC_DEFINE(MAKE_JOBSERVER, 1, 270 287 [Define this to enable job server support in GNU make.]);; 288 esac 289 290 # if we have both lstat() and readlink() then we can support symlink 291 # timechecks. 292 case "$ac_cv_func_lstat/$ac_cv_func_readlink" in 293 yes/yes) 294 AC_DEFINE(MAKE_SYMLINKS, 1, 295 [Define this to enable symbolic link timestamp checking.]);; 271 296 esac 272 297 … … 331 356 AC_SUBST(MAKE_HOST) 332 357 358 w32_target_env=no 359 AM_CONDITIONAL([WINDOWSENV], false) 360 361 case "$host" in 362 *-*-mingw32) 363 AM_CONDITIONAL(WINDOWSENV, true) 364 w32_target_env=yes 365 AC_DEFINE([WINDOWS32], [1], [Use platform specific coding]) 366 AC_DEFINE([HAVE_DOS_PATHS], [1], [Use platform specific coding]) 367 ;; 368 esac 369 333 370 # Include the Maintainer's Makefile section, if it's here. 334 371 … … 389 426 390 427 # Specify what files are to be created. 428 AC_CONFIG_FILES(Makefile glob/Makefile po/Makefile.in config/Makefile doc/Makefile w32/Makefile) 429 430 # OK, do it! 431 432 AC_OUTPUT 433 391 434 # We only generate the build.sh if we have a build.sh.in; we won't have 392 435 # one before we've created a distribution. 393 394 AC_CONFIG_FILES(Makefile glob/Makefile po/Makefile.in config/Makefile doc/Makefile) 395 396 if test -f $srcdir/build.sh.in; then 397 AC_CONFIG_FILES(build.sh) 398 fi 399 400 401 # OK, do it! 402 403 AC_OUTPUT 404 436 if test -f build.sh.in; then 437 ./config.status --file build.sh 438 chmod +x build.sh 439 fi 405 440 406 441 dnl Local Variables:
Note:
See TracChangeset
for help on using the changeset viewer.