Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
04d15d12
Commit
04d15d12
authored
20 years ago
by
Joe Conway
Browse files
Options
Downloads
Patches
Plain Diff
Make discovery of python_configdir architecture independent. Solution
from James William Pye.
parent
9f6df6c4
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
config/python.m4
+10
-2
10 additions, 2 deletions
config/python.m4
configure
+14
-1
14 additions, 1 deletion
configure
with
24 additions
and
3 deletions
config/python.m4
+
10
−
2
View file @
04d15d12
#
#
# Autoconf macros for configuring the build of Python extension modules
# Autoconf macros for configuring the build of Python extension modules
#
#
# $PostgreSQL: pgsql/config/python.m4,v 1.
7
200
3/11/29 19:51:17 pgsql
Exp $
# $PostgreSQL: pgsql/config/python.m4,v 1.
8
200
4/09/16 23:30:30 joe
Exp $
#
#
# PGAC_PATH_PYTHON
# PGAC_PATH_PYTHON
...
@@ -21,11 +21,19 @@ fi
...
@@ -21,11 +21,19 @@ fi
# Determine the name of various directory of a given Python installation.
# Determine the name of various directory of a given Python installation.
AC_DEFUN([_PGAC_CHECK_PYTHON_DIRS],
AC_DEFUN([_PGAC_CHECK_PYTHON_DIRS],
[AC_REQUIRE([PGAC_PATH_PYTHON])
[AC_REQUIRE([PGAC_PATH_PYTHON])
AC_MSG_CHECKING([for Python distutils module])
if "${PYTHON}" 2>&- -c 'import distutils'
then
AC_MSG_RESULT(yes)
else
AC_MSG_RESULT(no)
AC_MSG_ERROR([distutils module not found])
fi
AC_MSG_CHECKING([Python installation directories])
AC_MSG_CHECKING([Python installation directories])
python_version=`${PYTHON} -c "import sys; print sys.version[[:3]]"`
python_version=`${PYTHON} -c "import sys; print sys.version[[:3]]"`
python_prefix=`${PYTHON} -c "import sys; print sys.prefix"`
python_prefix=`${PYTHON} -c "import sys; print sys.prefix"`
python_execprefix=`${PYTHON} -c "import sys; print sys.exec_prefix"`
python_execprefix=`${PYTHON} -c "import sys; print sys.exec_prefix"`
python_configdir=
"
${
python_execprefix}/lib/python${python_version}/
config
"
python_configdir=
`
${
PYTHON} -c "from distutils.sysconfig import get_python_lib as f; import os; print os.path.join(f(plat_specific=1,standard_lib=1),'
config
')"`
python_includespec="-I${python_prefix}/include/python${python_version}"
python_includespec="-I${python_prefix}/include/python${python_version}"
if test "$python_prefix" != "$python_execprefix"; then
if test "$python_prefix" != "$python_execprefix"; then
python_includespec="-I${python_execprefix}/include/python${python_version} $python_includespec"
python_includespec="-I${python_execprefix}/include/python${python_version} $python_includespec"
...
...
This diff is collapsed.
Click to expand it.
configure
+
14
−
1
View file @
04d15d12
...
@@ -4221,12 +4221,25 @@ echo "$as_me: error: Python not found" >&2;}
...
@@ -4221,12 +4221,25 @@ echo "$as_me: error: Python not found" >&2;}
fi
fi
echo "$as_me:$LINENO: checking for Python distutils module" >&5
echo $ECHO_N "checking for Python distutils module... $ECHO_C" >&6
if "${PYTHON}" 2>&- -c 'import distutils'
then
echo "$as_me:$LINENO: result: yes" >&5
echo "${ECHO_T}yes" >&6
else
echo "$as_me:$LINENO: result: no" >&5
echo "${ECHO_T}no" >&6
{ { echo "$as_me:$LINENO: error: distutils module not found" >&5
echo "$as_me: error: distutils module not found" >&2;}
{ (exit 1); exit 1; }; }
fi
echo "$as_me:$LINENO: checking Python installation directories" >&5
echo "$as_me:$LINENO: checking Python installation directories" >&5
echo $ECHO_N "checking Python installation directories... $ECHO_C" >&6
echo $ECHO_N "checking Python installation directories... $ECHO_C" >&6
python_version=`${PYTHON} -c "import sys; print sys.version[:3]"`
python_version=`${PYTHON} -c "import sys; print sys.version[:3]"`
python_prefix=`${PYTHON} -c "import sys; print sys.prefix"`
python_prefix=`${PYTHON} -c "import sys; print sys.prefix"`
python_execprefix=`${PYTHON} -c "import sys; print sys.exec_prefix"`
python_execprefix=`${PYTHON} -c "import sys; print sys.exec_prefix"`
python_configdir=
"
${
python_execprefix}/lib/python${python_version}/
config
"
python_configdir=
`
${
PYTHON} -c "from distutils.sysconfig import get_python_lib as f; import os; print os.path.join(f(plat_specific=1,standard_lib=1),'
config
')"`
python_includespec="-I${python_prefix}/include/python${python_version}"
python_includespec="-I${python_prefix}/include/python${python_version}"
if test "$python_prefix" != "$python_execprefix"; then
if test "$python_prefix" != "$python_execprefix"; then
python_includespec="-I${python_execprefix}/include/python${python_version} $python_includespec"
python_includespec="-I${python_execprefix}/include/python${python_version} $python_includespec"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment