diff options
author | Andrew Tridgell <tridge@samba.org> | 2008-02-12 12:56:30 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2008-02-12 12:56:30 +1100 |
commit | f7bcc15bf8acc157dde8a9895773a0dd03ca6cfb (patch) | |
tree | 0bf64d4b2b2183183062392c3f7fd713134af575 /source4/lib/tdb/configure.ac | |
parent | ccc27e681cbd6283513b929d58f2ebce35e6658b (diff) | |
parent | e84cd8d38bcb6756c5066c7c75f3220a15e5ad1b (diff) | |
download | samba-f7bcc15bf8acc157dde8a9895773a0dd03ca6cfb.tar.gz samba-f7bcc15bf8acc157dde8a9895773a0dd03ca6cfb.tar.bz2 samba-f7bcc15bf8acc157dde8a9895773a0dd03ca6cfb.zip |
Merge branch 'v4-0-test' of ssh://git.samba.org/data/git/samba into v4-0-test
(This used to be commit 3beaa04ef73ca21925d41745b30b6bbaadb7b939)
Diffstat (limited to 'source4/lib/tdb/configure.ac')
-rw-r--r-- | source4/lib/tdb/configure.ac | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source4/lib/tdb/configure.ac b/source4/lib/tdb/configure.ac index 5747107f38..9b16a82c33 100644 --- a/source4/lib/tdb/configure.ac +++ b/source4/lib/tdb/configure.ac @@ -11,15 +11,20 @@ AC_LD_PICFLAG AC_LD_SHLIBEXT AC_LIBREPLACE_SHLD AC_LIBREPLACE_SHLD_FLAGS +AC_LIBREPLACE_RUNTIME_LIB_PATH_VAR m4_include(libtdb.m4) AC_PATH_PROGS([PYTHON_CONFIG], [python2.6-config python2.5-config python2.4-config python-config]) +AC_PATH_PROGS([PYTHON], [python2.6 python2.5 python2.4 python]) PYTHON_BUILD_TARGET="build-python" PYTHON_INSTALL_TARGET="install-python" +PYTHON_CHECK_TARGET="check-python" AC_SUBST(PYTHON_BUILD_TARGET) AC_SUBST(PYTHON_INSTALL_TARGET) +AC_SUBST(PYTHON_CHECK_TARGET) if test -z "$PYTHON_CONFIG"; then PYTHON_BUILD_TARGET="" PYTHON_INSTALL_TARGET="" + PYTHON_CHECK_TARGET="" fi AC_OUTPUT(Makefile tdb.pc) |