]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
Replace the deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS. 302/head
authorJason Ish <ish@unx.ca>
Thu, 28 Feb 2013 20:01:05 +0000 (14:01 -0600)
committerJason Ish <ish@unx.ca>
Thu, 28 Feb 2013 22:37:54 +0000 (16:37 -0600)
Addresses bug #704 for building on a Mac.  More generically
it addresses the issue building using newers versions of automake.

configure.ac
libhtp/configure.ac

index b0893826403091b79a7eaba504d0bed7329dcd5d..32b931b25acebc3cb97b101c1df37359451c997f 100644 (file)
@@ -2,7 +2,7 @@
 
 AC_INIT(configure.ac)
 
-    AM_CONFIG_HEADER(config.h)
+    AC_CONFIG_HEADERS([config.h])
     AM_INIT_AUTOMAKE(suricata, 1.4dev)
 
     AC_LANG_C
index 53dc16513b4fcfeee5ec55e04711d4aa3ee738d1..3eb37000dc4b3b46c33b969bac266c390917e8d2 100644 (file)
@@ -4,7 +4,7 @@ dnl Initialization macros
 dnl ----------------------
 
 AC_INIT(htp/htp.h)
-AM_CONFIG_HEADER(config.h)
+AC_CONFIG_HEADERS([config.h])
 
 
 dnl -----------------------------------------------