diff options
Diffstat (limited to 'comms/yaps/files/patch-config.h')
-rw-r--r-- | comms/yaps/files/patch-config.h | 166 |
1 files changed, 64 insertions, 102 deletions
diff --git a/comms/yaps/files/patch-config.h b/comms/yaps/files/patch-config.h index 99b334376fb5..3fd0b5d0da76 100644 --- a/comms/yaps/files/patch-config.h +++ b/comms/yaps/files/patch-config.h @@ -1,102 +1,64 @@ -*** config.h.orig Tue Sep 29 15:15:25 1998 ---- config.h Tue Sep 29 15:24:15 1998 -*************** -*** 27,31 **** - * in sys/time.h - */ -! # define HAVE_SYS_SELECT_H 0 - - /* ---- 27,31 ---- - * in sys/time.h - */ -! # define HAVE_SYS_SELECT_H 1 - - /* -*************** -*** 33,37 **** - * conversion/classification - */ -! # define HAVE_LOCALE_H 0 - - /* ---- 33,37 ---- - * conversion/classification - */ -! # define HAVE_LOCALE_H 1 - - /* -*************** -*** 39,48 **** - * very weak replacement is used to find matching services - */ -! # define HAVE_REGEX_H 0 - - /* - * one of these is required for SysV like lockfiles - */ -! # define HAVE_SYS_SYSMACROS_H 1 - # define HAVE_SYS_MKDEV_H 0 - ---- 39,48 ---- - * very weak replacement is used to find matching services - */ -! # define HAVE_REGEX_H 1 - - /* - * one of these is required for SysV like lockfiles - */ -! # define HAVE_SYS_SYSMACROS_H 0 - # define HAVE_SYS_MKDEV_H 0 - -*************** -*** 62,72 **** - * to get valid return values from localtime - */ -! # define HAVE_TZSET 0 - - /* - * If these are not set, chmod()/chown() are used - */ -! # define HAVE_FCHMOD 0 -! # define HAVE_FCHOWN 0 - - /* ---- 62,72 ---- - * to get valid return values from localtime - */ -! # define HAVE_TZSET 1 - - /* - * If these are not set, chmod()/chown() are used - */ -! # define HAVE_FCHMOD 1 -! # define HAVE_FCHOWN 1 - - /* -*************** -*** 74,78 **** - * longjmp() from the signal handler leads into chaos - */ -! # define HAVE_SIGSETJMP 0 - - /* ---- 74,78 ---- - * longjmp() from the signal handler leads into chaos - */ -! # define HAVE_SIGSETJMP 1 - - /* -*************** -*** 106,110 **** - * set this to 1, otherwise to 0 - */ -! # define BROKEN_REALLOC 1 - - /* -------------- END OF CHANGEABLE PART ------------------ */ ---- 106,110 ---- - * set this to 1, otherwise to 0 - */ -! # define BROKEN_REALLOC 0 - - /* -------------- END OF CHANGEABLE PART ------------------ */ +--- config.h.orig 1997-06-14 10:32:19 UTC ++++ config.h +@@ -26,24 +26,24 @@ + * Needed only by some systems, which do not define FD_SET etc. + * in sys/time.h + */ +-# define HAVE_SYS_SELECT_H 0 ++# define HAVE_SYS_SELECT_H 1 + + /* + * If you have locales set this. This is useful to for character + * conversion/classification + */ +-# define HAVE_LOCALE_H 0 ++# define HAVE_LOCALE_H 1 + + /* + * If you have Posix regular expressions, set this. Otherwise a + * very weak replacement is used to find matching services + */ +-# define HAVE_REGEX_H 0 ++# define HAVE_REGEX_H 1 + + /* + * one of these is required for SysV like lockfiles + */ +-# define HAVE_SYS_SYSMACROS_H 1 ++# define HAVE_SYS_SYSMACROS_H 0 + # define HAVE_SYS_MKDEV_H 0 + + /* +@@ -61,19 +61,19 @@ + * If the library contains this function, a call to it is required + * to get valid return values from localtime + */ +-# define HAVE_TZSET 0 ++# define HAVE_TZSET 1 + + /* + * If these are not set, chmod()/chown() are used + */ +-# define HAVE_FCHMOD 0 +-# define HAVE_FCHOWN 0 ++# define HAVE_FCHMOD 1 ++# define HAVE_FCHOWN 1 + + /* + * If you have sigsetjmp() you definitly want to set this, otherwise + * longjmp() from the signal handler leads into chaos + */ +-# define HAVE_SIGSETJMP 0 ++# define HAVE_SIGSETJMP 1 + + /* + * Memory access functions. Nearly everybody has memcpy()/memset(), so +@@ -105,7 +105,7 @@ + * If your realloc(3) function cannot handle realloc (NULL, size), then + * set this to 1, otherwise to 0 + */ +-# define BROKEN_REALLOC 1 ++# define BROKEN_REALLOC 0 + + /* -------------- END OF CHANGEABLE PART ------------------ */ + /*}}}*/ |