diff options
author | Junio C Hamano <junkio@cox.net> | 2005-09-11 22:25:49 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-09-17 11:57:50 -0700 |
commit | 5a90d4ac1ab4d7700595e415e3a2062ecb378523 (patch) | |
tree | 60a205f9615995917e7e69224083dcd50414d74a /Makefile | |
parent | aa894d8887c96a8b72adf94c2b52c519f7b47174 (diff) | |
download | git-5a90d4ac1ab4d7700595e415e3a2062ecb378523.tar.gz git-5a90d4ac1ab4d7700595e415e3a2062ecb378523.tar.xz |
[PATCH] getdomainname should be usable on SunOS with -lnsl
Jason Riedy suggests that we should be able to use getdomainname
if we properly specify which libraries to link.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -151,7 +151,8 @@ ifeq ($(shell uname -s),Darwin) endif ifeq ($(shell uname -s),SunOS) NEEDS_SOCKET = YesPlease - PLATFORM_DEFINES += -DNO_GETDOMAINNAME=1 + NEEDS_NSL = YesPlease + PLATFORM_DEFINES += -D__EXTENSIONS__ endif ifndef SHELL_PATH @@ -198,6 +199,10 @@ ifdef NEEDS_SOCKET LIBS += -lsocket SIMPLE_LIB += -lsocket endif +ifdef NEEDS_NSL + LIBS += -lnsl + SIMPLE_LIB += -lnsl +endif DEFINES += '-DSHA1_HEADER=$(SHA1_HEADER)' |