aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoredwin <edwin@FreeBSD.org>2004-08-04 11:25:18 +0800
committeredwin <edwin@FreeBSD.org>2004-08-04 11:25:18 +0800
commit311a8d2ec81b4e73331ca12acb1292c914b6a980 (patch)
tree3c06265b072eb51ff7095b6bf8700de816a9bee4
parentbe4c929ff87e68de4542d1ab52b41ede045a1d03 (diff)
downloadfreebsd-ports-gnome-311a8d2ec81b4e73331ca12acb1292c914b6a980.tar.gz
freebsd-ports-gnome-311a8d2ec81b4e73331ca12acb1292c914b6a980.tar.zst
freebsd-ports-gnome-311a8d2ec81b4e73331ca12acb1292c914b6a980.zip
[maintainer update] textproc/skim -- fix build
The configure script of textproc/skim does not make use of CFLAGS or CPPFLAGS but only CXXFLAGS. So the critical ``-D__STDC_ISO_10646__'' should be put to CXXFLAGS in CONFIGURE_ENV. PR: ports/69930 Submitted by: "Jie Gao" <gaoj@cpsc.ucalgary.ca>
-rw-r--r--textproc/skim/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/textproc/skim/Makefile b/textproc/skim/Makefile
index 2897a8873daa..a9efd7b8195f 100644
--- a/textproc/skim/Makefile
+++ b/textproc/skim/Makefile
@@ -21,7 +21,7 @@ USE_ICONV= yes
USE_GMAKE= yes
USE_REINPLACE= yes
GNU_CONFIGURE= yes
-CONFIGURE_ENV= CFLAGS="-D__STDC_ISO_10646__" \
+CONFIGURE_ENV= CXXFLAGS="${CXXFLAGS} -D__STDC_ISO_10646__" \
PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" \
PTHREAD_LIBS="${PTHREAD_LIBS}"