head 1.4; access; symbols pkgsrc-2015Q1:1.3.0.60 pkgsrc-2015Q1-base:1.3 pkgsrc-2014Q4:1.3.0.58 pkgsrc-2014Q4-base:1.3 pkgsrc-2014Q3:1.3.0.56 pkgsrc-2014Q3-base:1.3 pkgsrc-2014Q2:1.3.0.54 pkgsrc-2014Q2-base:1.3 pkgsrc-2014Q1:1.3.0.52 pkgsrc-2014Q1-base:1.3 pkgsrc-2013Q4:1.3.0.50 pkgsrc-2013Q4-base:1.3 pkgsrc-2013Q3:1.3.0.48 pkgsrc-2013Q3-base:1.3 pkgsrc-2013Q2:1.3.0.46 pkgsrc-2013Q2-base:1.3 pkgsrc-2013Q1:1.3.0.44 pkgsrc-2013Q1-base:1.3 pkgsrc-2012Q4:1.3.0.42 pkgsrc-2012Q4-base:1.3 pkgsrc-2012Q3:1.3.0.40 pkgsrc-2012Q3-base:1.3 pkgsrc-2012Q2:1.3.0.38 pkgsrc-2012Q2-base:1.3 pkgsrc-2012Q1:1.3.0.36 pkgsrc-2012Q1-base:1.3 pkgsrc-2011Q4:1.3.0.34 pkgsrc-2011Q4-base:1.3 pkgsrc-2011Q3:1.3.0.32 pkgsrc-2011Q3-base:1.3 pkgsrc-2011Q2:1.3.0.30 pkgsrc-2011Q2-base:1.3 pkgsrc-2011Q1:1.3.0.28 pkgsrc-2011Q1-base:1.3 pkgsrc-2010Q4:1.3.0.26 pkgsrc-2010Q4-base:1.3 pkgsrc-2010Q3:1.3.0.24 pkgsrc-2010Q3-base:1.3 pkgsrc-2010Q2:1.3.0.22 pkgsrc-2010Q2-base:1.3 pkgsrc-2010Q1:1.3.0.20 pkgsrc-2010Q1-base:1.3 pkgsrc-2009Q4:1.3.0.18 pkgsrc-2009Q4-base:1.3 pkgsrc-2009Q3:1.3.0.16 pkgsrc-2009Q3-base:1.3 pkgsrc-2009Q2:1.3.0.14 pkgsrc-2009Q2-base:1.3 pkgsrc-2009Q1:1.3.0.12 pkgsrc-2009Q1-base:1.3 pkgsrc-2008Q4:1.3.0.10 pkgsrc-2008Q4-base:1.3 pkgsrc-2008Q3:1.3.0.8 pkgsrc-2008Q3-base:1.3 cube-native-xorg:1.3.0.6 cube-native-xorg-base:1.3 pkgsrc-2008Q2:1.3.0.4 pkgsrc-2008Q2-base:1.3 cwrapper:1.3.0.2 pkgsrc-2008Q1:1.2.0.2 pkgsrc-2008Q1-base:1.2; locks; strict; comment @# @; 1.4 date 2015.04.19.00.05.44; author tnn; state dead; branches; next 1.3; commitid jOJhCNLXWzCaf8iy; 1.3 date 2008.05.21.12.54.32; author tnn; state Exp; branches; next 1.2; 1.2 date 2008.03.08.00.08.42; author tnn; state dead; branches; next 1.1; 1.1 date 2008.02.22.22.13.33; author tnn; state Exp; branches; next ; desc @@ 1.4 log @- Remove compat files. Upstream ships them now in lib. - Fix build of compat library. Needs to use libtool objects (.lo) since linking is done with libtool. @ text @$NetBSD: patch-ac,v 1.3 2008/05/21 12:54:32 tnn Exp $ --- /dev/null 2008-04-01 06:44:07.000000000 +0200 +++ malloc.c @@@@ -0,0 +1,26 @@@@ +/* rpl_malloc.c -- a replacement for malloc that don't accept 0 size + Copyright (C) 2001 Free Software Foundation, Inc. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3, or (at your option) + any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software Foundation, + Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */ + +#include + +void * +rpl_malloc(size_t size) +{ + if (!size) + size++; + return malloc(size); +} @ 1.3 log @Also add malloc.c as required by configure. Reported in SF.net bug # 1899047 @ text @d1 1 a1 1 $NetBSD$ @ 1.2 log @version 2.5.35 released 2008-02-26 * fixed bug that prevented flex from accepting certain comments in the scanner file (resolves bugs #1849809 and #1849805) * fix bug that prevented headers for all functions from being generated (resolves bug #1628314) * change yy_size_t to be size_t (resolves bug #1849812) * new de, nl, pl, pt_br, vi translations from the translation project @ text @d1 1 a1 1 $NetBSD: patch-ac,v 1.1 2008/02/22 22:13:33 tnn Exp $ d3 29 a31 13 --- parse.y.orig 2007-09-10 08:16:34.000000000 +0200 +++ parse.y @@@@ -856,8 +856,8 @@@@ ccl : ccl CHAR '-' CHAR /* Do it again for upper/lowercase */ if (sf_case_ins() && has_case($2)){ - $1 = reverse_case ($2); - ccladd ($1, reverse_case ($2)); + $2 = reverse_case ($2); + ccladd ($1, $2); cclsorted = cclsorted && ($2 > lastchar); lastchar = $2; @ 1.1 log @- add a patch from debian that fixes a parser bug - do a "two stage" bootstrap: build flex, then regenerate the scanner and rebuild flex. - This should fix PR pkg/38084 - bump PKGREVISION. @ text @d1 1 a1 1 $NetBSD$ @