diff options
| author | Jim Blandy | 1993-06-08 07:00:13 +0000 |
|---|---|---|
| committer | Jim Blandy | 1993-06-08 07:00:13 +0000 |
| commit | 8f2d5456ade3f3f124983e3408040af6fcf7e185 (patch) | |
| tree | 12133910284f440a880074398337033c07c89375 /src | |
| parent | e44e10e4ea3a76bd5b6f1d71e6679e6d3c0f0b96 (diff) | |
| download | emacs-8f2d5456ade3f3f124983e3408040af6fcf7e185.tar.gz emacs-8f2d5456ade3f3f124983e3408040af6fcf7e185.zip | |
* config.h.in (HAVE_LIBDNET): New macro, to be defined by
../configure.
* m/pmax.h (LIBS_MACHINE): Only put "-ldnet" here if HAVE_LIBDNET
is #defined.
Diffstat (limited to 'src')
| -rw-r--r-- | src/config.in | 1 | ||||
| -rw-r--r-- | src/m/pmax.h | 6 |
2 files changed, 4 insertions, 3 deletions
diff --git a/src/config.in b/src/config.in index abb3f114918..89858d31daf 100644 --- a/src/config.in +++ b/src/config.in | |||
| @@ -96,6 +96,7 @@ and this notice must be preserved on all copies. */ | |||
| 96 | #undef STACK_DIRECTION | 96 | #undef STACK_DIRECTION |
| 97 | #undef const | 97 | #undef const |
| 98 | #undef UNEXEC_SRC | 98 | #undef UNEXEC_SRC |
| 99 | #undef HAVE_LIBDNET | ||
| 99 | 100 | ||
| 100 | /* If using GNU, then support inline function declarations. */ | 101 | /* If using GNU, then support inline function declarations. */ |
| 101 | #ifdef __GNUC__ | 102 | #ifdef __GNUC__ |
diff --git a/src/m/pmax.h b/src/m/pmax.h index 8cbc258dde7..bd3b298a960 100644 --- a/src/m/pmax.h +++ b/src/m/pmax.h | |||
| @@ -50,10 +50,10 @@ NOTE-END */ | |||
| 50 | #define HAVE_ALLOCA | 50 | #define HAVE_ALLOCA |
| 51 | #endif | 51 | #endif |
| 52 | 52 | ||
| 53 | /* mcc@timessqr.gc.cuny.edu says this makes Emacs work with DECnet. | 53 | /* mcc@timessqr.gc.cuny.edu says this makes Emacs work with DECnet. */ |
| 54 | If you don't have DECnet and this causes trouble, | 54 | #ifdef HAVE_LIBDNET |
| 55 | just delete the definition. */ | ||
| 56 | #define LIBS_MACHINE -ldnet | 55 | #define LIBS_MACHINE -ldnet |
| 56 | #endif | ||
| 57 | 57 | ||
| 58 | /* mcc@timessqr.gc.cuny.edu says it is /vmunix on Ultrix 4.2a. */ | 58 | /* mcc@timessqr.gc.cuny.edu says it is /vmunix on Ultrix 4.2a. */ |
| 59 | #undef KERNEL_FILE | 59 | #undef KERNEL_FILE |