diff options
author | Dariusz Michaluk <d.michaluk@samsung.com> | 2018-06-15 11:13:40 +0200 |
---|---|---|
committer | Dariusz Michaluk <d.michaluk@samsung.com> | 2018-06-15 11:13:40 +0200 |
commit | 6bbf67947844bb4a21fe68481c541c197086336f (patch) | |
tree | 39c54b827a0329234436d4c7a3651e82c6ed681e /configure.ac | |
parent | 9ec7943e548cce0a73bdd3805933248fcb0ee67c (diff) | |
download | libtasn1-6bbf67947844bb4a21fe68481c541c197086336f.tar.gz libtasn1-6bbf67947844bb4a21fe68481c541c197086336f.tar.bz2 libtasn1-6bbf67947844bb4a21fe68481c541c197086336f.zip |
Imported Upstream version 4.10upstream/4.10
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index 7a14e04..551ad3f 100644 --- a/configure.ac +++ b/configure.ac @@ -17,7 +17,7 @@ dnl Process this file with autoconf to produce a configure script. # along with this program. If not, see <http://www.gnu.org/licenses/>. AC_PREREQ([2.61]) -AC_INIT([GNU Libtasn1],[4.9],[help-libtasn1@gnu.org]) +AC_INIT([GNU Libtasn1],[4.10],[help-libtasn1@gnu.org]) AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_HEADERS(config.h) @@ -29,7 +29,7 @@ AM_SILENT_RULES([yes]) # Interfaces added: AGE++ # Interfaces removed: AGE=0 AC_SUBST(LT_CURRENT, 11) -AC_SUBST(LT_REVISION, 2) +AC_SUBST(LT_REVISION, 3) AC_SUBST(LT_AGE, 5) AC_PROG_CC @@ -70,8 +70,6 @@ AC_ARG_ENABLE([gcc-warnings], ) if test "$gl_gcc_warnings" = yes; then - gl_WARN_ADD([-Werror], [WERROR_CFLAGS]) - nw="$nw -Wsystem-headers" # Don't let system headers trigger warnings nw="$nw -Wc++-compat" # We don't care strongly about C++ compilers nw="$nw -Wtraditional" # Warns on #elif which we use often |