diff options
author | jlam <jlam> | 2000-07-30 02:52:20 +0000 |
---|---|---|
committer | jlam <jlam> | 2000-07-30 02:52:20 +0000 |
commit | 2a2167516601cfc8ce92b09f1845477cf6d38b49 (patch) | |
tree | b451af336f8ecc01ec4607f734f33b2d7b38b170 | |
parent | 7258a5a5ac479c7a55d85a55386b3ad96791d0f6 (diff) | |
download | pkgsrc-2a2167516601cfc8ce92b09f1845477cf6d38b49.tar.gz |
Centralize and deactivate the debugging flags. People needing them can
turn them on when developing, but we don't need it for actual use.
-rw-r--r-- | devel/libgtop/Makefile | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/devel/libgtop/Makefile b/devel/libgtop/Makefile index d121625244d..203fbd07e15 100644 --- a/devel/libgtop/Makefile +++ b/devel/libgtop/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.38 2000/06/26 18:05:44 dmcmahill Exp $ +# $NetBSD: Makefile,v 1.39 2000/07/30 02:52:20 jlam Exp $ DISTNAME= libgtop-1.0.9 CATEGORIES= devel gnome @@ -32,13 +32,15 @@ USE_GMAKE= # defined USE_LIBTOOL= # defined LTCONFIG_OVERRIDE= ${WRKSRC}/ltconfig -CFLAGS+= -g CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -g -L${LOCALBASE}/lib -lintl +LDFLAGS+= -L${LOCALBASE}/lib -lintl PERL= ${LOCALBASE}/bin/perl -# The following CPPFLAGS are for debugging purposes. -CPPFLAGS+= -DLIBGTOP_ENABLE_DEBUG -DLIBGTOP_FATAL_WARNINGS +# The following flags are for debugging purposes. They don't need to +# be used unless you are actively developing/debugging libgtop. +#CPPFLAGS+= -DLIBGTOP_ENABLE_DEBUG -DLIBGTOP_FATAL_WARNINGS +#CFLAGS+= -g +#LDFLAGS+= -g CONFIGURE_ARGS+= --with-glib-prefix=${LOCALBASE} \ --with-libgtop-guile --with-catgets |