diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-04-20 10:57:54 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-04-20 10:57:54 +0000 |
commit | 8f2d8b1ab84f138262ea5c217520ff3c56568ed4 (patch) | |
tree | 0105216984893837e703577b4832f6f842924ee7 | |
parent | c9b4e551f054b5bbe070339d4295406690f5fe02 (diff) |
INTEGRATION: CWS dmake43p01 (1.12.2); FILE MERGED
2006/02/12 00:47:36 vq 1.12.2.5: #i61940# Enable the alternative use of spawn instead of fork/exec for
dmake. Add the configure option --enable-spawn. Regenerate autotool files.
2006/02/01 23:28:53 vq 1.12.2.4: #i60948# Add -m option family to generate timing information for targets
and/or recipes. (Autotools files were regenerated.)
2006/01/26 02:54:26 vq 1.12.2.3: #i61170# Fix TMD macro and regenerate autotool files.
2005/10/25 17:19:42 vq 1.12.2.2: #i53148# Restore old behaviour for non-*NIX dmake versions.
2005/04/22 01:04:35 vq 1.12.2.1: #i47851# Increase the version number to 4.4-cvs and slightly rearrange the
output of "dmake -V".
Remove the hardcoded (in autotools builds) OS macro. It had the wrong value
to be usable with the startup/*.mk and is not mentioned in the man page.
Clean up configure.in and friends.
-rw-r--r-- | dmake/config.h.in | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/dmake/config.h.in b/dmake/config.h.in index d7232fb4d9fe..91a0b93ab03b 100644 --- a/dmake/config.h.in +++ b/dmake/config.h.in @@ -1,5 +1,11 @@ /* config.h.in. Generated from configure.in by autoheader. */ +/* Build info string */ +#undef BUILDINFO + +/* Enables the use of spawn instead of fork/exec if it is supported. */ +#undef ENABLE_SPAWN + /* Define to 1 if you have the <dirent.h> header file, and it defines `DIR'. */ #undef HAVE_DIRENT_H @@ -16,6 +22,9 @@ /* Define to 1 if you have the `getcwd' function. */ #undef HAVE_GETCWD +/* Define to 1 if you have the `gettimeofday' function. */ +#undef HAVE_GETTIMEOFDAY + /* Define to 1 if you have the `getwd' function. */ #undef HAVE_GETWD @@ -90,6 +99,9 @@ /* Define to 1 if you have the <sys/stat.h> header file. */ #undef HAVE_SYS_STAT_H +/* Define to 1 if you have the <sys/time.h> header file. */ +#undef HAVE_SYS_TIME_H + /* Define to 1 if you have the <sys/types.h> header file. */ #undef HAVE_SYS_TYPES_H @@ -126,6 +138,10 @@ /* Define to 1 if you have the <wait.h> header file. */ #undef HAVE_WAIT_H +/* Do not check for drive letters. Introduced as an optimization for iz61170. + */ +#undef NO_DRIVE_LETTERS + /* Name of package */ #undef PACKAGE @@ -162,6 +178,10 @@ /* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */ #undef TIME_WITH_SYS_TIME +/* Use sane redirection mechanism for systems that support parallel building, + see iz53148. */ +#undef USE_SANE_EXEC_SHELL_REDIR + /* Version number of package */ #undef VERSION |