Add 2007 to copyright years.
[bpt/emacs.git] / msdos / sed2v2.inp
CommitLineData
a395d4a9
EZ
1# -sed2v2.inp-------------------------------------------------------------
2# Configuration script for src/config.h under DJGPP v2.x
3# ----------------------------------------------------------------------
4#
b65d8176 5# Copyright (C) 1993, 1994, 1995, 1996, 1997, 1999, 2000, 2002, 2003,
4e6835db 6# 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
a395d4a9
EZ
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/
8e1cc65f 40/^#undef HAVE_DIFFTIME *$/s/^.*$/#define HAVE_DIFFTIME 1/
a395d4a9 41/^#undef HAVE_FPATHCONF *$/s/^.*$/#define HAVE_FPATHCONF 1/
8e1cc65f
EZ
42/^#undef HAVE_MEMCMP *$/s/^.*$/#define HAVE_MEMCMP 1/
43/^#undef HAVE_MEMMOVE *$/s/^.*$/#define HAVE_MEMMOVE 1/
a395d4a9 44/^#undef HAVE_SETRLIMIT *$/s/^.*$/#define HAVE_SETRLIMIT 1/
3b4346a5 45/^#undef HAVE_GETRUSAGE *$/s/^.*$/#define HAVE_GETRUSAGE 1/
a395d4a9
EZ
46/^#undef HAVE_TM_GMTOFF *$/s/^.*$/#define HAVE_TM_GMTOFF 1/
47/^#undef HAVE_MBLEN *$/s/^.*$/#define HAVE_MBLEN 1/
48/^#undef HAVE_STRUCT_TIMEZONE *$/s/^.*$/#define HAVE_STRUCT_TIMEZONE 1/
49/^#undef HAVE_INDEX *$/s/^.*$/#define HAVE_INDEX 1/
8e1cc65f 50/^#undef HAVE_SIZE_T *$/s/^.*$/#define HAVE_SIZE_T 1/
a395d4a9
EZ
51/^#undef HAVE_RINDEX *$/s/^.*$/#define HAVE_RINDEX 1/
52/^#undef HAVE_MKSTEMP *$/s/^.*$/#define HAVE_MKSTEMP 1/
53/^#undef HAVE_STRUCT_TM_TM_ZONE *$/s/^.*$/#define HAVE_STRUCT_TM_TM_ZONE 1/
0d9ab48d 54/^#undef HAVE_SYNC *$/s/^.*$/#define HAVE_SYNC 1/
a395d4a9
EZ
55/^#undef PACKAGE_BUGREPORT/s/^.*$/#define PACKAGE_BUGREPORT ""/
56/^#undef PACKAGE_NAME/s/^.*$/#define PACKAGE_NAME ""/
57/^#undef PACKAGE_STRING/s/^.*$/#define PACKAGE_STRING ""/
58/^#undef PACKAGE_TARNAME/s/^.*$/#define PACKAGE_TARNAME ""/
59/^#undef PACKAGE_VERSION/s/^.*$/#define PACKAGE_VERSION ""/
60/^#undef SYS_SIGLIST_DECLARED/s/^.*$/#define SYS_SIGLIST_DECLARED 1/
61
62/^#undef GNU_MALLOC *$/s/^.*$/#define GNU_MALLOC 1/
63/^#undef REL_ALLOC *$/s/^.*$/#define REL_ALLOC 1/
64
65s/^#define USER_FULL_NAME .*$/#define USER_FULL_NAME (getenv ("NAME"))/
66s/^#undef STACK_DIRECTION *$/#define STACK_DIRECTION -1/
67s/^#undef EMACS_CONFIGURATION *$/#define EMACS_CONFIGURATION "i386-pc-msdosdjgpp"/
68s/^#undef EMACS_CONFIG_OPTIONS *$/#define EMACS_CONFIG_OPTIONS "msdos"/
69s!^#undef config_opsysfile *$!#define config_opsysfile "s/msdos.h"!
70s!^#undef config_machfile *$!#define config_machfile "m/intel386.h"!
71s/^#undef PROTOTYPES *$/#define PROTOTYPES 1/
72s/^#undef POINTER_TYPE *$/#define POINTER_TYPE void/
73# ------------------------------------------------------------
74# Without this ifndef, gcc -E -traditional barfs with GCC 3.0
75# on the line which says if ! HAVE_MKTIME...
76# ------------------------------------------------------------
77/^#if ! HAVE_MKTIME || BROKEN_MKTIME/i\
78#ifndef __DJGPP__
79/^#define mktime emacs_mktime/a\
80#endif
81
82/^#undef HAVE_STDINT_H/c\
83#if __DJGPP__ > 2 || __DJGPP_MINOR__ > 3\
84#define HAVE_STDINT_H 1\
85#else\
86#undef HAVE_STDINT_H\
87#endif
cc930834
EZ
88# GCC 3.x has a built-in bzero, which conflicts with the define at
89# the end of config.in
90/^#undef HAVE_BZERO/c\
91#if __GNUC__ >= 3\
92#define HAVE_BZERO 1\
93#else\
94#undef HAVE_BZERO\
95#endif
a395d4a9
EZ
96
97# Comment out any remaining undef directives, because some of them
98# might be defined in sys/config.h we include at the top of config.h.
99/^#undef BSTRING/s|#undef|# undef|
100/^#undef .*$/s|^.*$|/* & */|
ab5796a9
MB
101
102# arch-tag: 2acb5571-ff53-4822-9175-95b864b59f7c