summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLarry Wall <lwall@jpl-devvax.jpl.nasa.gov>1988-01-23 15:23:55 +0000
committerLarry Wall <lwall@jpl-devvax.jpl.nasa.gov>1988-01-23 15:23:55 +0000
commitc51b80d12add5c11444f7eebea3d6e95eea37237 (patch)
tree2d6946acfa310914bcf2989cfc13df3f23c28f9a
parent135863df38bea8d721a115b5d13e08b816104784 (diff)
downloadperl-c51b80d12add5c11444f7eebea3d6e95eea37237.tar.gz
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.
-rw-r--r--config.h.SH20
-rw-r--r--patchlevel.h2
2 files changed, 21 insertions, 1 deletions
diff --git a/config.h.SH b/config.h.SH
index d8d975c838..cb0eea5a9a 100644
--- a/config.h.SH
+++ b/config.h.SH
@@ -51,6 +51,12 @@ cat <<!GROK!THIS! >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 <<!GROK!THIS! >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 <<!GROK!THIS! >config.h
*/
#$d_strctcpy STRUCTCOPY /**/
+/* TMINSYS:
+ * This symbol is defined if this system declares "struct tm" in
+ * in <sys/time.h> rather than <time.h>. 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 e3d7670bc6..558d48cd9b 100644
--- a/patchlevel.h
+++ b/patchlevel.h
@@ -1 +1 @@
-#define PATCHLEVEL 2
+#define PATCHLEVEL 3