head 1.4; access; symbols pkgsrc-2013Q2:1.4.0.20 pkgsrc-2013Q2-base:1.4 pkgsrc-2012Q4:1.4.0.18 pkgsrc-2012Q4-base:1.4 pkgsrc-2011Q4:1.4.0.16 pkgsrc-2011Q4-base:1.4 pkgsrc-2011Q2:1.4.0.14 pkgsrc-2011Q2-base:1.4 pkgsrc-2009Q4:1.4.0.12 pkgsrc-2009Q4-base:1.4 pkgsrc-2008Q4:1.4.0.10 pkgsrc-2008Q4-base:1.4 pkgsrc-2008Q3:1.4.0.8 pkgsrc-2008Q3-base:1.4 cube-native-xorg:1.4.0.6 cube-native-xorg-base:1.4 pkgsrc-2008Q2:1.4.0.4 pkgsrc-2008Q2-base:1.4 pkgsrc-2008Q1:1.4.0.2 pkgsrc-2008Q1-base:1.4 pkgsrc-2007Q4:1.3.0.30 pkgsrc-2007Q4-base:1.3 pkgsrc-2007Q3:1.3.0.28 pkgsrc-2007Q3-base:1.3 pkgsrc-2007Q2:1.3.0.26 pkgsrc-2007Q2-base:1.3 pkgsrc-2007Q1:1.3.0.24 pkgsrc-2007Q1-base:1.3 pkgsrc-2006Q4:1.3.0.22 pkgsrc-2006Q4-base:1.3 pkgsrc-2006Q3:1.3.0.20 pkgsrc-2006Q3-base:1.3 pkgsrc-2006Q2:1.3.0.18 pkgsrc-2006Q2-base:1.3 pkgsrc-2006Q1:1.3.0.16 pkgsrc-2006Q1-base:1.3 pkgsrc-2005Q4:1.3.0.14 pkgsrc-2005Q4-base:1.3 pkgsrc-2005Q3:1.3.0.12 pkgsrc-2005Q3-base:1.3 pkgsrc-2005Q2:1.3.0.10 pkgsrc-2005Q2-base:1.3 pkgsrc-2005Q1:1.3.0.8 pkgsrc-2005Q1-base:1.3 pkgsrc-2004Q4:1.3.0.6 pkgsrc-2004Q4-base:1.3 pkgsrc-2004Q3:1.3.0.4 pkgsrc-2004Q3-base:1.3 pkgsrc-2004Q2:1.3.0.2 pkgsrc-2004Q2-base:1.3 pkgsrc-2004Q1:1.2.0.8 pkgsrc-2004Q1-base:1.2 pkgsrc-2003Q4:1.2.0.6 pkgsrc-2003Q4-base:1.2 netbsd-1-6-1:1.2.0.2 netbsd-1-6-1-base:1.2 netbsd-1-6:1.2.0.4 netbsd-1-6-RELEASE-base:1.2 pkgviews:1.1.1.1.0.4 pkgviews-base:1.1.1.1 buildlink2:1.1.1.1.0.2 buildlink2-base:1.1.1.1 netbsd-1-5-PATCH003:1.1.1.1 pkgsrc-base:1.1.1.1 TNF:1.1.1; locks; strict; comment @# @; 1.4 date 2008.03.25.13.43.18; author wiz; state dead; branches; next 1.3; 1.3 date 2004.05.03.20.56.36; author mrauch; state Exp; branches; next 1.2; 1.2 date 2002.08.02.20.33.23; author jdolecek; state Exp; branches; next 1.1; 1.1 date 2002.02.13.18.09.23; author mrauch; state Exp; branches 1.1.1.1; next ; 1.1.1.1 date 2002.02.13.18.09.23; author mrauch; state Exp; branches; next ; desc @@ 1.4 log @Remove openoffice (1.x branch) packages. They have security problems and are not maintained. Removal was announced on pkgsrc-users on March 13. @ text @$NetBSD: patch-ao,v 1.3 2004/05/03 20:56:36 mrauch Exp $ --- ../i18npool/source/breakiterator/gendict.cxx.orig 2004-04-17 19:30:03.000000000 +0200 +++ ../i18npool/source/breakiterator/gendict.cxx @@@@ -95,8 +95,12 @@@@ int SAL_CALL main(int argc, char* argv[] fprintf(cfp, "extern \"C\" {\n"); sal_Int32 count, i, j; - sal_Int32 lenArrayCurr = 0, lenArrayCount = 0, lenArrayLen = 0, *lenArray = NULL, charArray[0x10000]; - sal_Bool exist[0x10000]; + sal_Int32 lenArrayCurr = 0, lenArrayCount = 0, lenArrayLen = 0, *lenArray = NULL, *charArray; + sal_Bool *exist; + charArray = (sal_Int32*) malloc(0x10000*sizeof(*charArray)); + if (charArray == NULL) exit(1); + exist = (sal_Bool*) malloc(0x10000*sizeof(*exist)); + if (exist == NULL) exit(1); for (i = 0; i < 0x10000; i++) { exist[i] = sal_False; charArray[i] = 0; @ 1.3 log @Update to version 1.1.1. New features include: * PDF, DocBook/XML, XHTML and Macromedia Flash (SWF) export * Accessibility * Support for Complex Text Layout (CTL) * User installation automated @ text @d1 1 a1 1 $NetBSD$ @ 1.2 log @make work with sun-jdk14 (which appears to be default now) - unlimit datasize, change check in configure, and some small tweaks to some Java code (assert, double ;;) @ text @d3 4 a6 56 --- configure.in.orig Mon Nov 12 22:45:53 2001 +++ configure.in Fri Aug 2 21:14:58 2002 @@@@ -204,12 +204,14 @@@@ dnl ****************************************** dnl Check whether the gnu gcc compiler is used. if test -z "$with_gcc_home"; then - if test "$CC" = "gcc"; then - AC_PATH_PROG(GCC, gcc) - COMPATH=`echo $GCC | $SED -n "s/\/gcc//p"` + dnl NetBSD pkgsrc is guaranteed to have gcc. + dnl if test "$CC" = "gcc"; then + GCC=$CC + COMPATH=`echo $GCC | $AWK '{print $1}' | xargs dirname ` + CCFLAGS=$LDFLAGS; export CCFLAGS; _gcc_include_start=/usr/lib/gcc-lib _gxx_include_start=/usr/include - fi + dnl fi else dnl Compiler has been installed to its own directory and it's home is arg with_gcc_home _gcc_path="$with_gcc_home/bin/gcc" @@@@ -256,6 +258,9 @@@@ dnl find include paths now AC_MSG_CHECKING([the GNU gcc include paths]) _gcc_include_path=`find $_gcc_include_start -name $_gcc_version -print 2> /dev/null` + if test "$_os" = "NetBSD" -a -z "$_gcc_include_path"; then + _gcc_include_path="/usr" + fi if test "$_gcc_include_path"; then _multiple=`echo $_gcc_include_path | $AWK '{ if ($2) print "true"; else print "false" }'` if test "$_multiple" = "false"; then @@@@ -305,7 +310,7 @@@@ _gcc_include_path="NO_GCC_INCLUDE" fi else - if test "$_os" = "FreeBSD" -o "$_os" = "NetBSD" ; then + if test "$_os" = "FreeBSD" ; then _gcc_include_path="/usr/include/g++" else AC_MSG_WARN([could not find 2.95.2/include directory of the gcc compiler]) @@@@ -740,6 +745,12 @@@@ fi if test "$_os" = "FreeBSD" -o "$_os" = "NetBSD"; then _jdk_middle=`echo $_jdk | $AWK -F. '{ if ($2 != 2) print "false"; else print "true" }'` + _jdk_middle3=`echo $_jdk | $AWK -F. '{ if ($2 != 3) print "false"; else print "true" }'` + _jdk_middle4=`echo $_jdk | $AWK -F. '{ if ($2 != 4) print "false"; else print "true" }'` + + if test "$_jdk_middle" = "false" -a \( "$_jdk_middle3" = "true" -o "$_jdk_middle4" = "true" \); then + _jdk_minor="true" + fi fi if test "$_os" = "Linux" -a "$_machine_type" = "sparc"; then _jdk_middle=`echo $_jdk | $AWK -F. '{ if ($2 != 2) print "false"; else print "true" }'` @@@@ -982,7 +993,7 @@@@ HAVE_GPC_C="yes" fi d8 12 a19 5 -if test "$HAVE_GPC_H" == "yes" -a "$HAVE_GPC_C" == "yes"; then +if test "$HAVE_GPC_H" = "yes" -a "$HAVE_GPC_C" = "yes"; then AC_MSG_RESULT([GPC files found]) else AC_MSG_ERROR([GPC files not found]) @ 1.1 log @Initial revision @ text @d3 2 a4 2 --- configure.in.orig Sat Jan 19 15:29:38 2002 +++ configure.in Sat Jan 19 17:31:49 2002 d43 1 a43 1 @@@@ -740,6 +745,11 @@@@ d48 1 d50 1 a50 1 + if test "$_jdk_middle" = "false" -a "$_jdk_middle3" = "true"; then d56 1 a56 1 @@@@ -982,7 +992,7 @@@@ @ 1.1.1.1 log @OpenOffice.org is an Open Source, community-developed, multi-platform office productivity suite. It includes the key desktop applications, such as a word processor, spreadsheet, presentation manager, and drawing program, with a user interface and feature set similar to other office suites. @ text @@