diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2004-02-08 01:26:02 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2004-02-08 01:26:02 +0000 |
commit | b11e70ce2ea994e48c39a531138ed89a25e89559 (patch) | |
tree | 7f492631317147af73ca62bd995fa5a146c64956 | |
parent | Correct dependency in last commit. (diff) |
Add a missing dependency on libXext.
Reported by: bento
Notes
Notes:
svn path=/head/; revision=100326
-rw-r--r-- | x11/libXres/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/x11/libXres/Makefile b/x11/libXres/Makefile index d6186bada841..1e36de25ac08 100644 --- a/x11/libXres/Makefile +++ b/x11/libXres/Makefile @@ -7,14 +7,15 @@ PORTNAME= libXres PORTVERSION= 1.0.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11 MASTER_SITES= http://pdx.freedesktop.org/~xlibs/release/ MAINTAINER= x11@FreeBSD.org COMMENT= X Resource usage library -LIB_PC_DEPENDS= ${X11BASE}/libdata/pkgconfig/x11.pc:${PORTSDIR}/x11/libX11 +LIB_PC_DEPENDS= ${X11BASE}/libdata/pkgconfig/x11.pc:${PORTSDIR}/x11/libX11 \ + ${X11BASE}/libdata/pkgconfig/xext.pc:${PORTSDIR}/x11/libXext BUILD_DEPENDS= ${X11BASE}/libdata/pkgconfig/resourceext.pc:${PORTSDIR}/x11/resourceext \ ${LIB_PC_DEPENDS} RUN_DEPENDS= ${LIB_PC_DEPENDS} @@ -29,6 +30,4 @@ CFLAGS+= -DMALLOC_0_RETURNS_NULL INSTALLS_SHLIB= yes USE_GNOME= gnomehack pkgconfig -BROKEN= Does not compile - .include <bsd.port.mk> |