2006-02-11 19:02:21 +00:00
|
|
|
/* configh.dos -- hand-massaged config.h file for MS-DOS builds -*-C-*-
|
|
|
|
|
2012-03-05 14:10:39 +00:00
|
|
|
Copyright (C) 1994-2012 Free Software Foundation, Inc.
|
2006-02-11 19:02:21 +00:00
|
|
|
This file is part of GNU Make.
|
|
|
|
|
|
|
|
GNU Make is free software; you can redistribute it and/or modify it under the
|
|
|
|
terms of the GNU General Public License as published by the Free Software
|
2007-07-04 19:35:15 +00:00
|
|
|
Foundation; either version 3 of the License, or (at your option) any later
|
|
|
|
version.
|
2006-02-11 19:02:21 +00:00
|
|
|
|
|
|
|
GNU Make is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
|
|
A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along with
|
2007-07-04 19:35:15 +00:00
|
|
|
this program. If not, see <http://www.gnu.org/licenses/>. */
|
2002-07-08 13:05:02 +00:00
|
|
|
|
* configh.dos.template: Remove unconditional definition of
SYS_SIGLIST_DECLARED.
Include <sys/version.h> because ports of GCC 4.3.0 and later no
longer include it, so macros like __DJGPP_MINOR__ are no longer
defined automatically.
* Makefile.DOS.template (INCLUDES): Use $(prefix) and the
corresponding variables to define LIBDIR, INCLUDEDIR and LOCALEDIR
instead of using the hardcoded ones.
(SUBDIRS): doc subdir added.
(INFO_DEPS, DVIS): Values changed to 'make.info' and 'make.dvi'.
(TEXI2HTML, TEXI2HTML_FLAGS): Removed. Use makeinfo --html to
create html formated docs. texi2html may not be ported to DOS.
(make.info, make.dvi, make.ps, make.html): Make targets depend on
'make.texi'.
(.texi.info, .texi, .texi.dvi): Now recursively invocate. Change
-I switch to look in ./ instead of ./doc.
(html): Target depend on html-recursive instead of make_1.html.
(make_1.html): Removed.
(mostlyclean-aminfo): Use $(srcdir)/doc instead of ./ as prefix.
(all-recursive): Allow for more than one subdir in the build
process.
(mostlyclean-recursive, clean-recursive, distclean-recursive)
(maintainer-clean-recursive, check-recursive): Enter in doc/ too.
(tags-recursive): Allow for more than one subdir in the build
process.
(info-recursive, dvi-recursive, ps-recursive, html-recursive): New
targets. Enter into doc/ to produce the targets.
(all-am): $(INFO_DEPS) replaced by info.
2009-09-27 16:22:50 +00:00
|
|
|
/* Include this header to make __DJGPP_MINOR__ available because DJGPP ports
|
|
|
|
of GCC 4.3.0 and later no longer do it automatically. */
|
|
|
|
#include <sys/version.h>
|
|
|
|
|
2002-07-08 13:05:02 +00:00
|
|
|
/* Many things are defined already by a system header. */
|
|
|
|
#include <sys/config.h>
|
|
|
|
|
|
|
|
#if __DJGPP__ > 2 || __DJGPP_MINOR__ > 1
|
|
|
|
|
2012-03-04 00:24:20 +00:00
|
|
|
/* Define to 1 if 'sys_siglist' is declared by <signal.h> or <unistd.h>. */
|
2002-07-08 13:05:02 +00:00
|
|
|
# define SYS_SIGLIST_DECLARED 1
|
|
|
|
|
2012-03-04 00:24:20 +00:00
|
|
|
/* Define to 1 if the C library defines the variable '_sys_siglist'. */
|
2007-12-22 11:27:02 +00:00
|
|
|
# define HAVE_DECL_SYS_SIGLIST 1
|
2002-07-08 13:05:02 +00:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
/* Define NSIG. */
|
|
|
|
# define NSIG SIGMAX
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Use high resolution file timestamps if nonzero. */
|
|
|
|
#define FILE_TIMESTAMP_HI_RES 0
|
|
|
|
|
2012-03-04 00:24:20 +00:00
|
|
|
/* Define to 1 if you have 'alloca', as a function or macro. */
|
2002-07-08 13:05:02 +00:00
|
|
|
#define HAVE_ALLOCA 1
|
|
|
|
|
2007-05-09 02:01:53 +00:00
|
|
|
/* Define to 1 if you have the fdopen function. */
|
2002-07-08 13:05:02 +00:00
|
|
|
#define HAVE_FDOPEN 1
|
|
|
|
|
2012-03-04 00:24:20 +00:00
|
|
|
/* Define to 1 if you have the 'getgroups' function. */
|
2002-07-08 13:05:02 +00:00
|
|
|
#define HAVE_GETGROUPS 1
|
|
|
|
|
2007-05-09 02:01:53 +00:00
|
|
|
/* Define to 1 if you have the <memory.h> header file. */
|
2002-07-08 13:05:02 +00:00
|
|
|
#define HAVE_MEMORY_H 1
|
|
|
|
|
2007-05-09 02:01:53 +00:00
|
|
|
/* Define to 1 if you have the mkstemp function. */
|
2002-07-08 13:05:02 +00:00
|
|
|
#define HAVE_MKSTEMP 1
|
|
|
|
|
2012-03-04 00:24:20 +00:00
|
|
|
/* Define to 1 if you have the 'mktemp' function. */
|
2002-07-08 13:05:02 +00:00
|
|
|
#define HAVE_MKTEMP 1
|
|
|
|
|
2012-03-04 00:24:20 +00:00
|
|
|
/* Define to 1 if you have the 'setlinebuf' function. */
|
2002-07-08 13:05:02 +00:00
|
|
|
#define HAVE_SETLINEBUF 1
|
|
|
|
|
2012-03-04 00:24:20 +00:00
|
|
|
/* Define to 1 if you have the 'setvbuf' function. */
|
2002-07-08 13:05:02 +00:00
|
|
|
#define HAVE_SETVBUF 1
|
|
|
|
|
|
|
|
#define SCCS_GET "get"
|
|
|
|
|
2012-03-04 00:24:20 +00:00
|
|
|
/* Define to 'unsigned long' or 'unsigned long long'
|
2002-07-08 13:05:02 +00:00
|
|
|
if <inttypes.h> doesn't define. */
|
|
|
|
#define uintmax_t unsigned long long
|
|
|
|
|
|
|
|
/* Define the type of the first arg to select(). */
|
|
|
|
#define fd_set_size_t int
|
|
|
|
|
2007-05-09 02:01:53 +00:00
|
|
|
/* Define to 1 if you have the select function. */
|
2002-07-08 13:05:02 +00:00
|
|
|
#define HAVE_SELECT 1
|
|
|
|
|
2007-05-09 02:01:53 +00:00
|
|
|
/* Define to 1 if your compiler conforms to the ANSI C standard. */
|
2004-03-06 08:05:17 +00:00
|
|
|
#define HAVE_ANSI_COMPILER 1
|
|
|
|
|
|
|
|
/* Define to 1 if you have the <stdarg.h> header file. */
|
|
|
|
#define HAVE_STDARG_H 1
|
|
|
|
|
2007-05-09 02:01:53 +00:00
|
|
|
/* Define to 1 if you have the vprintf library function. */
|
2002-07-08 13:05:02 +00:00
|
|
|
#undef HAVE_VPRINTF
|
|
|
|
#define HAVE_VPRINTF 1
|
|
|
|
|
2007-05-09 02:01:53 +00:00
|
|
|
/* Define to 1 if you have the stricmp function. */
|
|
|
|
#define HAVE_STRICMP 1
|
|
|
|
|
2012-03-04 00:24:20 +00:00
|
|
|
/* Define to 1 if you have the 'strncasecmp' function. */
|
2010-08-07 08:15:45 +00:00
|
|
|
#define HAVE_STRNCASECMP 1
|
|
|
|
|
2002-07-08 13:05:02 +00:00
|
|
|
/* Name of the package */
|
|
|
|
#define PACKAGE "%PACKAGE%"
|
|
|
|
|
|
|
|
/* Define to the address where bug reports for this package should be sent. */
|
|
|
|
#define PACKAGE_BUGREPORT "bug-%PACKAGE%@gnu.org"
|
|
|
|
|
|
|
|
/* Define to the full name of this package. */
|
|
|
|
#define PACKAGE_NAME "GNU %PACKAGE%"
|
|
|
|
|
|
|
|
/* Define to the full name and version of this package. */
|
|
|
|
#define PACKAGE_STRING "GNU %PACKAGE% %VERSION%"
|
|
|
|
|
|
|
|
/* Define to the one symbol short name of this package. */
|
|
|
|
#define PACKAGE_TARNAME "%PACKAGE%"
|
|
|
|
|
|
|
|
/* Define to the version of this package. */
|
|
|
|
#define PACKAGE_VERSION "%VERSION%"
|
|
|
|
|
|
|
|
/* Define to 1 if the C compiler supports function prototypes. */
|
|
|
|
#define PROTOTYPES 1
|
|
|
|
|
|
|
|
/* Version number of package */
|
|
|
|
#define VERSION "%VERSION%"
|
|
|
|
|
|
|
|
/* Build host information. */
|
|
|
|
#define MAKE_HOST "i386-pc-msdosdjgpp"
|
2002-08-10 01:27:16 +00:00
|
|
|
|
|
|
|
/* Grok DOS paths (drive specs and backslash path element separators) */
|
|
|
|
#define HAVE_DOS_PATHS
|