diff options
author | tron <tron@pkgsrc.org> | 2000-11-27 12:23:48 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2000-11-27 12:23:48 +0000 |
commit | e43eb148577486e7127a4cc14bffa9a54969d271 (patch) | |
tree | 51568e50bcb91ee0307c5171d20045d186ee3919 /sysutils | |
parent | bf9905dfb1c0449a74e28573fd9969b67af2ba6c (diff) | |
download | pkgsrc-e43eb148577486e7127a4cc14bffa9a54969d271.tar.gz |
"USE_LIBINTL" is not enough. We need to add "-I${LOCALBASE}/include"
to "CFLAGS". The "configure.in" is probably broken.
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/gtop/Makefile | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/sysutils/gtop/Makefile b/sysutils/gtop/Makefile index 16111bfbd3b..be2d3c09d63 100644 --- a/sysutils/gtop/Makefile +++ b/sysutils/gtop/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 2000/11/27 11:54:10 itojun Exp $ +# $NetBSD: Makefile,v 1.10 2000/11/27 12:23:48 tron Exp $ DISTNAME= gtop-1.0.9 CATEGORIES= sysutils gnome @@ -13,15 +13,16 @@ BUILD_DEPENDS+= gettextize:../../devel/gettext DEPENDS+= gnome-core>=1.2.0:../../x11/gnome-core DEPENDS+= libgtop>=1.0.9:../../devel/libgtop -OSVERSION_SPECIFIC= yes -USE_GMAKE= # defined -USE_X11BASE= # defined -USE_LIBTOOL= # defined -USE_LIBINTL= # defined +OSVERSION_SPECIFIC= YES +USE_GMAKE= YES +USE_X11BASE= YES +USE_LIBTOOL= YES +USE_LIBINTL= YES -GNU_CONFIGURE= # defined +GNU_CONFIGURE= YES LTCONFIG_OVERRIDE= ${WRKSRC}/ltconfig CONFIGURE_ENV+= LOCALEBASE=${LOCALEBASE} +CFLAGS+= -I${LOCALBASE}/include PLIST_SUBST+= LOCALEBASE=${LOCALEBASE} |