diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2004-08-04 03:25:18 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2004-08-04 03:25:18 +0000 |
commit | 32c6373e09c6cdeaab3c68852b86aee4bd7dc88c (patch) | |
tree | 3c339076dd145c811ad928a4ad0389d4635aee26 /textproc/skim | |
parent | [MAINTAINER] security/clamsmtp: update to 0.5 (diff) |
[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>
Notes
Notes:
svn path=/head/; revision=115376
Diffstat (limited to 'textproc/skim')
-rw-r--r-- | textproc/skim/Makefile | 2 |
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}" |