1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-07 04:10:27 -08:00

(LIBS_SYSTEM): Invert the HAVE_RES_INIT condition.

This commit is contained in:
Richard M. Stallman 1994-04-23 00:05:06 +00:00
parent 6eaebaa278
commit 8adce06ac5

View file

@ -22,7 +22,9 @@
setting libsrc_libs to -lresolv in lib-src/Makefile. configure
includes this file without defining any of the HAVE_* macros. */
#ifdef HAVE_GETHOSTNAME
#ifndef HAVE_RES_INIT
/* This was #ifndef, but Stephen P Potter <spp@cis.ufl.edu> says
it should be #ifdef. */
#ifdef HAVE_RES_INIT
#define LIBS_SYSTEM -lresolv
#endif
#endif