summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoland McGrath <roland@redhat.com>1996-07-20 11:13:04 +0000
committerRoland McGrath <roland@redhat.com>1996-07-20 11:13:04 +0000
commit37ce7efdca1dc9b3f7c2f7b5fbb77398855ad27f (patch)
treea524489ddb3ed389c72a0c534ce2c6369995ab3e
parent4b92c539d49a54db33b7ab1da40c11b12e94e752 (diff)
downloadgunmake-37ce7efdca1dc9b3f7c2f7b5fbb77398855ad27f.tar.gz
Sat Jul 20 12:32:10 1996 Klaus Kämpf (kkaempf@progis.de)
* remake.c (f_mtime) [VMS]: Add missing `if' conditional for future modtime check. * config.h-vms, makefile.vms, readme.vms, vmsify.c: Update address.
-rw-r--r--config.h-vms.template2
-rw-r--r--makefile.vms2
-rw-r--r--readme.vms5
-rw-r--r--remake.c1
-rw-r--r--vmsify.c3
5 files changed, 8 insertions, 5 deletions
diff --git a/config.h-vms.template b/config.h-vms.template
index 7211919..a1a4659 100644
--- a/config.h-vms.template
+++ b/config.h-vms.template
@@ -1,4 +1,4 @@
-/* config.h-vms. Generated by hand by Klaus Kämpf <kkaempf@didymus.rmi.de> */
+/* config.h-vms. Generated by hand by Klaus Kämpf <kkaempf@progis.de> */
/* config.h. Generated automatically by configure. */
/* config.h.in. Generated automatically from configure.in by autoheader. */
diff --git a/makefile.vms b/makefile.vms
index a6f2d1c..9c84a33 100644
--- a/makefile.vms
+++ b/makefile.vms
@@ -2,7 +2,7 @@
# This file is part of GNU Make.
#
# VMS extensions from GNU Make 3.60 imported by
-# Klaus Kämpf (kkaempf@didymus.rmi.de)
+# Klaus Kämpf (kkaempf@progis.de) of proGIS Software, Aachen, Germany
#
# GNU Make is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/readme.vms b/readme.vms
index f54be73..b402cb4 100644
--- a/readme.vms
+++ b/readme.vms
@@ -1,8 +1,9 @@
-This is the VMS port of GNU Make version 3.74.
+This is the VMS port of GNU Make version 3.75.
It is based on the VMS port of GNU Make 3.60 by Mike Moretti.
-This port was done by Klaus Kämpf (kkaempf@didymus.rmi.de)
+This port was done by Klaus Kämpf (kkaempf@progis.de) of
+proGIS Software, Aachen, Germany
To build Make, simply type @makefile. This should compile all the
necessary files and link Make.
diff --git a/remake.c b/remake.c
index 7dc957d..3ff3639 100644
--- a/remake.c
+++ b/remake.c
@@ -1039,6 +1039,7 @@ f_mtime (file, search)
static unsigned long vms_now[2]; /* assumes 32 bit long ! */
sys$gettim (vms_now);
now = ((vms_now[0]>>24) & 0xff) + ((vms_now[1]<<8) & 0xffffff00);
+ if (mtime > now)
#else
extern time_t time ();
if (mtime > time (&now))
diff --git a/vmsify.c b/vmsify.c
index 7d1fa6f..d457e65 100644
--- a/vmsify.c
+++ b/vmsify.c
@@ -3,7 +3,8 @@
Module for vms <-> unix file name conversion
- Written by Klaus Kämpf (kkaempf@didymus.rmi.de)
+ Written by Klaus Kämpf (kkaempf@progis.de)
+ of proGIS Software, Aachen, Germany
*/