diff options
author | znerd <znerd@FreeBSD.org> | 2003-09-25 19:38:02 +0800 |
---|---|---|
committer | znerd <znerd@FreeBSD.org> | 2003-09-25 19:38:02 +0800 |
commit | 28a9a31556b2c4f41ac2c9a51e58ba20105813f2 (patch) | |
tree | 3d6da7ff03405586e39ad469aaf4a65241827362 /java | |
parent | c9ad71271ec328bda405d5a91b5628b13e78675d (diff) | |
download | freebsd-ports-gnome-28a9a31556b2c4f41ac2c9a51e58ba20105813f2.tar.gz freebsd-ports-gnome-28a9a31556b2c4f41ac2c9a51e58ba20105813f2.tar.zst freebsd-ports-gnome-28a9a31556b2c4f41ac2c9a51e58ba20105813f2.zip |
Fix GCC33 issue. Bumped PORTREVISION.
PR: 55957
Submitted by: Volker Stolz <stolz@i2.informatik.rwth-aachen.de>
Diffstat (limited to 'java')
-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} + }; |