head 1.2; access; symbols OPENPKG_E1_MP_HEAD:1.2 OPENPKG_E1_MP:1.2 OPENPKG_E1_MP_2_STABLE:1.2 OPENPKG_E1_FP:1.2 OPENPKG_2_STABLE_MP:1.2 OPENPKG_2_STABLE_20061018:1.2 OPENPKG_2_STABLE_20060622:1.2 OPENPKG_2_STABLE:1.2.0.2 OPENPKG_2_STABLE_BP:1.2 OPENPKG_2_5_RELEASE:1.1 OPENPKG_2_5_SOLID:1.1.0.18 OPENPKG_2_5_SOLID_BP:1.1 OPENPKG_2_4_RELEASE:1.1 OPENPKG_2_4_SOLID:1.1.0.16 OPENPKG_2_4_SOLID_BP:1.1 OPENPKG_CW_FP:1.1 OPENPKG_2_3_RELEASE:1.1 OPENPKG_2_3_SOLID:1.1.0.14 OPENPKG_2_3_SOLID_BP:1.1 OPENPKG_2_2_RELEASE:1.1 OPENPKG_2_2_SOLID:1.1.0.12 OPENPKG_2_2_SOLID_BP:1.1 OPENPKG_2_1_RELEASE:1.1 OPENPKG_2_1_SOLID:1.1.0.10 OPENPKG_2_1_SOLID_BP:1.1 OPENPKG_2_0_RELEASE:1.1 OPENPKG_2_0_SOLID:1.1.0.8 OPENPKG_2_0_SOLID_BP:1.1 OPENPKG_1_3_RELEASE:1.1 OPENPKG_1_3_SOLID:1.1.0.6 OPENPKG_1_3_SOLID_BP:1.1 OPENPKG_1_STABLE_MP:1.1 OPENPKG_1_2_RELEASE:1.1 OPENPKG_1_2_SOLID:1.1.0.4 OPENPKG_1_2_SOLID_BP:1.1 OPENPKG_1_STABLE:1.1.0.2 OPENPKG_1_STABLE_BP:1.1; locks; strict; comment @# @; 1.2 date 2006.04.01.18.25.46; author rse; state Exp; branches; next 1.1; commitid pd0wYFXgqB6lzurr; 1.1 date 2003.01.09.14.02.57; author rse; state Exp; branches; next ; desc @@ 1.2 log @upgrading package: make 3.80 -> 3.81 @ text @Index: glob/glob.c --- glob/glob.c.orig 2006-03-10 03:20:45 +0100 +++ glob/glob.c 2006-04-01 19:09:18 +0200 @@@@ -216,13 +216,13 @@@@ # ifdef HAVE_ALLOCA_H # include # else /* Not HAVE_ALLOCA_H. */ -# ifndef _AIX +# if !defined (_AIX) && !defined (__FreeBSD__) # ifdef WINDOWS32 # include # else extern char *alloca (); # endif /* WINDOWS32 */ -# endif /* Not _AIX. */ +# endif /* Not _AIX && not __FreeBSD__. */ # endif /* sparc or HAVE_ALLOCA_H. */ # endif /* GCC. */ Index: make.h --- make.h.orig 2006-02-16 00:54:43 +0100 +++ make.h 2006-04-01 19:09:18 +0200 @@@@ -31,7 +31,7 @@@@ # ifdef _AIX #pragma alloca # else -# ifndef alloca /* predefined by HP cc +Olibcalls */ +# if !defined (alloca) && !defined (__FreeBSD__) /* predefined by HP cc +Olibcalls, part of stdlib.h on FreeBSD */ char *alloca (); # endif # endif @ 1.1 log @port to FreeBSD 5.0 @ text @d1 4 a4 3 --- glob/glob.c.orig Wed Sep 25 03:11:43 2002 +++ glob/glob.c Wed Sep 25 03:15:32 2002 @@@@ -215,13 +215,13 @@@@ d20 4 a23 24 --- glob/glob.h.orig Sat Jan 22 00:43:03 2000 +++ glob/glob.h Fri Aug 23 02:37:03 2002 @@@@ -47,6 +47,9 @@@@ /* We need `size_t' for the following definitions. */ #ifndef __size_t +#if defined __FreeBSD__ +#define __size_t size_t +#else # if defined __GNUC__ && __GNUC__ >= 2 typedef __SIZE_TYPE__ __size_t; # else @@@@ -59,6 +62,7 @@@@ */ #if !(defined __DECC && defined __SIZE_T) typedef unsigned long int __size_t; +#endif #endif # endif #else --- make.h.orig Wed Sep 11 18:55:44 2002 +++ make.h Mon Oct 21 22:05:11 2002 @@@@ -33,7 +33,7 @@@@ a31 1 @