summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Josefsson <simon@josefsson.org>2008-11-04 11:30:37 +0100
committerSimon Josefsson <simon@josefsson.org>2008-11-04 11:30:37 +0100
commitb738ffae9c1706dc08f39efbad9cfc35e5831cfe (patch)
tree8e09cb5a53ce8966d8d6b9388023e7ac37367693
parent6a2f58f1466e07eb02d4b8debdf6b76c2d8945f9 (diff)
downloadlibtasn1-b738ffae9c1706dc08f39efbad9cfc35e5831cfe.tar.gz
Remove libtasn1-config. Use warnings.
-rw-r--r--configure.in16
1 files changed, 12 insertions, 4 deletions
diff --git a/configure.in b/configure.in
index 179bbbb..ce82bfe 100644
--- a/configure.in
+++ b/configure.in
@@ -21,7 +21,7 @@ AC_INIT([libtasn1], [2.0], [bug-gnutls@gnu.org])
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_HEADERS(config.h)
-AM_INIT_AUTOMAKE([1.10])
+AM_INIT_AUTOMAKE([1.10 -Wall -Werror -Wno-override])
# Library code modified: REVISION++
# Interfaces changed/added/removed: CURRENT++ REVISION=0
@@ -125,7 +125,15 @@ AC_ARG_VAR(WARN_CFLAGS, [Flags to enable compiler warnings])
AC_MSG_CHECKING([what compiler warning flags we will use])
AC_MSG_RESULT($WARN_CFLAGS)
-AC_CONFIG_FILES([Makefile src/Makefile tests/Makefile lib/Makefile \
- gl/Makefile lib/libtasn1.pc lib/libtasn1-config doc/Makefile \
- doc/reference/Makefile examples/Makefile])
+AC_CONFIG_FILES([ \
+ Makefile \
+ gl/Makefile \
+ lib/Makefile \
+ lib/libtasn1.pc \
+ src/Makefile \
+ tests/Makefile \
+ doc/Makefile \
+ doc/reference/Makefile \
+ examples/Makefile \
+])
AC_OUTPUT