build system: Actually link with libxnet and use CPPFLAGS.
authorFlorian Forster <octo@leeloo.lan.home.verplant.org>
Mon, 23 Mar 2009 08:24:54 +0000 (09:24 +0100)
committerFlorian Forster <octo@leeloo.lan.home.verplant.org>
Mon, 23 Mar 2009 08:24:54 +0000 (09:24 +0100)
(Instead of CFLAGS.)

configure.ac
src/Makefile.am

index c615379..631e72d 100644 (file)
@@ -169,11 +169,13 @@ AC_CHECK_FUNCS(socket, [],
                AC_MSG_ERROR(cannot find socket)))
 AM_CONDITIONAL(BUILD_WITH_LIBSOCKET, test "x$socket_needs_socket" = "xyes")
 
+# Under Solaris, the `xnet' library provides `recvmsg' which complies with the
+# X/Open CAE Specification.
 with_libxnet="no"
 AC_CHECK_LIB(xnet, __xnet_recvmsg, [with_libxnet="yes"],[])
 if test "x$with_libxnet" = "xyes"
 then
-       CFLAGS="$CFLAGS -D_XPG4_2 -D__EXTENSIONS__"
+       CPPFLAGS="$CPPFLAGS -D_XPG4_2 -D__EXTENSIONS__"
 fi
 AM_CONDITIONAL(BUILD_WITH_LIBXNET, test "x$with_libxnet" = "xyes")
 
index f773f87..8bd885c 100644 (file)
@@ -25,6 +25,10 @@ liboping_la_LDFLAGS = -version-info @LIBOPING_CURRENT@:@LIBOPING_REVISION@:@LIBO
 if BUILD_WITH_LIBSOCKET
 liboping_la_LDFLAGS += -lsocket
 endif
+if BUILD_WITH_LIBXNET
+liboping_la_LDFLAGS += -lxnet
+endif
+
 liboping_la_SOURCES = oping.h liboping.c
 
 bin_PROGRAMS = oping