diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2016-01-01 19:55:04 +0100 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2016-01-01 19:55:04 +0100 |
commit | 02f4db9ceaff5ebd64122c958c4d6746191e9308 (patch) | |
tree | c0cb48ed66e8ca08a98fb447f683426494875eb6 | |
parent | be71d0c966e558555ccdc25539e7f9be2ca1693b (diff) | |
download | blogc-02f4db9ceaff5ebd64122c958c4d6746191e9308.tar.gz blogc-02f4db9ceaff5ebd64122c958c4d6746191e9308.tar.bz2 blogc-02f4db9ceaff5ebd64122c958c4d6746191e9308.zip |
build: do not use AM_PROG_AR, as it is useless for us
-rw-r--r-- | configure.ac | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 3cfb07d..43a336c 100644 --- a/configure.ac +++ b/configure.ac @@ -4,15 +4,13 @@ AC_INIT([blogc], [0.5.1], [https://github.com/blogc/blogc], [blogc], [https://bl AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_MACRO_DIR([m4]) -AM_INIT_AUTOMAKE([1.13 foreign dist-bzip2 dist-xz dist-zip subdir-objects serial-tests -Wall -Werror]) +AM_INIT_AUTOMAKE([1.13 foreign dist-bzip2 dist-xz dist-zip subdir-objects serial-tests -Wall -Wno-extra-portability -Werror]) AC_CONFIG_HEADERS([config.h]) AM_SILENT_RULES([yes]) AM_MAINTAINER_MODE([enable]) AC_USE_SYSTEM_EXTENSIONS -AM_PROG_AR - LT_INIT AC_PROG_CC_C99 |