2011-06-18 [mir] 3.7.9cvs26

* configure.ac
	Fix autoconf warnings introduced in autoconf >= 2.64
This commit is contained in:
Michael Rasmussen 2011-06-18 18:18:21 +00:00
parent 40126bae70
commit 353523a950
3 changed files with 9 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2011-06-18 [mir] 3.7.9cvs26
* configure.ac
Fix autoconf warnings introduced in autoconf >= 2.64
2011-06-05 [paul] 3.7.9cvs25
* po/ca.po

View file

@ -4177,3 +4177,4 @@
( cvs diff -u -r 1.101.2.65 -r 1.101.2.66 src/news.c; ) > 3.7.9cvs23.patchset
( cvs diff -u -r 1.12.2.65 -r 1.12.2.66 src/action.c; ) > 3.7.9cvs24.patchset
( cvs diff -u -r 1.1.2.18 -r 1.1.2.19 po/ca.po; cvs diff -u -r 1.9.2.21 -r 1.9.2.22 po/cs.po; cvs diff -u -r 1.58.2.48 -r 1.58.2.49 po/de.po; cvs diff -u -r 1.34.2.29 -r 1.34.2.30 po/it.po; cvs diff -u -r 1.16.2.11 -r 1.16.2.12 po/ja.po; cvs diff -u -r 1.1.2.3 -r 1.1.2.4 po/pt_PT.po; cvs diff -u -r 1.2.2.32 -r 1.2.2.33 po/sk.po; cvs diff -u -r 1.1.2.3 -r 1.1.2.4 po/uk.po; cvs diff -u -r 1.43.2.122 -r 1.43.2.123 src/toolbar.c; cvs diff -u -r 1.4.2.78 -r 1.4.2.79 src/gtk/about.c; ) > 3.7.9cvs25.patchset
( cvs diff -u -r 1.654.2.4253 -r 1.654.2.4254 configure.ac; ) > 3.7.9cvs26.patchset

View file

@ -12,7 +12,7 @@ MINOR_VERSION=7
MICRO_VERSION=9
INTERFACE_AGE=0
BINARY_AGE=0
EXTRA_VERSION=25
EXTRA_VERSION=26
EXTRA_RELEASE=
EXTRA_GTK2_VERSION=
@ -87,6 +87,7 @@ AM_PROG_LEX
AC_PROG_YACC
AC_LIB_PREFIX
AC_LIBTOOL_WIN32_DLL
LT_INIT
LT_AC_PROG_RC
AC_LIBTOOL_RC
AC_PROG_LIBTOOL
@ -146,7 +147,7 @@ fi
AC_MSG_CHECKING([if gcc supports -Wno-pointer-sign])
_gcc_cflags_save=$CFLAGS
CFLAGS="-Wno-pointer-sign"
AC_COMPILE_IFELSE(AC_LANG_PROGRAM([]),_gcc_psign=yes,_gcc_psign=no)
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])],_gcc_psign=yes,_gcc_psign=no)
AC_MSG_RESULT($_gcc_psign)
CFLAGS=$_gcc_cflags_save;
if test x"$_gcc_psign" = xyes ; then