diff options
author | Igor Sysoev <igor@sysoev.ru> | 2017-08-17 21:47:19 +0300 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2017-08-17 21:47:19 +0300 |
commit | 5ef8e0ee8933e914b1847168255b53f07c3727b3 (patch) | |
tree | f4e4b512d86a8a92eeb48c44e54db510660ea4fe /auto/modules/python/conf | |
parent | 1ba2f44ad9b95670452f31a0923b8a118a08d867 (diff) | |
download | unit-5ef8e0ee8933e914b1847168255b53f07c3727b3.tar.gz unit-5ef8e0ee8933e914b1847168255b53f07c3727b3.tar.bz2 |
Removing auto/modules directory before commiting the new module
configuration infrastructure.
Diffstat (limited to 'auto/modules/python/conf')
-rw-r--r-- | auto/modules/python/conf | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/auto/modules/python/conf b/auto/modules/python/conf deleted file mode 100644 index cb045bf9..00000000 --- a/auto/modules/python/conf +++ /dev/null @@ -1,57 +0,0 @@ - -# Copyright (C) Valentin V. Bartenev -# Copyright (C) NGINX, Inc. - - -$echo "checking for Python ..." >> $NXT_AUTOCONF_ERR - -nxt_found=no - -NXT_PYTHON_CONFIG="${NXT_PYTHON}-config" - -if /bin/sh -c "$NXT_PYTHON_CONFIG --prefix" >> $NXT_AUTOCONF_ERR 2>&1; then - - NXT_PYTHON_INCLUDE=`${NXT_PYTHON_CONFIG} --includes` - NXT_PYTHON_LIBS=`${NXT_PYTHON_CONFIG} --ldflags` - - nxt_feature="Python" - nxt_feature_name=NXT_HAVE_PYTHON - nxt_feature_run=no - nxt_feature_incs="${NXT_PYTHON_INCLUDE}" - nxt_feature_libs="${NXT_PYTHON_LIBS}" - nxt_feature_test=" - #include <Python.h> - - int main() { - Py_Initialize(); - return 0; - }" - - . auto/feature -fi - -if [ $nxt_found = no ]; then - $echo "checking for Python ..." - $echo - $echo $0: error: no Python found. - $echo - exit 1; -fi - - -NXT_PYTHON_VERSION=`${NXT_PYTHON} -c \ - 'import sys; \ - sys.stdout.write(sys.version[:3])'` - -$echo " + Python version: ${NXT_PYTHON_VERSION}" - - -NXT_PYTHON_MODULE_SRCS=" \ - src/nxt_python_wsgi.c \ -" - - -NXT_MODULES_INIT="$NXT_MODULES_INIT nxt_python_wsgi_init" -NXT_MODULES_SRCS="$NXT_MODULES_SRCS $NXT_PYTHON_MODULE_SRCS" - -NXT_LIB_AUX_LIBS="$NXT_LIB_AUX_LIBS $NXT_PYTHON_LIBS" |