RPM Package Manager, CVS Repository
http://rpm5.org/cvs/
____________________________________________________________________________
Server: rpm5.org Name: Ralf S. Engelschall
Root: /v/rpm/cvs Email: rse@rpm5.org
Module: rpm Date: 25-Jun-2007 10:17:59
Branch: HEAD Handle: 2007062509175900
Modified files:
rpm configure.ac
Log:
'#include' really has to start in column 0 or the check will fail
Summary:
Revision Changes Path
2.134 +4 -4 rpm/configure.ac
____________________________________________________________________________
patch -p0 <<'@@ .'
Index: rpm/configure.ac
============================================================================
$ cvs diff -u -r2.133 -r2.134 configure.ac
--- rpm/configure.ac 25 Jun 2007 08:14:09 -0000 2.133
+++ rpm/configure.ac 25 Jun 2007 08:17:59 -0000 2.134
@@ -771,7 +771,7 @@
AC_MSG_CHECKING(for python 2.4)
AC_RUN_IFELSE([AC_LANG_SOURCE([[
- #include <python2.4/Python.h>
+#include <python2.4/Python.h>
main() {
exit(strncmp("2.4", PY_VERSION, 3));
} ]])],[withval=yes],[withval=no],[withval=yes])
@@ -782,7 +782,7 @@
AC_MSG_CHECKING(for python 2.3)
AC_RUN_IFELSE([AC_LANG_SOURCE([[
- #include <python2.3/Python.h>
+#include <python2.3/Python.h>
main() {
exit(strncmp("2.3", PY_VERSION, 3));
} ]])],[withval=yes],[withval=no],[withval=yes])
@@ -793,7 +793,7 @@
AC_MSG_CHECKING(for python 2.2)
AC_RUN_IFELSE([AC_LANG_SOURCE([[
- #include <python2.2/Python.h>
+#include <python2.2/Python.h>
main() {
exit(strncmp("2.2", PY_VERSION, 3));
} ]])],[withval=yes],[withval=no],[withval=yes])
@@ -804,7 +804,7 @@
AC_MSG_CHECKING(for python 1.5.2)
AC_RUN_IFELSE([AC_LANG_SOURCE([[
- #include <python1.5/Python.h>
+#include <python1.5/Python.h>
main() {
exit(strcmp("1.5.2", PY_VERSION));
} ]])],[withval=yes],[withval=no],[withval=yes])
@@ .
Received on Mon Jun 25 10:17:59 2007