diff options
author | archie <archie@FreeBSD.org> | 2005-11-28 00:54:40 +0800 |
---|---|---|
committer | archie <archie@FreeBSD.org> | 2005-11-28 00:54:40 +0800 |
commit | fc95bd99d191ea638c178f4d304157b2d302d06d (patch) | |
tree | 0a26af3f726dfd75df2f2a92ebeee1fb279e5382 /java | |
parent | 2a0967cc152d4936eca3271858b9564aae2f9388 (diff) | |
download | freebsd-ports-gnome-fc95bd99d191ea638c178f4d304157b2d302d06d.tar.gz freebsd-ports-gnome-fc95bd99d191ea638c178f4d304157b2d302d06d.tar.zst freebsd-ports-gnome-fc95bd99d191ea638c178f4d304157b2d302d06d.zip |
Fix problem with -encoding flag.
PR: ports/89536
Diffstat (limited to 'java')
-rw-r--r-- | java/jikes/Makefile | 1 | ||||
-rw-r--r-- | java/jikes/files/patch-conrigure | 17 |
2 files changed, 18 insertions, 0 deletions
diff --git a/java/jikes/Makefile b/java/jikes/Makefile index 7aa3e6701f62..2d920a31a8af 100644 --- a/java/jikes/Makefile +++ b/java/jikes/Makefile @@ -7,6 +7,7 @@ PORTNAME= jikes PORTVERSION= 1.22 +PORTREVISION= 1 CATEGORIES= java MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR=jikes/ diff --git a/java/jikes/files/patch-conrigure b/java/jikes/files/patch-conrigure new file mode 100644 index 000000000000..325863907924 --- /dev/null +++ b/java/jikes/files/patch-conrigure @@ -0,0 +1,17 @@ +--- configure.orig Sun Nov 27 10:51:09 2005 ++++ configure Sun Nov 27 10:51:35 2005 +@@ -5940,12 +5940,10 @@ + + + +-list=wchar_t +- + if test $ac_cv_sizeof_wchar_t -eq 4; then +- list="$list ucs4 utf32 ucs-4 utf-32 UCS-4" ++ list="ucs4 utf32 ucs-4 utf-32 UCS-4" + else +- list="$list ucs2 utf16 ucs-2 utf-16 UCS-2" ++ list="ucs2 utf16 ucs-2 utf-16 UCS-2" + fi + + |