diff options
author | rillig <rillig@pkgsrc.org> | 2006-09-27 15:28:50 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2006-09-27 15:28:50 +0000 |
commit | e7883fba3977979a528f4a58e5ba04328c17f56e (patch) | |
tree | 5696018e387d2cd894f1d3c5c23c06cb47844a38 /misc | |
parent | 501c914fcb894e6f43e7c0363bc152c4ee0bebb3 (diff) | |
download | pkgsrc-e7883fba3977979a528f4a58e5ba04328c17f56e.tar.gz |
Added a patch that allows OpenOffice to be built with gcc>=4.0.
This fixes PR 34617.
Diffstat (limited to 'misc')
-rw-r--r-- | misc/openoffice/distinfo | 3 | ||||
-rw-r--r-- | misc/openoffice/patches/patch-ba | 15 |
2 files changed, 17 insertions, 1 deletions
diff --git a/misc/openoffice/distinfo b/misc/openoffice/distinfo index 0671a1ca3b3..251345af671 100644 --- a/misc/openoffice/distinfo +++ b/misc/openoffice/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.34 2005/10/03 16:03:19 mrauch Exp $ +$NetBSD: distinfo,v 1.35 2006/09/27 15:28:50 rillig Exp $ SHA1 (openoffice-1.1.5/OOo_1.1.5_src.tar.gz) = 55b316209eaabf151a59ead2abc3c621502058ea RMD160 (openoffice-1.1.5/OOo_1.1.5_src.tar.gz) = 4f0759d0e3951dd511487f1ed774649dcc94e0db @@ -65,3 +65,4 @@ SHA1 (patch-au) = 3fd383266f24c4a0c5e6f0cd00d419e1fe20cafa SHA1 (patch-av) = fa1910700a104347bf29ba19851f47eca34c8be1 SHA1 (patch-aw) = f0decfe7d1bac881ec83b09328a6b863a9bed7b1 SHA1 (patch-ax) = 4679a5b3eda8dbe5927cf09de81e54557a4a0809 +SHA1 (patch-ba) = 7c156791f88b4ba99ec9a4a582242633ceef7f6b diff --git a/misc/openoffice/patches/patch-ba b/misc/openoffice/patches/patch-ba new file mode 100644 index 00000000000..c94f51d5e70 --- /dev/null +++ b/misc/openoffice/patches/patch-ba @@ -0,0 +1,15 @@ +$NetBSD: patch-ba,v 1.3 2006/09/27 15:28:50 rillig Exp $ + +When checking for gcc>=3, the correct operator is -ge, not =. + +--- configure.orig 2005-07-08 09:55:43.000000000 +0200 ++++ configure 2006-09-27 17:17:58.000000000 +0200 +@@ -3198,7 +3198,7 @@ echo $ECHO_N "checking the GNU gcc compi + _gcc_major=`echo $_gcc_version | $AWK -F. '{ print \$1 }'` + _gcc_longver=`echo $_gcc_version | $AWK -F. '{ print \$1*10000+\$2*100+\$3 }'` + +- if test "$_gcc_major" = "3"; then ++ if test "$_gcc_major" -ge "3"; then + USE_GCC3="TRUE" + if test "$_gcc_longver" -eq "030203"; then + if test "$ENABLE_SYMBOLS" = "SMALL"; then |