From: Larry Wall Date: Sat, 23 Jan 1988 15:23:55 +0000 (+0000) Subject: perl 1.0 patch 3: Patch 2 was incomplete X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=c51b80d12add5c11444f7eebea3d6e95eea37237;p=p5sagit%2Fp5-mst-13.2.git perl 1.0 patch 3: Patch 2 was incomplete I left one file out of patch 2. This is perhaps forgivable since it is a file that is produced automatically by metaconfig along with Configure. --- diff --git a/config.h.SH b/config.h.SH index d8d975c..cb0eea5 100644 --- a/config.h.SH +++ b/config.h.SH @@ -51,6 +51,12 @@ cat <config.h #define CPP "$cpp" #define CPPMINUS "$cppminus" +/* BCOPY: + * This symbol, if defined, indicates that the bcopy routine is available + * to copy blocks of memory. Otherwise you should probably use memcpy(). + */ +#$d_bcopy BCOPY /**/ + /* CHARSPRINTF: * This symbol is defined if this system declares "char *sprintf()" in * stdio.h. The trend seems to be to declare it as "int sprintf()". It @@ -70,6 +76,12 @@ cat <config.h #$d_index index strchr /* cultural */ #$d_index rindex strrchr /* differences? */ +/* STATBLOCKS: + * This symbol is defined if this system has a stat structure declaring + * st_blksize and st_blocks. + */ +#$d_statblks STATBLOCKS /**/ + /* STDSTDIO: * This symbol is defined if this system has a FILE structure declaring * _ptr and _cnt in stdio.h. @@ -83,6 +95,14 @@ cat <config.h */ #$d_strctcpy STRUCTCOPY /**/ +/* TMINSYS: + * This symbol is defined if this system declares "struct tm" in + * in rather than . We can't just say + * -I/usr/include/sys because some systems have both time files, and + * the -I trick gets the wrong one. + */ +#$d_tminsys TMINSYS /**/ + /* vfork: * This symbol, if defined, remaps the vfork routine to fork if the * vfork() routine isn't supported here. diff --git a/patchlevel.h b/patchlevel.h index e3d7670..558d48c 100644 --- a/patchlevel.h +++ b/patchlevel.h @@ -1 +1 @@ -#define PATCHLEVEL 2 +#define PATCHLEVEL 3