diff options
author | Alexander Nedotsukov <bland@FreeBSD.org> | 2003-08-21 02:18:15 +0000 |
---|---|---|
committer | Alexander Nedotsukov <bland@FreeBSD.org> | 2003-08-21 02:18:15 +0000 |
commit | 807df068584199e6e2bb350a100e0896149b0a6e (patch) | |
tree | 733868e3a143948e9597361cab9ced018f4c74d0 /devel/glib12 | |
parent | 4b2a6d1065d62fb51f74d0bf48b2b9f3e41f71f6 (diff) | |
download | ports-807df068584199e6e2bb350a100e0896149b0a6e.tar.gz ports-807df068584199e6e2bb350a100e0896149b0a6e.zip |
Fix gmodule and gthread library names in .pc files.
PR: 55745
Submitted by: KATO Tsuguru <tkato@prontomail.com> (based on)
Approved by: marcus (mentor)
Notes
Notes:
svn path=/head/; revision=87415
Diffstat (limited to 'devel/glib12')
-rw-r--r-- | devel/glib12/Makefile | 2 | ||||
-rw-r--r-- | devel/glib12/files/patch-gmodule.pc.in | 9 | ||||
-rw-r--r-- | devel/glib12/files/patch-gthread.pc.in | 9 |
3 files changed, 19 insertions, 1 deletions
diff --git a/devel/glib12/Makefile b/devel/glib12/Makefile index 46a4b8c18b22..09c29a0f7531 100644 --- a/devel/glib12/Makefile +++ b/devel/glib12/Makefile @@ -7,7 +7,7 @@ PORTNAME= glib PORTVERSION= 1.2.10 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR= sources/glib/1.2 diff --git a/devel/glib12/files/patch-gmodule.pc.in b/devel/glib12/files/patch-gmodule.pc.in new file mode 100644 index 000000000000..9b262d9ced56 --- /dev/null +++ b/devel/glib12/files/patch-gmodule.pc.in @@ -0,0 +1,9 @@ +--- gmodule.pc.in.orig Wed Aug 20 22:07:40 2003 ++++ gmodule.pc.in Wed Aug 20 22:08:12 2003 +@@ -7,5 +7,5 @@ + Description: Dynamic module loader for GLib + Requires: glib + Version: @VERSION@ +-Libs: -L${libdir} @G_MODULE_LDFLAGS@ -lgmodule @G_MODULE_LIBS@ ++Libs: -L${libdir} @G_MODULE_LDFLAGS@ -lgmodule12 @G_MODULE_LIBS@ + Cflags: diff --git a/devel/glib12/files/patch-gthread.pc.in b/devel/glib12/files/patch-gthread.pc.in new file mode 100644 index 000000000000..175af0bd62ba --- /dev/null +++ b/devel/glib12/files/patch-gthread.pc.in @@ -0,0 +1,9 @@ +--- gthread.pc.in.orig Wed Aug 20 22:07:53 2003 ++++ gthread.pc.in Wed Aug 20 22:08:33 2003 +@@ -7,5 +7,5 @@ + Description: Thread support for GLib + Requires: glib + Version: @VERSION@ +-Libs: -L${libdir} -lgthread @G_THREAD_LIBS@ ++Libs: -L${libdir} -lgthread12 @G_THREAD_LIBS@ + Cflags: @G_THREAD_CFLAGS@ |