From e8913cbdc107f6b7feb5074262cca64efd028ec5 Mon Sep 17 00:00:00 2001 From: Kern Sibbald Date: Wed, 1 Dec 2004 07:56:45 +0000 Subject: [PATCH] Apply Python 2.3 configure patch git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@1733 91ce42f0-d328-0410-95d8-f526ca767f89 --- bacula/autoconf/configure.in | 3 +++ bacula/configure | 3 +++ 2 files changed, 6 insertions(+) diff --git a/bacula/autoconf/configure.in b/bacula/autoconf/configure.in index f80d9e531e..d8003a5d4a 100644 --- a/bacula/autoconf/configure.in +++ b/bacula/autoconf/configure.in @@ -523,6 +523,9 @@ AC_ARG_WITH(python, if test -f /usr/include/python2.2/Python.h; then PYTHON_INCDIR=-I/usr/include/python2.2 PYTHON_LIBS="-L/usr/lib/python2.2/config -lpython2.2 -lutil -ldl" + elif test -f /usr/include/python2.3/Python.h; then + PYTHON_INCDIR=-I/usr/include/python2.3 + PYTHON_LIBS="-L/usr/lib/python2.3/config -lpython2.3 -lutil -ldl" elif test -f $prefix/include/Python.h; then PYTHON_INCDIR=-I$prefix/include PYTHON_LIBS="-L$prefix/lib/config -lpython -lutil -ldl" diff --git a/bacula/configure b/bacula/configure index 511162cac9..829e3dc40d 100755 --- a/bacula/configure +++ b/bacula/configure @@ -6903,6 +6903,9 @@ if test "${with_python+set}" = set; then if test -f /usr/include/python2.2/Python.h; then PYTHON_INCDIR=-I/usr/include/python2.2 PYTHON_LIBS="-L/usr/lib/python2.2/config -lpython2.2 -lutil -ldl" + elif test -f /usr/include/python2.3/Python.h; then + PYTHON_INCDIR=-I/usr/include/python2.3 + PYTHON_LIBS="-L/usr/lib/python2.3/config -lpython2.3 -lutil -ldl" elif test -f $prefix/include/Python.h; then PYTHON_INCDIR=-I$prefix/include PYTHON_LIBS="-L$prefix/lib/config -lpython -lutil -ldl" -- 2.39.5