head 1.4; access; symbols pkgsrc-2013Q2:1.4.0.32 pkgsrc-2013Q2-base:1.4 pkgsrc-2012Q4:1.4.0.30 pkgsrc-2012Q4-base:1.4 pkgsrc-2011Q4:1.4.0.28 pkgsrc-2011Q4-base:1.4 pkgsrc-2011Q2:1.4.0.26 pkgsrc-2011Q2-base:1.4 pkgsrc-2009Q4:1.4.0.24 pkgsrc-2009Q4-base:1.4 pkgsrc-2008Q4:1.4.0.22 pkgsrc-2008Q4-base:1.4 pkgsrc-2008Q3:1.4.0.20 pkgsrc-2008Q3-base:1.4 cube-native-xorg:1.4.0.18 cube-native-xorg-base:1.4 pkgsrc-2008Q2:1.4.0.16 pkgsrc-2008Q2-base:1.4 pkgsrc-2008Q1:1.4.0.14 pkgsrc-2008Q1-base:1.4 pkgsrc-2007Q4:1.4.0.12 pkgsrc-2007Q4-base:1.4 pkgsrc-2007Q3:1.4.0.10 pkgsrc-2007Q3-base:1.4 pkgsrc-2007Q2:1.4.0.8 pkgsrc-2007Q2-base:1.4 pkgsrc-2007Q1:1.4.0.6 pkgsrc-2007Q1-base:1.4 pkgsrc-2006Q4:1.4.0.4 pkgsrc-2006Q4-base:1.4 pkgsrc-2006Q3:1.4.0.2 pkgsrc-2006Q3-base:1.4 pkgsrc-2006Q2:1.3.0.14 pkgsrc-2006Q2-base:1.3 pkgsrc-2006Q1:1.3.0.12 pkgsrc-2006Q1-base:1.3 pkgsrc-2005Q4:1.3.0.10 pkgsrc-2005Q4-base:1.3 pkgsrc-2005Q3:1.3.0.8 pkgsrc-2005Q3-base:1.3 pkgsrc-2005Q2:1.3.0.6 pkgsrc-2005Q2-base:1.3 pkgsrc-2005Q1:1.3.0.4 pkgsrc-2005Q1-base:1.3 pkgsrc-2004Q4:1.3.0.2 pkgsrc-2004Q4-base:1.3 pkgsrc-2004Q3:1.2.0.6 pkgsrc-2004Q3-base:1.2 pkgsrc-2004Q2:1.2.0.4 pkgsrc-2004Q2-base:1.2 pkgsrc-2004Q1:1.2.0.2 pkgsrc-2004Q1-base:1.2 pkgsrc-2003Q4:1.1.0.10 pkgsrc-2003Q4-base:1.1 netbsd-1-6-1:1.1.0.6 netbsd-1-6-1-base:1.1 netbsd-1-6:1.1.0.8 netbsd-1-6-RELEASE-base:1.1 pkgviews:1.1.0.4 pkgviews-base:1.1 buildlink2:1.1.0.2 buildlink2-base:1.1 netbsd-1-5-PATCH003:1.1 netbsd-1-5-PATCH001:1.1 netbsd-1-5-RELEASE:1.1 netbsd-1-4-PATCH003:1.1 netbsd-1-4-PATCH002:1.1 comdex-fall-1999:1.1; locks; strict; comment @# @; 1.4 date 2006.08.10.03.45.32; author minskim; state dead; branches; next 1.3; 1.3 date 2004.10.11.04.54.05; author minskim; state Exp; branches; next 1.2; 1.2 date 2003.12.24.12.51.31; author jmmv; state dead; branches; next 1.1; 1.1 date 99.10.04.23.21.44; author simonb; state Exp; branches; next ; desc @@ 1.4 log @Remove teTeX2. @ text @$NetBSD: patch-af,v 1.3 2004/10/11 04:54:05 minskim Exp $ --- texk/web2c/lib/coredump.c.orig Thu Jan 16 13:51:12 1997 +++ texk/web2c/lib/coredump.c @@@@ -9,6 +9,7 @@@@ you. Perl has some things to say about these days. */ #include "config.h" +#include "ac_config.h" /* Do not try to compile this Unix-y unportable stuff unless it's needed. */ @@@@ -29,7 +30,11 @@@@ funny_core_dump P1H(void) } #else /* !__EMX__ */ int pid, w; +#ifdef HAVE_SYS_WAIT_H + int status; +#else union wait status; +#endif switch (pid = fork ()) { @@@@ -48,7 +53,11 @@@@ funny_core_dump P1H(void) default: /* parent */ while ((w = wait (&status)) != pid && w != -1) ; +#ifdef HAVE_SYS_WAIT_H + if (WCOREDUMP(status)) +#else if (status.w_coredump) +#endif exit (0); (void) write (2, "attempt to dump core failed\n", 28); exit (1); @ 1.3 log @Avoid using "union wait" in calling wait(2) if possible. Fall back to "union wait" only when sys/wait.h is not POSIX-compliant. @ text @d1 1 a1 1 $NetBSD$ @ 1.2 log @Update teTeX packages to 2.0.2 (really merge teTeX2 into teTeX). The 2.x branch becomes the default teTeX package. @ text @d1 1 a1 1 $NetBSD: patch-af,v 1.1 1999/10/04 23:21:44 simonb Exp $ d3 34 a36 20 --- texk/ps2pkm/arith.c.orig Sat Jan 24 23:11:27 1998 +++ texk/ps2pkm/arith.c Thu Sep 30 13:33:46 1999 @@@@ -203,7 +203,7 @@@@ divisor >>= 1; if ((u1u2 >> (LONGSIZE - shift)) != 0 && shift != 0) - abort("DLdiv: dividend too large"); + t1_abort("DLdiv: dividend too large"); u1u2 = (u1u2 << shift) + ((shift == 0) ? 0 : u3u4 >> (LONGSIZE - shift)); u3u4 <<= shift; @@@@ -266,7 +266,7 @@@@ */ u1u2 = t; if (HIGHDIGIT(u1u2) != 0) - abort("divide algorithm error"); + t1_abort("divide algorithm error"); u1u2 = ASSEMBLE(u1u2, LOWDIGIT(u3)); u3 = LOWDIGIT(u3u4); q3q4 = ASSEMBLE(q3q4, qhat); @ 1.1 log @Don't use a function called "abort" that takes one char * as a parameter. Fixes compile problems on at least pmax, arm32. @ text @d1 1 a1 1 $NetBSD$ @