build plugins without .so extension

This commit is contained in:
Andreas Volz 2007-09-17 20:16:43 +00:00
parent 8e071f84c7
commit 670862879b
6 changed files with 25 additions and 25 deletions

View file

@ -2,7 +2,6 @@
## Created by Anjuta
SUBDIRS = src \
agg\
plugins\
include

View file

@ -90,9 +90,6 @@ AC_SUBST(AGG_LIBS)
AC_OUTPUT([
Makefile
agg/Makefile
agg/src/Makefile
agg/include/Makefile
include/Makefile
include/mapnik/Makefile
plugins/Makefile

View file

@ -1,16 +1,17 @@
pkglib_LTLIBRARIES = \
gdal.input.la
gdal.la
gdal_input_la_SOURCES = \
gdal_la_SOURCES = \
gdal_datasource.cpp\
gdal_featureset.cpp
gdal_input_la_CXXFLAGS = \
gdal_la_CXXFLAGS = \
-I../../../include
gdal_input_la_LDFLAGS = \
gdal_la_LDFLAGS = \
-module \
-avoid-version
-avoid-version \
-shrext .input
## File created by the gnome-build tools

View file

@ -2,22 +2,23 @@
if BUILD_POSTGRESQL
pkglib_LTLIBRARIES = \
postgis.input.la
postgis.la
postgis_input_la_SOURCES = \
postgis_la_SOURCES = \
postgis.cpp \
postgisfs.cpp
postgis_input_la_LIBADD = \
postgis_la_LIBADD = \
${POSTGRESQL_LDFLAGS}
postgis_input_la_CXXFLAGS = \
postgis_la_CXXFLAGS = \
${POSTGRESQL_CFLAGS} \
-I../../../include
postgis_input_la_LDFLAGS = \
postgis_la_LDFLAGS = \
-module \
-avoid-version
-avoid-version \
-shrext .input
endif

View file

@ -1,18 +1,19 @@
pkglib_LTLIBRARIES = \
raster.input.la
raster.la
raster_input_la_SOURCES = \
raster_la_SOURCES = \
raster_datasource.cpp\
raster_featureset.cpp\
raster_info.cpp
raster_input_la_CXXFLAGS = \
raster_la_CXXFLAGS = \
-I../../../include
raster_input_la_LDFLAGS = \
raster_la_LDFLAGS = \
-module \
-avoid-version
-avoid-version \
-shrext .input
## File created by the gnome-build tools

View file

@ -1,8 +1,8 @@
pkglib_LTLIBRARIES = \
shape.input.la
shape.la
shape_input_la_SOURCES = \
shape_la_SOURCES = \
dbffile.cpp \
dbf_test.cpp \
shape.cpp \
@ -12,12 +12,13 @@ shape_input_la_SOURCES = \
shape_io.cpp \
shp_index.cpp
shape_input_la_CXXFLAGS = \
shape_la_CXXFLAGS = \
-I../../../include
shape_input_la_LDFLAGS = \
shape_la_LDFLAGS = \
-module \
-avoid-version
-avoid-version \
-shrext .input
## File created by the gnome-build tools