[geos-commits] r3967 - in branches/3.4: . swig/ruby
svn_geos at osgeo.org
svn_geos at osgeo.org
Tue Dec 10 02:03:38 PST 2013
Author: strk
Date: 2013-12-10 02:03:38 -0800 (Tue, 10 Dec 2013)
New Revision: 3967
Modified:
branches/3.4/NEWS
branches/3.4/swig/ruby/Makefile.am
Log:
Fix Ruby automake
There is a typo or error in the automake file that prevents the Ruby
library from being found or properly linked in.
Patch by "J. Ryan Earl" <oss at jryanearl.us>
See https://github.com/libgeos/libgeos/pull/32
Modified: branches/3.4/NEWS
===================================================================
--- branches/3.4/NEWS 2013-12-10 10:01:22 UTC (rev 3966)
+++ branches/3.4/NEWS 2013-12-10 10:03:38 UTC (rev 3967)
@@ -4,6 +4,7 @@
- Bug fixes / improvements
- Fix build on HP-UX 11.23 (#664)
- Throw a ParseException on missing chars from HEXWKB string (#675)
+ - Fix ruby binding build (https://github.com/libgeos/libgeos/pull/32)
Changes in 3.4.2
2013-08-25
Modified: branches/3.4/swig/ruby/Makefile.am
===================================================================
--- branches/3.4/swig/ruby/Makefile.am 2013-12-10 10:01:22 UTC (rev 3966)
+++ branches/3.4/swig/ruby/Makefile.am 2013-12-10 10:03:38 UTC (rev 3967)
@@ -22,7 +22,7 @@
# Build Ruby module as shared library
rubyextensiondir_LTLIBRARIES = geos.la
geos_la_SOURCES = geos_wrap.cxx
-geos_la_LIBADD = $(top_builddir)/capi/libgeos_c.la -l$(RUBY_SO_NAME)
+geos_la_LIBADD = $(top_builddir)/capi/libgeos_c.la $(RUBY_SO_NAME)
# Only need to grab the capi header files
geos_la_CPPFLAGS = -I$(top_builddir)/capi
More information about the geos-commits
mailing list