diff options
| author | Richard M. Stallman <rms@gnu.org> | 1994-05-22 20:17:29 +0000 |
|---|---|---|
| committer | Richard M. Stallman <rms@gnu.org> | 1994-05-22 20:17:29 +0000 |
| commit | 967ac200e0b3b56ae7db1cf9373c91dd783d5d8c (patch) | |
| tree | 2442e78d9ea3b938c398f08073bfd311fa2f89fc | |
| parent | 764d485b2158494c979a94fc0ec6c40013cb4983 (diff) | |
| download | emacs-967ac200e0b3b56ae7db1cf9373c91dd783d5d8c.tar.gz | |
(HAVE_GETTIMEOFDAY, HAVE_MKDIR, HAVE_RMDIR)
(HAVE_XSCREENNUMBEROFSCREEN): Define these if not already defined.
| -rw-r--r-- | src/s/gnu-linux.h | 16 |
1 files changed, 16 insertions, 0 deletions
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 |
