From 5290d2c206cad1e3261b6e15b66f148e37aca1f7 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Thu, 16 Sep 1993 22:58:36 +0000 Subject: [PATCH] (LIBS_SYSTEM): Use -lresolv if it seems appropriate. --- src/s/sunos4-1.h | 9 +++++---- 1 file 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 @@ /* Some systems do not run the Network Information Service, but have modified the shared C library to include resolver support without - also changing the C archive library (/usr/lib/libc.a). To deal - with this, you may need to link with the resolver library; to do - that, copy the following definition to config.h. */ -/* #define LIBS_SYSTEM -lresolv */ + also changing the C archive library (/usr/lib/libc.a). If we detect + the presence of res_init, use -lresolv to supplement libc.a. */ +#ifdef HAVE_RES_INIT +#define LIBS_SYSTEM -lresolv +#endif /* Tell GNU malloc to compensate for a bug in localtime. */ #define SUNOS_LOCALTIME_BUG -- 2.11.4.GIT