diff options
| author | Richard M. Stallman | 1993-09-16 22:58:36 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-09-16 22:58:36 +0000 |
| commit | 5290d2c206cad1e3261b6e15b66f148e37aca1f7 (patch) | |
| tree | 083ae386dff8d71629b9e934c417172d23577950 /src | |
| parent | d91a343ed6abb40d3a0853f9c153dd5dda6c00de (diff) | |
| download | emacs-5290d2c206cad1e3261b6e15b66f148e37aca1f7.tar.gz emacs-5290d2c206cad1e3261b6e15b66f148e37aca1f7.zip | |
(LIBS_SYSTEM): Use -lresolv if it seems appropriate.
Diffstat (limited to 'src')
| -rw-r--r-- | src/s/sunos4-1.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/s/sunos4-1.h b/src/s/sunos4-1.h index 6df54dbad62..cecfe838455 100644 --- a/src/s/sunos4-1.h +++ b/src/s/sunos4-1.h | |||
| @@ -16,10 +16,11 @@ | |||
| 16 | 16 | ||
| 17 | /* Some systems do not run the Network Information Service, but have | 17 | /* Some systems do not run the Network Information Service, but have |
| 18 | modified the shared C library to include resolver support without | 18 | modified the shared C library to include resolver support without |
| 19 | also changing the C archive library (/usr/lib/libc.a). To deal | 19 | also changing the C archive library (/usr/lib/libc.a). If we detect |
| 20 | with this, you may need to link with the resolver library; to do | 20 | the presence of res_init, use -lresolv to supplement libc.a. */ |
| 21 | that, copy the following definition to config.h. */ | 21 | #ifdef HAVE_RES_INIT |
| 22 | /* #define LIBS_SYSTEM -lresolv */ | 22 | #define LIBS_SYSTEM -lresolv |
| 23 | #endif | ||
| 23 | 24 | ||
| 24 | /* Tell GNU malloc to compensate for a bug in localtime. */ | 25 | /* Tell GNU malloc to compensate for a bug in localtime. */ |
| 25 | #define SUNOS_LOCALTIME_BUG | 26 | #define SUNOS_LOCALTIME_BUG |