1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-26 10:04:02 +03:00

libreplace: add -I$libreplacedir to CPPFLAGS for getifaddrs tests.

This is needed, otherwise $libreplacedir/system/network.h does not
find $libreplacedir/getaddrinfo.h on some systems (solaris, e.g.).

Michael
(cherry picked from commit 297c3bece094ddb5f268b02e61e33f512ccfe6f5)
(This used to be commit ddd564e8bf2b115aa5dbcbebd4be30b749ad8752)
This commit is contained in:
Michael Adam 2008-03-14 08:52:16 +01:00
parent 27517ea5bb
commit fd6513fc42

View File

@ -38,6 +38,8 @@ fi
#
old_LIBS=$LIBS
LIBS="$NSL_LIBS $SOCKET_LIBS"
SAVE_CPPFLAGS="$CPPFLAGS"
CPPFLAGS="$CPPFLAGS -I$libreplacedir"
iface=no;
##################
# look for a method of finding the list of network interfaces
@ -125,3 +127,5 @@ fi
fi
LIBS=$old_LIBS
CPPFLAGS="$SAVE_CPPFLAGS"