changeset 6237:6e2f46de5e38

[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 <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Sat, 19 Jul 2003 20:31:24 +0000
parents 7ff81c01d238
children 6173354a64dc
files plugins/Makefile.am
diffstat 1 files changed, 1 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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$@.*
-