diff options
author | gdt <gdt@pkgsrc.org> | 2008-05-14 02:24:18 +0000 |
---|---|---|
committer | gdt <gdt@pkgsrc.org> | 2008-05-14 02:24:18 +0000 |
commit | 67aedf838b3fbfb61cdb8a813f559f7cc03a61ba (patch) | |
tree | 04b1fa646f41d22146ed81c457e7027327d7cdb4 /devel/libbonoboui | |
parent | 0e17b6ba7198f73e413101d34eb2d2f32d2a3803 (diff) | |
download | pkgsrc-67aedf838b3fbfb61cdb8a813f559f7cc03a61ba.tar.gz |
Bl3 -lX11, -lICE, and -lSM. If pango does not include X11, configure
adds these libraries explicitly. With X11_TYPE=modular, they are not
found. This fix does not seem entirely right, but does seem
necessary. It's not clear how this ever built with modular.
Diffstat (limited to 'devel/libbonoboui')
-rw-r--r-- | devel/libbonoboui/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/devel/libbonoboui/Makefile b/devel/libbonoboui/Makefile index bc8b73637e1..e9e22f8d0dd 100644 --- a/devel/libbonoboui/Makefile +++ b/devel/libbonoboui/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.65 2008/04/30 13:38:14 jmmv Exp $ +# $NetBSD: Makefile,v 1.66 2008/05/14 02:24:18 gdt Exp $ # DISTNAME= libbonoboui-2.22.0 @@ -38,4 +38,9 @@ BUILDLINK_API_DEPENDS.libgnome+= libgnome>=2.13.7 .include "../../sysutils/gnome-vfs/buildlink3.mk" .include "../../textproc/libxml2/buildlink3.mk" .include "../../x11/gtk2/buildlink3.mk" +# Because pango does not include -lX11, configure does AC_PATH_XTRA +# which links the following three libraries. +.include "../../x11/libICE/buildlink3.mk" +.include "../../x11/libSM/buildlink3.mk" +.include "../../x11/libX11/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |