From: Victor Julien Date: Mon, 5 Mar 2012 08:00:00 +0000 (+0100) Subject: Do not assume the include dir for nspr to be nspr. On F16 it's nspr4. X-Git-Tag: suricata-1.3beta1~131 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=90422c9f5e544ed5213886c38f3c00af6acfaa36;p=thirdparty%2Fsuricata.git Do not assume the include dir for nspr to be nspr. On F16 it's nspr4. --- diff --git a/configure.in b/configure.in index 6253f3dccf..9335479328 100644 --- a/configure.in +++ b/configure.in @@ -1031,7 +1031,7 @@ AC_CHECK_HEADER(pcap.h,,[AC_ERROR(pcap.h not found ...)]) CPPFLAGS="${CPPFLAGS} -I${with_libnspr_includes}" fi - AC_CHECK_HEADER(nspr/nspr.h,NSPR="yes",NSPR="no") + AC_CHECK_HEADER(nspr.h,NSPR="yes",NSPR="no") if test "$NSPR" = "yes"; then if test "$with_libnspr_libraries" != "no"; then LDFLAGS="${LDFLAGS} -L${with_libnspr_libraries}"