From: <amc...@us...> - 2006-09-03 18:45:21
|
Revision: 17143 http://svn.sourceforge.net/gaim/?rev=17143&view=rev Author: amc_grim Date: 2006-09-03 11:45:16 -0700 (Sun, 03 Sep 2006) Log Message: ----------- And I completely forgot this as well... Modified Paths: -------------- trunk/console/libgnt/Makefile.am Modified: trunk/console/libgnt/Makefile.am =================================================================== --- trunk/console/libgnt/Makefile.am 2006-09-03 18:44:11 UTC (rev 17142) +++ trunk/console/libgnt/Makefile.am 2006-09-03 18:45:16 UTC (rev 17143) @@ -53,4 +53,5 @@ AM_CPPFLAGS = \ $(GLIB_CFLAGS) \ + $(GNT_CFLAGS) \ -Wall This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sa...@us...> - 2006-10-04 02:49:29
|
Revision: 17424 http://svn.sourceforge.net/gaim/?rev=17424&view=rev Author: sadrul Date: 2006-10-02 18:59:32 -0700 (Mon, 02 Oct 2006) Log Message: ----------- libgnt needs to build before the wms. This should fix the compile problem for fresh checkouts. Modified Paths: -------------- trunk/console/libgnt/Makefile.am Modified: trunk/console/libgnt/Makefile.am =================================================================== --- trunk/console/libgnt/Makefile.am 2006-10-02 22:50:27 UTC (rev 17423) +++ trunk/console/libgnt/Makefile.am 2006-10-03 01:59:32 UTC (rev 17424) @@ -1,4 +1,4 @@ -SUBDIRS = wms +SUBDIRS = . wms pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = gnt.pc This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ebl...@us...> - 2006-10-18 23:42:04
|
Revision: 17538 http://svn.sourceforge.net/gaim/?rev=17538&view=rev Author: eblanton Date: 2006-10-18 16:41:57 -0700 (Wed, 18 Oct 2006) Log Message: ----------- -Wall should be set by configure.ac iff CC=gcc Modified Paths: -------------- trunk/console/libgnt/Makefile.am Modified: trunk/console/libgnt/Makefile.am =================================================================== --- trunk/console/libgnt/Makefile.am 2006-10-18 22:27:30 UTC (rev 17537) +++ trunk/console/libgnt/Makefile.am 2006-10-18 23:41:57 UTC (rev 17538) @@ -60,5 +60,4 @@ AM_CPPFLAGS = \ $(GLIB_CFLAGS) \ - $(GNT_CFLAGS) \ - -Wall + $(GNT_CFLAGS) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sa...@us...> - 2006-12-07 07:13:08
|
Revision: 17913 http://svn.sourceforge.net/gaim/?rev=17913&view=rev Author: sadrul Date: 2006-12-06 23:05:20 -0800 (Wed, 06 Dec 2006) Log Message: ----------- I think this fixed some compile error on some platform for Alver. Modified Paths: -------------- trunk/console/libgnt/Makefile.am Modified: trunk/console/libgnt/Makefile.am =================================================================== --- trunk/console/libgnt/Makefile.am 2006-12-07 07:03:40 UTC (rev 17912) +++ trunk/console/libgnt/Makefile.am 2006-12-07 07:05:20 UTC (rev 17913) @@ -56,7 +56,7 @@ libgnt_lainclude_HEADERS = \ $(libgnt_la_headers) -libgnt_la_DEPENDENCIES = @LIBOBJS@ $(STATIC_LINK_LIBS) +libgnt_la_DEPENDENCIES = $(STATIC_LINK_LIBS) libgnt_la_LDFLAGS = -export-dynamic libgnt_la_LIBADD = \ $(GLIB_LIBS) \ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sa...@us...> - 2006-12-11 03:40:17
|
Revision: 17953 http://svn.sourceforge.net/gaim/?rev=17953&view=rev Author: sadrul Date: 2006-12-10 19:40:11 -0800 (Sun, 10 Dec 2006) Log Message: ----------- This seems to fix the compilation bug from a fresh checkout (reported in #gaim). Modified Paths: -------------- trunk/console/libgnt/Makefile.am Modified: trunk/console/libgnt/Makefile.am =================================================================== --- trunk/console/libgnt/Makefile.am 2006-12-11 00:33:57 UTC (rev 17952) +++ trunk/console/libgnt/Makefile.am 2006-12-11 03:40:11 UTC (rev 17953) @@ -5,6 +5,7 @@ lib_LTLIBRARIES = libgnt.la libgnt_la_SOURCES = \ + gntmarshal.c \ gntwidget.c \ gntbindable.c \ gntbox.c \ @@ -16,7 +17,6 @@ gntkeys.c \ gntlabel.c \ gntline.c \ - gntmarshal.c \ gntmenu.c \ gntmenuitem.c \ gntmenuitemcheck.c \ @@ -56,7 +56,7 @@ gntmarshal.h \ gntmarshal.c -gntmarshal.c: genmarshal +gntmarshal.c: genmarshal gntmarshal.h cat genmarshal | glib-genmarshal --prefix=gnt_closure_marshal --body > $@ gntmarshal.h: genmarshal This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <amc...@us...> - 2006-12-13 00:56:57
|
Revision: 17978 http://svn.sourceforge.net/gaim/?rev=17978&view=rev Author: amc_grim Date: 2006-12-12 16:56:57 -0800 (Tue, 12 Dec 2006) Log Message: ----------- make sure genmarshall get dist'd Modified Paths: -------------- trunk/console/libgnt/Makefile.am Modified: trunk/console/libgnt/Makefile.am =================================================================== --- trunk/console/libgnt/Makefile.am 2006-12-12 23:49:00 UTC (rev 17977) +++ trunk/console/libgnt/Makefile.am 2006-12-13 00:56:57 UTC (rev 17978) @@ -1,3 +1,5 @@ +EXTRA_DIST=genmarshal + SUBDIRS = . wms pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = gnt.pc This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |