aboutsummaryrefslogtreecommitdiff
path: root/graphics/ocrad
diff options
context:
space:
mode:
authorPav Lucistnik <pav@FreeBSD.org>2003-12-31 15:29:56 +0000
committerPav Lucistnik <pav@FreeBSD.org>2003-12-31 15:29:56 +0000
commitcc82d0fed0aaf79a23a9cf8d883fb1b03be300fa (patch)
treefd9d6f49b9319f2173bf64fbb5f31294d50da013 /graphics/ocrad
parent5d240596faa5e20d2eb039ac069899c3287bb0e0 (diff)
downloadports-cc82d0fed0aaf79a23a9cf8d883fb1b03be300fa.tar.gz
ports-cc82d0fed0aaf79a23a9cf8d883fb1b03be300fa.zip
- Simplify if expression so older versions of make can handle it
PR: ports/60765 Reported by: Stephen P. Cravey <clists@gotbrains.org>
Notes
Notes: svn path=/head/; revision=96997
Diffstat (limited to 'graphics/ocrad')
-rw-r--r--graphics/ocrad/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/ocrad/Makefile b/graphics/ocrad/Makefile
index a03f13295923..acf6c9ad1903 100644
--- a/graphics/ocrad/Makefile
+++ b/graphics/ocrad/Makefile
@@ -31,7 +31,7 @@ STD_PATCH= textline.cc recognize2.cc bitmap.cc main.cc
.include <bsd.port.pre.mk>
post-patch:
-.if (${OSVERSION} < 500000) && ! (defined(USE_GCC) && ${GCCVERSION} > 30000)
+.if ${OSVERSION} < 500000
.for file in ${STD_PATCH}
@${REINPLACE_CMD} -e 's/std::isspace/isspace/g; s/std::getc/getc/g' \
-e 's/std::ungetc/ungetc/g; s/std::feof/feof/g' \