diff options
author | Ernst de Haan <znerd@FreeBSD.org> | 2003-09-25 11:38:02 +0000 |
---|---|---|
committer | Ernst de Haan <znerd@FreeBSD.org> | 2003-09-25 11:38:02 +0000 |
commit | 4f28b280e05bc2ae41c929d736913b0b44225456 (patch) | |
tree | 6c7673025eb276a17d7ed3c5eb75651bc23b3a59 /java/jlint | |
parent | - Update to 20030924. If you're running 20030520 there is no need to (diff) |
Fix GCC33 issue. Bumped PORTREVISION.
PR: 55957
Submitted by: Volker Stolz <stolz@i2.informatik.rwth-aachen.de>
Diffstat (limited to 'java/jlint')
-rw-r--r-- | java/jlint/Makefile | 1 | ||||
-rw-r--r-- | java/jlint/files/patch-jlint.cc | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/java/jlint/Makefile b/java/jlint/Makefile index e7dc0142dd5a..e533fc042a4f 100644 --- a/java/jlint/Makefile +++ b/java/jlint/Makefile @@ -7,6 +7,7 @@ PORTNAME= jlint PORTVERSION= 2.3 +PORTREVISION= 1 CATEGORIES= java MASTER_SITES= http://artho.com/jlint/ \ http://www.metaverse.nl/~ernst/ diff --git a/java/jlint/files/patch-jlint.cc b/java/jlint/files/patch-jlint.cc new file mode 100644 index 000000000000..f66891b1d77e --- /dev/null +++ b/java/jlint/files/patch-jlint.cc @@ -0,0 +1,11 @@ +--- jlint.cc.orig Mon Aug 25 15:15:32 2003 ++++ jlint.cc Mon Aug 25 15:16:24 2003 +@@ -37,7 +37,7 @@ + + message_descriptor msg_table[] = { + #define MSG(category, code, position_dependent, format) \ +-{cat_##category, MSG_LOCATION_PREFIX##format, #code, position_dependent, true}, ++{cat_##category, MSG_LOCATION_PREFIX format, #code, position_dependent, true}, + #include "jlint.msg" + {cat_all} + }; |