Sat, 19 Jul 2003 20:31:24 +0000
[gaim-migrate @ 6730]
This seems to fix "self-"made" plugins do not load"
http://sourceforge.net/tracker/index.php?func=detail&aid=774090&group_id=235&atid=100235
(I changed -DHAVE_CONFIG to -DHAVE_CONFIG_H)
| plugins/Makefile.am | file | annotate | diff | comparison | revisions |
--- a/plugins/Makefile.am Sat Jul 19 20:01:32 2003 +0000 +++ b/plugins/Makefile.am Sat Jul 19 20:31:24 2003 +0000 @@ -59,9 +59,8 @@ # SUFFIXES = .c .so .c.so: - $(LIBTOOL) --mode=compile $(CC) -DHAVE_CONFIG $(AM_CPPFLAGS) $(CFLAGS) -c $< -o tmp$@.lo $(PLUGIN_CFLAGS) + $(LIBTOOL) --mode=compile $(CC) -DHAVE_CONFIG_H $(AM_CPPFLAGS) $(CFLAGS) -c $< -o tmp$@.lo $(PLUGIN_CFLAGS) $(LIBTOOL) --mode=link $(CC) $(CFLAGS) -o libtmp$@.la -rpath $(plugindir) tmp$@.lo $(LIBS) $(LDFLAGS) -module -avoid-version $(PLUGIN_LIBS) @rm -f tmp$@.lo tmp$@.o libtmp$@.la @cp .libs/libtmp$@.so* $@ @rm -f .libs/libtmp$@.* -