diff options
author | lioux <lioux@FreeBSD.org> | 2003-05-14 10:37:24 +0800 |
---|---|---|
committer | lioux <lioux@FreeBSD.org> | 2003-05-14 10:37:24 +0800 |
commit | 76fb1cbf2274149ffa3bcec8363f19a615e07d1d (patch) | |
tree | bd39c698dd8d7d2afd2e42b9a192746f1d276bbf /net-p2p | |
parent | 6f1354bc2563feb006a65f3a8c4c68019d741dfa (diff) | |
download | freebsd-ports-gnome-76fb1cbf2274149ffa3bcec8363f19a615e07d1d.tar.gz freebsd-ports-gnome-76fb1cbf2274149ffa3bcec8363f19a615e07d1d.tar.zst freebsd-ports-gnome-76fb1cbf2274149ffa3bcec8363f19a615e07d1d.zip |
Make CONFIGURE_ENV cleaner and compatible with bsd.port.mk
USE_GETOPT_LONG option
Diffstat (limited to 'net-p2p')
-rw-r--r-- | net-p2p/dctc/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net-p2p/dctc/Makefile b/net-p2p/dctc/Makefile index 2901ac439428..ff4023afdcd0 100644 --- a/net-p2p/dctc/Makefile +++ b/net-p2p/dctc/Makefile @@ -23,10 +23,10 @@ USE_GNOME= glib12 USE_PERL5_RUN= yes USE_REINPLACE= yes GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include \ - ${PTHREAD_CFLAGS}" \ - LDFLAGS="-L${LOCALBASE}/lib -lgnugetopt \ - ${PTHREAD_LIBS:S/"//g}" +LDFLAGS+= ${PTHREAD_LIBS:S/"//g} +CPPFLAGS+= ${PTHREAD_CFLAGS} +CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" \ + LDFLAGS="${LDFLAGS}" CONFIGURE_ARGS= --enable-manual-db-detect MANCOMPRESSED= no |