# HG changeset patch # User Mark Doliner # Date 1058646684 0 # Node ID 6e2f46de5e3893cac4f9c7aff853c599cb65effd # Parent 7ff81c01d238c34205e4534d9eb7a3335e746fb7 [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) committer: Tailor Script diff -r 7ff81c01d238 -r 6e2f46de5e38 plugins/Makefile.am --- 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$@.* -