Changes between Version 1 and Version 2 of Ticket #2068


Ignore:
Timestamp:
Dec 6, 2007, 3:35:22 PM (16 years ago)
Author:
Mateusz Łoskot
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #2068 – Description

    v1 v2  
    11I'm building GDAL with ECW support on Mac OS X 10.4 using ''./configure --with-ecw'' and linking against ''libecwj2-3.3'' binaries.
     2
     3{{{
     4~/dev/gdal/_svn/trunk/gdal $ otool -L /Users/mloskot/dev/gdal/_svn/trunk/gdal/libgdal.dylib |grep NCS
     5        /usr/local/lib/libNCSEcw.0.dylib (compatibility version 1.0.0, current version 1.0.0)
     6        /usr/local/lib/libNCSCnet.0.dylib (compatibility version 1.0.0, current version 1.0.0)
     7        /usr/local/lib/libNCSUtil.0.dylib (compatibility version 1.0.0, current version 1.0.0)
     8}}}
    29
    310I also request Python bindings using ''--without-ogpython --with-python''.
     
    3239}}}
    3340
    34 Here is where I suck Python bindings from:
     41Here is where I suck the GDAL Python bindings from:
    3542{{{
    3643~/dev/gdal/_svn $ echo $DYLD_LIBRARY_PATH 
     
    4653
    4754I'm wondering if it is a bug or something specific to my environment.
     55
     56However, everything works well when using GDAL '''without''' ECW support:
     57
     58{{{
     59~/dev/gdal/_svn/trunk/gdal $ otool -L /Users/mloskot/dev/gdal/_svn/trunk/gdal/libgdal.dylib | grep NCS
     60~/dev/gdal/_svn/trunk/gdal
     61}}}
     62
     63and I can import GDAL modules with success:
     64{{{
     65~/dev/gdal/_svn/trunk/gdal $ python
     66Python 2.3.5 (#1, Dec  7 2006, 14:50:51)
     67[GCC 4.0.1 (Apple Computer, Inc. build 5363) (+4864187)] on darwin
     68Type "help", "copyright", "credits" or "license" for more information.
     69>>> import gdal
     70/Users/mloskot/dev/gdal/_svn/trunk/gdal/swig/python/build/lib.darwin-8.11.1-i386-2.3/osgeo/gdal.py:81: DeprecationWarning: gdal.py was placed in a namespace, it is now available as osgeo.gdal
     71  DeprecationWarning)
     72>>>
     73}}}