From 967ac200e0b3b56ae7db1cf9373c91dd783d5d8c Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sun, 22 May 1994 20:17:29 +0000 Subject: [PATCH] (HAVE_GETTIMEOFDAY, HAVE_MKDIR, HAVE_RMDIR) (HAVE_XSCREENNUMBEROFSCREEN): Define these if not already defined. --- src/s/gnu-linux.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/s/gnu-linux.h b/src/s/gnu-linux.h index f426c5212b1..66e952172aa 100644 --- a/src/s/gnu-linux.h +++ b/src/s/gnu-linux.h @@ -239,3 +239,19 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #define A_TEXT_SEEK(hdr) (N_TXTOFF(hdr) + A_TEXT_OFFSET(hdr)) #define ADJUST_EXEC_HEADER \ unexec_text_start = N_TXTADDR(ohdr) + A_TEXT_OFFSET(ohdr) + +/* In 19.23 and 19.24, configure sometimes fails to define these. + It has to do with the fact that configure uses CFLAGS when linking + while Makefile.in.in (erroneously) fails to do so when linking temacs. */ +#ifndef HAVE_GETTIMEOFDAY +#define HAVE_GETTIMEOFDAY +#endif +#ifndef HAVE_MKDIR +#define HAVE_MKDIR +#endif +#ifndef HAVE_RMDIR +#define HAVE_RMDIR +#endif +#ifndef HAVE_XSCREENNUMBEROFSCREEN +#define HAVE_XSCREENNUMBEROFSCREEN +#endif -- 2.39.5