diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-02-20 23:24:04 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-02-20 23:24:04 +0000 |
commit | b40b9677b62f52a61c162f6cfa13fd83826a70f7 (patch) | |
tree | eab68da306f096663045c30d563f85c80c1640f2 | |
parent | c80ad865db4552ba25b1b185edeb0cc6478385ec (diff) |
VMS adjustments
-rw-r--r-- | src/Makefile.am | 1 | ||||
-rw-r--r-- | src/config-vms.h | 21 | ||||
-rw-r--r-- | src/setup.h | 2 |
3 files changed, 23 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 99851dd5d..4975c36ad 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -13,6 +13,7 @@ bin_PROGRAMS = curl #memtest noinst_HEADERS = setup.h \ config-win32.h \ config-mac.h \ + config-vms.h \ urlglob.h \ version.h \ writeout.h diff --git a/src/config-vms.h b/src/config-vms.h new file mode 100644 index 000000000..f8189d74b --- /dev/null +++ b/src/config-vms.h @@ -0,0 +1,21 @@ +/* src/config.h. Generated automatically by configure. */
+/* Define cpu-machine-OS */
+#define OS "ALPHA-COMPAQ-VMS"
+
+/* Define if you have the <unistd.h> header file. */
+#define HAVE_UNISTD_H 1
+
+/* Define if you have the <io.h> header file. */
+#undef HAVE_IO_H
+
+/* Define if you have strdup() */
+#define HAVE_STRDUP 1
+
+/* Define if you have utime() */
+#undef HAVE_UTIME
+
+/* Define if you have the <utime.h> header file */
+#undef HAVE_UTIME_H
+
+/* Define if you have thhe <sys/utime.h> header file */
+#undef HAVE_SYS_UTIME_H
diff --git a/src/setup.h b/src/setup.h index a6c45bf17..087c9cede 100644 --- a/src/setup.h +++ b/src/setup.h @@ -33,7 +33,7 @@ #ifdef HAVE_CONFIG_H #ifdef VMS -#include "../config-vms.h" +#include "config-vms.h" #else #include "config.h" /* the configure script results */ #endif |