mirror of https://github.com/GNOME/gimp.git
convert backslashes to forward slashes for python stuff on Win32.
2005-06-25 Manish Singh <yosh@gimp.org> * configure.in: convert backslashes to forward slashes for python stuff on Win32.
This commit is contained in:
parent
259e1d13f3
commit
4505191405
|
@ -1,3 +1,8 @@
|
||||||
|
2005-06-25 Manish Singh <yosh@gimp.org>
|
||||||
|
|
||||||
|
* configure.in: convert backslashes to forward slashes for python
|
||||||
|
stuff on Win32.
|
||||||
|
|
||||||
2005-06-25 Sven Neumann <sven@gimp.org>
|
2005-06-25 Sven Neumann <sven@gimp.org>
|
||||||
|
|
||||||
* app/widgets/gimpimagepropview.c: use bold and right-aligned
|
* app/widgets/gimpimagepropview.c: use bold and right-aligned
|
||||||
|
|
|
@ -1354,8 +1354,11 @@ if test "x$enable_python" != xno; then
|
||||||
dnl not documented so we won't rely on internal implementation
|
dnl not documented so we won't rely on internal implementation
|
||||||
PYLINK_LIBS=
|
PYLINK_LIBS=
|
||||||
if test "x$platform_win32" = "xyes"; then
|
if test "x$platform_win32" = "xyes"; then
|
||||||
py_exec_prefix=`$PYTHON -c "import sys; print sys.exec_prefix"`
|
PYTHON=`$echo "$PYTHON" | sed -e 's/\\/\//g'`
|
||||||
PYLINK_LIBS="-L${py_exec_prefix}/libs -lpython${PYTHON_VERSION}"
|
PYTHON_INCLUDES=`$echo "$PYTHON_INCLUDES" | sed -e 's/\\/\//g'`
|
||||||
|
py_exec_prefix=`echo "$py_exec_prefix" | sed -e 's/\\/\//g'`
|
||||||
|
pylibversion=`echo $PYTHON_VERSION | sed -e 's/\.//'`
|
||||||
|
PYLINK_LIBS="-L${py_exec_prefix}/libs -lpython${pylibversion}"
|
||||||
fi
|
fi
|
||||||
AC_SUBST(PYLINK_LIBS)
|
AC_SUBST(PYLINK_LIBS)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue