]> git.pld-linux.org Git - packages/flux.git/blob - flux-gethostbyname_is_in_libc_aka_no_libnsl.patch
- build fixes needed on current systems
[packages/flux.git] / flux-gethostbyname_is_in_libc_aka_no_libnsl.patch
1 diff -Nru flux-0.4.1/configure.in flux-0.4.1.new/configure.in
2 --- flux-0.4.1/configure.in     Thu Feb 10 00:02:07 2000
3 +++ flux-0.4.1.new/configure.in Tue Aug 22 00:22:14 2000
4 @@ -142,7 +142,8 @@
5  dnl --- Checks for libraries ---
6  
7  AC_CHECK_LIB(socket, socket)
8 -AC_CHECK_LIB(nsl, gethostbyname)
9 +AC_CHECK_FUNC(gethostbyname, ,
10 +       AC_CHECK_LIB(nsl, gethostbyname, LIBS="$LIBS -lnsl",) )
11  
12  
13  dnl --- Checks for header files ---
This page took 0.029765 seconds and 3 git commands to generate.