2010-09-03 15:49:12 -04:00
|
|
|
$OpenBSD: patch-configure_ac,v 1.5 2010/09/03 19:49:12 sthen Exp $
|
|
|
|
--- configure.ac.orig Tue Oct 13 17:09:30 2009
|
|
|
|
+++ configure.ac Fri Sep 3 20:48:24 2010
|
2008-11-02 15:43:49 -05:00
|
|
|
@@ -6,7 +6,7 @@ AC_PREREQ(2.58)
|
|
|
|
dnl Get the version of Subversion, using m4's esyscmd() command to do this
|
|
|
|
dnl at m4-time, since AC_INIT() requires it then.
|
|
|
|
AC_INIT([subversion],
|
2009-04-28 19:43:56 -04:00
|
|
|
- [esyscmd(python build/getversion.py SVN subversion/include/svn_version.h)],
|
|
|
|
+ [esyscmd(${MODPY_BIN} build/getversion.py SVN subversion/include/svn_version.h)],
|
|
|
|
[http://subversion.tigris.org/])
|
2008-11-02 15:43:49 -05:00
|
|
|
|
|
|
|
AC_CONFIG_SRCDIR(subversion/include/svn_types.h)
|
2010-09-03 15:49:12 -04:00
|
|
|
@@ -60,7 +60,7 @@ if test "$INSTALL" = "build/install-sh -c"; then
|
2008-11-02 15:43:49 -05:00
|
|
|
INSTALL="$abs_srcdir/$INSTALL"
|
|
|
|
fi
|
|
|
|
|
|
|
|
-AC_SUBST([MKDIR], ["$INSTALL -d"])
|
2009-08-07 18:13:36 -04:00
|
|
|
+AC_SUBST([MKDIR], ["/bin/mkdir -p"])
|
2008-11-02 15:43:49 -05:00
|
|
|
|
2009-04-28 19:43:56 -04:00
|
|
|
# ==== Libraries, for which we may have source to build ======================
|
2008-11-02 15:43:49 -05:00
|
|
|
|
2010-09-03 15:49:12 -04:00
|
|
|
@@ -769,7 +769,7 @@ AS_HELP_STRING([--enable-gprof],
|
2008-11-02 15:43:49 -05:00
|
|
|
# Python: Used for testsuite, and bindings
|
|
|
|
|
|
|
|
|
|
|
|
-PYTHON="`$abs_srcdir/build/find_python.sh`"
|
|
|
|
+PYTHON=${MODPY_BIN}
|
|
|
|
if test -z "$PYTHON"; then
|
2009-04-28 19:43:56 -04:00
|
|
|
AC_MSG_WARN([Python 2.4 or later is required to run the testsuite])
|
2008-11-02 15:43:49 -05:00
|
|
|
AC_MSG_WARN([or to use the Subversion Python bindings])
|