summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJiri Pirko <jiri@resnulli.us>2013-07-19 08:20:12 +0200
committerJiri Pirko <jiri@resnulli.us>2013-07-19 08:24:29 +0200
commit873037aaf480b7c84cd2835b1207ffff3daee319 (patch)
treed471297e48b30d376342a11e230acf87d05eedf2
parent69d1c977b4770e651db6bc498fdca9c3061cef8c (diff)
downloadlibndp-873037aaf480b7c84cd2835b1207ffff3daee319.tar.gz
fix configure.ac
Signed-off-by: Jiri Pirko <jiri@resnulli.us>
-rw-r--r--.gitignore1
-rw-r--r--configure.ac5
2 files changed, 4 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore
index d305720..cff0b11 100644
--- a/.gitignore
+++ b/.gitignore
@@ -8,6 +8,7 @@ Makefile
Makefile.in
/aclocal.m4
/autom4te.cache
+/build-aux/
/config.*
/configure
/libtool
diff --git a/configure.ac b/configure.ac
index 7bd690f..d430555 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2,9 +2,10 @@
# Process this file with autoconf to produce a configure script.
AC_INIT([libndp], [0.1], [jiri@resnulli.us])
+AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_MACRO_DIR([m4])
AM_INIT_AUTOMAKE([-Wall foreign subdir-objects])
-#m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES(yes)], [])
+m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES(yes)], [])
AM_PROG_AR
# Here are a set of rules to help you update your library version information:
@@ -25,7 +26,7 @@ AC_SUBST(LIBNDP_CURRENT, 0)
AC_SUBST(LIBNDP_REVISION, 0)
AC_SUBST(LIBNDP_AGE, 0)
-CFLAGS="$CFLAGS -Wall -Werror"
+CFLAGS="$CFLAGS -Wall"
# Checks for programs.
AC_PROG_CC