|
From: <sv...@va...> - 2005-10-12 11:30:51
|
Author: tom
Date: 2005-10-12 12:30:43 +0100 (Wed, 12 Oct 2005)
New Revision: 4910
Log:
Correct variable name.
Modified:
trunk/configure.in
Modified: trunk/configure.in
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- trunk/configure.in 2005-10-12 11:27:33 UTC (rev 4909)
+++ trunk/configure.in 2005-10-12 11:30:43 UTC (rev 4910)
@@ -428,15 +428,15 @@
int main () { return 0 ; }
],
[
-no_pointer_sign=3Dyes
+declaration_after_statement=3Dyes
AC_MSG_RESULT([yes])
], [
-no_pointer_sign=3Dno
+declaration_after_statement=3Dno
AC_MSG_RESULT([no])
])
CFLAGS=3D$safe_CFLAGS
=20
-if test x$no_pointer_sign =3D xyes; then
+if test x$declaration_after_statement =3D xyes; then
CFLAGS=3D"$CFLAGS -Wdeclaration-after-statement"
fi
=20
|