merge from gcc
authorDJ Delorie <dj@redhat.com>
Mon, 24 Feb 2003 20:26:14 +0000 (20:26 +0000)
committerDJ Delorie <dj@redhat.com>
Mon, 24 Feb 2003 20:26:14 +0000 (20:26 +0000)
libiberty/ChangeLog
libiberty/physmem.c

index d15e15a7d7c21a91bf2fa62e9f3b0d3c50012beb..552355c40aade479f430665bce857bc924a24836 100644 (file)
@@ -1,3 +1,9 @@
+2003-02-24  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
+
+       * physmem.c (physmem_total) [HAVE_GETSYSINFO]: Test for
+       GSI_PHYSMEM.
+       (physmem_available) [HAVE_TABLE]: Test for TBL_VMSTATS.
+
 2003-02-22  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
 
        * configure.in: Check for sys/systemcfg.h and
index 80fdd7975e929acc27e446b8cffabb7ae0209875..621e281f78ad697e2483f630123884cacbeaf66d 100644 (file)
@@ -97,7 +97,7 @@ physmem_total ()
   }
 #endif
 
-#if HAVE_GETSYSINFO
+#if HAVE_GETSYSINFO && defined GSI_PHYSMEM
   { /* This works on Tru64 UNIX V4/5.  */
     int physmem;
 
@@ -174,7 +174,7 @@ physmem_available ()
   }
 #endif
 
-#if HAVE_TABLE && HAVE_SYS_TABLE_H
+#if HAVE_TABLE && defined TBL_VMSTATS
   { /* This works on Tru64 UNIX V4/5.  */
     struct tbl_vmstats vmstats;
 
This page took 0.030267 seconds and 4 git commands to generate.