44633
|
1 # -sed2v2.inp-------------------------------------------------------------
|
|
2 # Configuration script for src/config.h under DJGPP v2.x
|
|
3 # ----------------------------------------------------------------------
|
|
4 #
|
|
5 # Copyright (C) 1993, 1994, 1995, 1996, 1997, 1999, 2000, 2002
|
|
6 # Free Software Foundation, Inc.
|
|
7 #
|
|
8 # This file is part of GNU Emacs.
|
|
9 #
|
|
10 # This file is free software; as a special exception, the author gives
|
|
11 # unlimited permission to copy and/or distribute it, with or without
|
|
12 # modifications, as long as this notice is preserved.
|
|
13 #
|
|
14 # This program is distributed in the hope that it will be useful,
|
|
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
17 #
|
|
18 # ----------------------------------------------------------------------
|
|
19
|
|
20 /^#define EMACS_CONFIG_H/a\
|
|
21 \
|
|
22 #include <sys/version.h>\
|
|
23 /* In DJGPP v2.x almost everything is already defined in a system header. */\
|
|
24 #include <sys/config.h>\
|
|
25 /* For those who still use DJGPP v2.01 */\
|
|
26 #if __DJGPP__ == 2 && __DJGPP_MINOR__ == 1\
|
|
27 #define NSIG 320\
|
|
28 #endif
|
|
29
|
|
30 /^#undef HAVE_ALLOCA *$/s/^.*$/#define HAVE_ALLOCA 1/
|
|
31 /^#undef HAVE_SETITIMER *$/s/^.*$/#define HAVE_SETITIMER 1/
|
|
32 /^#undef HAVE_STRUCT_UTIMBUF *$/s/^.*$/#define HAVE_STRUCT_UTIMBUF 1/
|
|
33 /^#undef LOCALTIME_CACHE *$/s/^.*$/#define LOCALTIME_CACHE 1/
|
|
34 /^#undef HAVE_TZSET *$/s/^.*$/#define HAVE_TZSET 1/
|
|
35 /^#undef HAVE_LOGB *$/s/^.*$/#define HAVE_LOGB 1/
|
|
36 /^#undef HAVE_FREXP *$/s/^.*$/#define HAVE_FREXP 1/
|
|
37 /^#undef HAVE_FMOD *$/s/^.*$/#define HAVE_FMOD 1/
|
|
38 /^#undef HAVE_RINT *$/s/^.*$/#define HAVE_RINT 1/
|
|
39 /^#undef HAVE_CBRT *$/s/^.*$/#define HAVE_CBRT 1/
|
|
40 /^#undef HAVE_FPATHCONF *$/s/^.*$/#define HAVE_FPATHCONF 1/
|
|
41 /^#undef HAVE_SETRLIMIT *$/s/^.*$/#define HAVE_SETRLIMIT 1/
|
|
42 /^#undef HAVE_TM_GMTOFF *$/s/^.*$/#define HAVE_TM_GMTOFF 1/
|
|
43 /^#undef HAVE_MBLEN *$/s/^.*$/#define HAVE_MBLEN 1/
|
|
44 /^#undef HAVE_STRUCT_TIMEZONE *$/s/^.*$/#define HAVE_STRUCT_TIMEZONE 1/
|
|
45 /^#undef HAVE_INDEX *$/s/^.*$/#define HAVE_INDEX 1/
|
|
46 /^#undef HAVE_RINDEX *$/s/^.*$/#define HAVE_RINDEX 1/
|
|
47 /^#undef HAVE_MKSTEMP *$/s/^.*$/#define HAVE_MKSTEMP 1/
|
|
48 /^#undef HAVE_STRUCT_TM_TM_ZONE *$/s/^.*$/#define HAVE_STRUCT_TM_TM_ZONE 1/
|
|
49 /^#undef PACKAGE_BUGREPORT/s/^.*$/#define PACKAGE_BUGREPORT ""/
|
|
50 /^#undef PACKAGE_NAME/s/^.*$/#define PACKAGE_NAME ""/
|
|
51 /^#undef PACKAGE_STRING/s/^.*$/#define PACKAGE_STRING ""/
|
|
52 /^#undef PACKAGE_TARNAME/s/^.*$/#define PACKAGE_TARNAME ""/
|
|
53 /^#undef PACKAGE_VERSION/s/^.*$/#define PACKAGE_VERSION ""/
|
|
54 /^#undef SYS_SIGLIST_DECLARED/s/^.*$/#define SYS_SIGLIST_DECLARED 1/
|
|
55
|
|
56 /^#undef GNU_MALLOC *$/s/^.*$/#define GNU_MALLOC 1/
|
|
57 /^#undef REL_ALLOC *$/s/^.*$/#define REL_ALLOC 1/
|
|
58
|
|
59 s/^#define USER_FULL_NAME .*$/#define USER_FULL_NAME (getenv ("NAME"))/
|
|
60 s/^#undef STACK_DIRECTION *$/#define STACK_DIRECTION -1/
|
|
61 s/^#undef EMACS_CONFIGURATION *$/#define EMACS_CONFIGURATION "i386-pc-msdosdjgpp"/
|
|
62 s/^#undef EMACS_CONFIG_OPTIONS *$/#define EMACS_CONFIG_OPTIONS "msdos"/
|
|
63 s!^#undef config_opsysfile *$!#define config_opsysfile "s/msdos.h"!
|
|
64 s!^#undef config_machfile *$!#define config_machfile "m/intel386.h"!
|
|
65 s/^#undef PROTOTYPES *$/#define PROTOTYPES 1/
|
|
66 s/^#undef POINTER_TYPE *$/#define POINTER_TYPE void/
|
|
67 # ------------------------------------------------------------
|
|
68 # Without this ifndef, gcc -E -traditional barfs with GCC 3.0
|
|
69 # on the line which says if ! HAVE_MKTIME...
|
|
70 # ------------------------------------------------------------
|
|
71 /^#if ! HAVE_MKTIME || BROKEN_MKTIME/i\
|
|
72 #ifndef __DJGPP__
|
|
73 /^#define mktime emacs_mktime/a\
|
|
74 #endif
|
|
75
|
|
76 /^#undef HAVE_STDINT_H/c\
|
|
77 #if __DJGPP__ > 2 || __DJGPP_MINOR__ > 3\
|
|
78 #define HAVE_STDINT_H 1\
|
|
79 #else\
|
|
80 #undef HAVE_STDINT_H\
|
|
81 #endif
|
|
82
|
|
83 # Comment out any remaining undef directives, because some of them
|
|
84 # might be defined in sys/config.h we include at the top of config.h.
|
|
85 /^#undef BSTRING/s|#undef|# undef|
|
|
86 /^#undef .*$/s|^.*$|/* & */|
|