diff options
author | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2011-04-06 20:02:57 +0800 |
---|---|---|
committer | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2011-04-06 20:02:57 +0800 |
commit | 4c7d2a59dfb7f7bc85dc2378c90e22d8b0aeab34 (patch) | |
tree | 9c98be0e2e0466775e11f3f054ac6b58b2d837f8 /devel/glade3/files | |
parent | d57228f493df4a875129e2efee17f73760dc4a79 (diff) | |
download | marcuscom-ports-4c7d2a59dfb7f7bc85dc2378c90e22d8b0aeab34.tar marcuscom-ports-4c7d2a59dfb7f7bc85dc2378c90e22d8b0aeab34.tar.gz marcuscom-ports-4c7d2a59dfb7f7bc85dc2378c90e22d8b0aeab34.tar.bz2 marcuscom-ports-4c7d2a59dfb7f7bc85dc2378c90e22d8b0aeab34.tar.lz marcuscom-ports-4c7d2a59dfb7f7bc85dc2378c90e22d8b0aeab34.tar.xz marcuscom-ports-4c7d2a59dfb7f7bc85dc2378c90e22d8b0aeab34.tar.zst marcuscom-ports-4c7d2a59dfb7f7bc85dc2378c90e22d8b0aeab34.zip |
Update to 3.8.0.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@15760 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'devel/glade3/files')
-rw-r--r-- | devel/glade3/files/patch-configure | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/devel/glade3/files/patch-configure b/devel/glade3/files/patch-configure new file mode 100644 index 000000000..f7b30f833 --- /dev/null +++ b/devel/glade3/files/patch-configure @@ -0,0 +1,24 @@ +--- configure.orig 2011-03-03 13:42:44.000000000 +0100 ++++ configure 2011-03-03 13:44:03.000000000 +0100 +@@ -14138,7 +14138,7 @@ + $as_echo_n "checking for headers required to compile python extensions... " >&6; } + py_prefix=`$PYTHON -c "import sys; print sys.prefix"` + py_exec_prefix=`$PYTHON -c "import sys; print sys.exec_prefix"` +-if test "x$PYTHON_INCLUDES" == x; then ++if test "x$PYTHON_INCLUDES" = x; then + PYTHON_INCLUDES="-I${py_prefix}/include/python${PYTHON_VERSION}" + if test "$py_prefix" != "$py_exec_prefix"; then + PYTHON_INCLUDES="$PYTHON_INCLUDES -I${py_exec_prefix}/include/python${PYTHON_VERSION}" +@@ -14167,10 +14167,10 @@ + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libraries required to embed python" >&5 + $as_echo_n "checking for libraries required to embed python... " >&6; } + py_exec_prefix=`$PYTHON -c "import sys; print sys.exec_prefix"` +-if test "x$PYTHON_LIBS" == x; then ++if test "x$PYTHON_LIBS" = x; then + PYTHON_LIBS="-L${py_prefix}/lib -lpython${PYTHON_VERSION}" + fi +-if test "x$PYTHON_LIB_LOC" == x; then ++if test "x$PYTHON_LIB_LOC" = x; then + PYTHON_LIB_LOC="${py_prefix}/lib" + fi + |