diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | plugin.mk | 2 | ||||
-rw-r--r-- | server.mk | 2 |
3 files changed, 7 insertions, 1 deletions
@@ -6,6 +6,10 @@ in a separate -lregex. Include also camel-provider's CFLAGS and LIBS for IMPORTERS. Expand win32/Makefile. + * plugin.mk: Expand also @SOEXT@. + + * server.mk: Expand also @SOEXT@ and @EXEEXT@. + * win32/README * win32/Makefile.am * win32/dummy.la @@ -1,5 +1,5 @@ %.eplug: %.eplug.in - sed -e 's|\@PLUGINDIR\@|$(plugindir)|' $< > $@ + sed -e 's|\@PLUGINDIR\@|$(plugindir)|' -e 's|\@SOEXT\@|$(SOEXT)|' $< > $@ %.eplug.in: %.eplug.xml LC_ALL=C $(INTLTOOL_MERGE) -x -u /tmp $< $@ @@ -4,6 +4,8 @@ -e 's|\@COMPONENTDIR\@|$(componentdir)|' \ -e 's|\@IMPORTERSDIR\@|$(importersdir)|' \ -e 's|\@VERSION\@|$(BASE_VERSION)|' \ + -e 's|\@EXEEXT\@|$(EXEEXT)|' \ + -e 's|\@SOEXT\@|$(SOEXT)|' \ -e 's|\@INTERFACE_VERSION\@|$(INTERFACE_VERSION)|' $< > $@ %_$(BASE_VERSION).server: %.server |