diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2015-12-25 23:52:19 +0100 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2015-12-25 23:52:19 +0100 |
commit | 008c96d6518125f2683c1b4e842ca3ed6e865c3d (patch) | |
tree | 4927867f82c2ad34d2dc957233af679fb6220faa /configure.ac | |
parent | 38fe0a8d151e681e4818f9afceb5188470fc0636 (diff) | |
parent | 14e9d7b2299f15efb695b0202f9c1f6a9f7a4ba6 (diff) | |
download | blogc-008c96d6518125f2683c1b4e842ca3ed6e865c3d.tar.gz blogc-008c96d6518125f2683c1b4e842ca3ed6e865c3d.tar.bz2 blogc-008c96d6518125f2683c1b4e842ca3ed6e865c3d.zip |
Merge remote-tracking branch 'origin/master' into feature/directives
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 4a5c4a7..3cfb07d 100644 --- a/configure.ac +++ b/configure.ac @@ -1,16 +1,18 @@ AC_PREREQ([2.69]) -AC_INIT([blogc], [0.5], [https://github.com/blogc/blogc], [blogc], [https://blogc.rgm.io]) +AC_INIT([blogc], [0.5.1], [https://github.com/blogc/blogc], [blogc], [https://blogc.rgm.io]) 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]) +AM_INIT_AUTOMAKE([1.13 foreign dist-bzip2 dist-xz dist-zip subdir-objects serial-tests -Wall -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 |