Changes between Version 1 and Version 2 of Ticket #191


Ignore:
Timestamp:
Jul 26, 2008, 1:06:10 PM (16 years ago)
Author:
mloskot
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #191 – Description

    v1 v2  
    11GEOS-3.0.0 At lines 24411 to 24420 in configure:
    22{{{
    3         # Check for Python library path
    4         { echo "$as_me:$LINENO: checking for Python library path" >&5
     3# Check for Python library path
     4{ echo "$as_me:$LINENO: checking for Python library path" >&5
    55echo "checking for Python library path... " >&6; }
    6        for i in "$base_python_path/lib/python$PYTHON_VERSION/config/" "$base_python_path/lib/python$PYTHON_VERSION/" "$base_python_path/lib/python/config/" "$base_python_path/lib/python/" "$base_python_path/" "$base_python_path/lib/" ; do
    7 #                python_path=`find $i -type f -name libpython$PYTHON_VERSION.* -print 2> /dev/null | sed "1q"`
    8                 python_path=`find $i -name libpython$PYTHON_VERSION.* -print 2> /dev/null | sed "1q"`
    9                 if test -n "$python_path" ; then
    10                         break
    11                 fi
    12         done
     6
     7for i in "$base_python_path/lib/python$PYTHON_VERSION/config/" "$base_python_path/lib/python$PYTHON_VERSION/" "$base_python_path/lib/python/config/" "$base_python_path/lib/python/" "$base_python_path/" "$base_python_path/lib/" ; do
     8
     9# python_path=`find $i -type f -name libpython$PYTHON_VERSION.* -print 2> /dev/null | sed "1q"`
     10
     11python_path=`find $i -name libpython$PYTHON_VERSION.* -print 2> /dev/null | sed "1q"`
     12
     13  if test -n "$python_path" ; then
     14     break
     15  fi
     16done
    1317}}}
    1418