diff options
author | Stefan Metzmacher <metze@samba.org> | 2007-10-10 10:19:19 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 15:08:03 -0500 |
commit | f1e23d5a627fb5b3a08adbf11c7fecdbedeed8e2 (patch) | |
tree | 1c9c7cf91becac52489077def6e25ae63275a987 /source4 | |
parent | a508a210cbd18b0fdd5c5419855e199744770f32 (diff) | |
download | samba-f1e23d5a627fb5b3a08adbf11c7fecdbedeed8e2.tar.gz samba-f1e23d5a627fb5b3a08adbf11c7fecdbedeed8e2.tar.bz2 samba-f1e23d5a627fb5b3a08adbf11c7fecdbedeed8e2.zip |
r25600: fix stupid typo...this should fix the build on sunX
metze
(This used to be commit 192c05556f786b4523fb325cee6d87b251aee059)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/lib/socket/config.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/socket/config.m4 b/source4/lib/socket/config.m4 index 7234eea030..3296730c82 100644 --- a/source4/lib/socket/config.m4 +++ b/source4/lib/socket/config.m4 @@ -41,7 +41,7 @@ SMB_EXT_LIB(EXT_SOCKET,[${SOCKET_LIBS}],[${SOCKET_CFLAGS}],[${SOCKET_CPPFLAGS}], AC_CHECK_FUNCS(gethostbyname) if test x"$ac_cv_func_gethostbyname" = x"no"; then AC_CHECK_LIB_EXT(nsl_s, NSL_LIBS, gethostbyname) - AC_CHECK_LIB_EXT(nsl, NSl_LIBS, gethostbyname) + AC_CHECK_LIB_EXT(nsl, NSL_LIBS, gethostbyname) AC_CHECK_LIB_EXT(socket, NSL_LIBS, gethostbyname) SMB_ENABLE(EXT_NSL,YES) dnl We can't just call AC_CHECK_FUNCS(gethostbyname) here, because the value |