diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2005-03-03 06:29:19 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2005-03-03 06:29:19 +0800 |
commit | dda67366bc2ce5546efc0deab6bfb3ef14976c46 (patch) | |
tree | a71e71941ea6a801babe2aa29e8e1a00d68f0503 /x11-toolkits | |
parent | a8622d4e6c1ca8bf66d3e1a0c8a210be4c8f4767 (diff) | |
download | marcuscom-ports-dda67366bc2ce5546efc0deab6bfb3ef14976c46.tar.gz marcuscom-ports-dda67366bc2ce5546efc0deab6bfb3ef14976c46.tar.zst marcuscom-ports-dda67366bc2ce5546efc0deab6bfb3ef14976c46.zip |
Be sure to link the GTK+ binaries with ${PTHREAD_LIBS} so things like SVG
images will work properly.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@3788 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'x11-toolkits')
-rw-r--r-- | x11-toolkits/gtk20/Makefile | 1 | ||||
-rw-r--r-- | x11-toolkits/gtk20/files/patch-gdk-pixbuf_Makefile.in | 15 | ||||
-rw-r--r-- | x11-toolkits/gtk20/files/patch-gtk_Makefile.in | 17 |
3 files changed, 33 insertions, 0 deletions
diff --git a/x11-toolkits/gtk20/Makefile b/x11-toolkits/gtk20/Makefile index 9bab04834..71a27f969 100644 --- a/x11-toolkits/gtk20/Makefile +++ b/x11-toolkits/gtk20/Makefile @@ -7,6 +7,7 @@ PORTNAME= gtk PORTVERSION= 2.6.4 +PORTREVISION= 1 CATEGORIES= x11-toolkits MASTER_SITES= ${MASTER_SITE_GNOME:S,%SUBDIR%,sources/gtk+/2.6,} \ ftp://ftp.gtk.org/pub/gtk/v2.6/ \ diff --git a/x11-toolkits/gtk20/files/patch-gdk-pixbuf_Makefile.in b/x11-toolkits/gtk20/files/patch-gdk-pixbuf_Makefile.in new file mode 100644 index 000000000..1bedfdf55 --- /dev/null +++ b/x11-toolkits/gtk20/files/patch-gdk-pixbuf_Makefile.in @@ -0,0 +1,15 @@ +--- gdk-pixbuf/Makefile.in.orig Wed Mar 2 15:56:36 2005 ++++ gdk-pixbuf/Makefile.in Wed Mar 2 15:57:08 2005 +@@ -519,10 +519,10 @@ + + bin_PROGRAMS = gdk-pixbuf-csource gdk-pixbuf-query-loaders + gdk_pixbuf_csource_SOURCES = gdk-pixbuf-csource.c +-gdk_pixbuf_csource_LDADD = $(LDADDS) ++gdk_pixbuf_csource_LDADD = $(LDADDS) $(GLIB_LIBS) + + gdk_pixbuf_query_loaders_DEPENDENCIES = $(DEPS) +-gdk_pixbuf_query_loaders_LDADD = $(LDADDS) ++gdk_pixbuf_query_loaders_LDADD = $(LDADDS) $(GLIB_LIBS) + + gdk_pixbuf_query_loaders_SOURCES = queryloaders.c + diff --git a/x11-toolkits/gtk20/files/patch-gtk_Makefile.in b/x11-toolkits/gtk20/files/patch-gtk_Makefile.in new file mode 100644 index 000000000..44589795f --- /dev/null +++ b/x11-toolkits/gtk20/files/patch-gtk_Makefile.in @@ -0,0 +1,17 @@ +--- gtk/Makefile.in.orig Wed Mar 2 15:57:44 2005 ++++ gtk/Makefile.in Wed Mar 2 15:58:22 2005 +@@ -887,12 +887,12 @@ + bin_PROGRAMS = gtk-query-immodules-2.0 gtk-update-icon-cache + + gtk_query_immodules_2_0_DEPENDENCIES = $(DEPS) +-gtk_query_immodules_2_0_LDADD = $(LDADDS) ++gtk_query_immodules_2_0_LDADD = $(LDADDS) $(GLIB_LIBS) + + gtk_query_immodules_2_0_SOURCES = queryimmodules.c + + gtk_update_icon_cache_DEPENDENCIES = $(DEPS) +-gtk_update_icon_cache_LDADD = $(LDADDS) ++gtk_update_icon_cache_LDADD = $(LDADDS) $(GLIB_LIBS) + + gtk_update_icon_cache_SOURCES = updateiconcache.c + subdir = gtk |