X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=configure.ac;h=a1bf39332f23abaa3082e6d116f11a151c6bc324;hb=refs%2Fheads%2Fautodoc;hp=dc66bdc6bb44df3ffbf2c0af827cba94726686e3;hpb=c6cd8ab8023a92c481cfbae3922f71dfa0f9ca4e;p=hvgrip.git diff --git a/configure.ac b/configure.ac index dc66bdc..a1bf393 100644 --- a/configure.ac +++ b/configure.ac @@ -1,3 +1,4 @@ +# configure.ac -- Process this file with autoconf to produce configure. AC_PREREQ(2.52) AC_INIT([hvgrip], [3.4.0], [hugo@hugovil.com], [hvgrip], @@ -5,12 +6,17 @@ AC_INIT([hvgrip], [3.4.0], [hugo@hugovil.com], [hvgrip], AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_SRCDIR(src/main.c) -AM_INIT_AUTOMAKE([no-define check-news -Wall std-options]) + +dnl -Wno-extra-portability: +dnl To get rid of message: +dnl linking libraries using a non-POSIX archiver requires 'AM_PROG_AR'... +dnl -Wall: +dnl Ask automake to turn on all warnings (not a gcc flag) +AM_INIT_AUTOMAKE([no-define gnits dist-bzip2 + -Wall -Wno-extra-portability]) AM_SILENT_RULES([yes]) AM_GNU_GETTEXT([external]) AM_GNU_GETTEXT_VERSION([0.18.1]) - -AM_MAINTAINER_MODE AM_CONFIG_HEADER(config.h:config.h.in) AC_ARG_ENABLE(shared_cdpar, @@ -153,12 +159,13 @@ AC_SUBST(LDFLAGS) AC_SUBST(ac_aux_dir) AC_OUTPUT([ -Makefile -grip.spec -src/Makefile -po/Makefile.in -pixmaps/Makefile -doc/Makefile -doc/images/Makefile -contrib/Makefile + Makefile + data/grip.spec + data/Makefile + src/Makefile + po/Makefile.in + pixmaps/Makefile + doc/Makefile + doc/images/Makefile + contrib/Makefile ])