Sat Jul 20 12:32:10 1996 Klaus Kämpf (kkaempf@progis.de)
authorRoland McGrath <roland@redhat.com>
Sat, 20 Jul 1996 11:13:04 +0000 (11:13 +0000)
committerRoland McGrath <roland@redhat.com>
Sat, 20 Jul 1996 11:13:04 +0000 (11:13 +0000)
* remake.c (f_mtime) [VMS]: Add missing `if' conditional for future
modtime check.
* config.h-vms, makefile.vms, readme.vms, vmsify.c: Update address.

config.h-vms.template
makefile.vms
readme.vms
remake.c
vmsify.c

index 72119199bd955d6239e9b085abc81df0f06401d3..a1a46590845b6483e3a767b190c977cecb988c10 100644 (file)
@@ -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.  */
 
index a6f2d1c9fecc7e2a92bb04c6c1ec3b72f726bef0..9c84a337835c90c3eb435d531f91da169e35fb56 100644 (file)
@@ -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
index f54be738d8bb97bf0c3883506ef37f8b59a5dbe0..b402cb45d0b905e7b08929b26a36788636327435 100644 (file)
@@ -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.
index 7dc957d2ef7209953383d656a30ec8089df0bf04..3ff3639989b82c9304843a6b627ff18395089c45 100644 (file)
--- 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))
index 7d1fa6f185eee9f8d2b4f049ad2be5712abb17fd..d457e65d4b4d06bb5e805499d72ffc41ea6068be 100644 (file)
--- 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
 
 */