diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2007-11-21 13:07:16 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2007-12-21 05:45:59 +0100 |
commit | 39adc2418a0586261c6c4aea36f72596c6cf8897 (patch) | |
tree | 279396139bc8648aee80b0ae32b9ff7a23157593 /source4/scripting/swig/config.m4 | |
parent | f2b9a9ae11f43e4c283a151ca6d2d72f3e4d2283 (diff) | |
download | samba-39adc2418a0586261c6c4aea36f72596c6cf8897.tar.gz samba-39adc2418a0586261c6c4aea36f72596c6cf8897.tar.bz2 samba-39adc2418a0586261c6c4aea36f72596c6cf8897.zip |
r26088: Import some native-python python modules and move original python swig torture code to common python directory as well.
(This used to be commit cbf656ff054ab2b0b5ca81e1d4f16ac54c8098f1)
Diffstat (limited to 'source4/scripting/swig/config.m4')
-rw-r--r-- | source4/scripting/swig/config.m4 | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/source4/scripting/swig/config.m4 b/source4/scripting/swig/config.m4 deleted file mode 100644 index 9988399f70..0000000000 --- a/source4/scripting/swig/config.m4 +++ /dev/null @@ -1,29 +0,0 @@ -dnl # Scripting subsystem - -# Check for python support - -PYTHON= - -AC_ARG_WITH(python, -[ --with-python=PYTHONNAME build Python libraries], -[ case "${withval-python}" in - yes) - PYTHON=python - ;; - no) - PYTHON= - ;; - *) - PYTHON=${withval-python} - ;; - esac ]) - -if test x"$PYTHON" != "x"; then - incdir=`python -c 'import sys; print "%s/include/python%d.%d" % (sys.prefix, sys.version_info[[0]], sys.version_info[[1]])'` - CPPFLAGS="$CPPFLAGS -I $incdir" -else - SMB_ENABLE(swig_dcerpc, NO) -fi - -AC_SUBST(PYTHON) - |