# HG changeset patch # User Sadrul Habib Chowdhury # Date 1168580351 0 # Node ID daf402269760befb63f770449570a325185523b4 # Parent 3fe87798b059fbbd52d0ed71bf5f232b8ff992ae [gaim-migrate @ 18113] Slightly modified patch from Brad Smith: "At the moment there is a bug with the console UI's plug-in gntgf Makefile. The bug is that the X header path is not passed along from AM_CPPFLAGS thus causing gaim to fail to compile the plug-in as shown below. This is fixed by simply adding X11_CFLAGS to AM_CPPFLAGS." committer: Tailor Script diff -r 3fe87798b059 -r daf402269760 COPYRIGHT --- a/COPYRIGHT Fri Jan 12 02:50:08 2007 +0000 +++ b/COPYRIGHT Fri Jan 12 05:39:11 2007 +0000 @@ -294,6 +294,7 @@ John Silvestri Craig Slusher Alex Smith +Brad Smith Malcolm Smith David Smock Phil Snowberger diff -r 3fe87798b059 -r daf402269760 console/plugins/Makefile.am --- a/console/plugins/Makefile.am Fri Jan 12 02:50:08 2007 +0000 +++ b/console/plugins/Makefile.am Fri Jan 12 05:39:11 2007 +0000 @@ -13,7 +13,9 @@ gntgf_la_SOURCES = gntgf.c gnthistory_la_SOURCES = gnthistory.c -gntlastlog_la_SOURCES = lastlog.c +gntlastlog_la_SOURCES = lastlog.c + +gntgf_la_CFLAGS = $(X11_CFLAGS) gntgf_la_LIBADD = $(GLIB_LIBS) $(X11_LIBS) $(top_builddir)/console/libgnt/libgnt.la gnthistory_la_LIBADD = $(GLIB_LIBS)