dreamstreat / libkml

Automatically exported from code.google.com/p/libkml
Other
0 stars 0 forks source link

libkml-1.0.0-alpha won't generate python bindings with latest SWIG package #92

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Install latest swig package: 1.3.36
2. run ./configure for libkml-1.0.0-alpha

What is the expected output? What do you see instead?
Expected SWIG bindings for python, got error message instead:

WARNING: You have SWIG 1.3.36 installed, but libkml requires SWIG 1.3.35.
The bindings will not be built. 

What version of the product are you using? On what operating system?
libkml-1.0.0-alpha on Ubuntu 8.10

Did you run the unit test suite that comes with the project? Did all tests
pass?

Originally no bindings were generated, modified configure file and bindings
built, passed kmldom_test.py kmlbase_test.py and kmlengine_test.py

Please provide any additional information below.

Changed line 21349 in the configure file from:

    if test $SWIG_VERSION != 1.3.35; then

to:

    if test $SWIG_VERSION <= 1.3.35; then

which seems to have worked.

Original issue reported on code.google.com by rwsaw...@gmail.com on 4 Jun 2009 at 7:19

GoogleCodeExporter commented 8 years ago
fixed in r574

Original comment by kml.b...@gmail.com on 8 Jun 2009 at 5:13