blob: 492e6b03315d28f50af792c3677b603fd18a9899 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
--- a/configure.ac Wed Feb 4 10:11:07 2009
+++ b/configure.ac Wed Feb 4 10:23:07 2009
@@ -67,15 +67,15 @@
fi
if test "x$with_ipv6" != xno; then
- CFLAGS+=" -DIPV6_SUPPORT"
+ CFLAGS="$CFLAGS -DIPV6_SUPPORT"
fi
xmlflags=`pkg-config libxml-2.0 --cflags`
-if test "$xmlflags" == ""; then
+if test "$xmlflags" = ""; then
AC_MSG_ERROR([libxml2 headers not found])
fi
-CFLAGS+=" $xmlflags"
+CFLAGS="$CFLAGS $xmlflags"
AC_CONFIG_FILES([Makefile])
AC_OUTPUT
|