summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Baulig <martin@home-of-linux.org>1998-07-22 17:19:01 +0000
committerMartin Baulig <martin@src.gnome.org>1998-07-22 17:19:01 +0000
commit312df084b5b04667120a7b07da65ad9984130cc8 (patch)
tree25e2cb9af3f606bb80489de0eeca0d17909fdd6f
parentfd6a74ed91d432c6a74a9fc169129f5056651890 (diff)
downloadgnome-common-312df084b5b04667120a7b07da65ad9984130cc8.tar.gz
Added some reasonable defaults to allow cross compiling; removed
1998-07-22 Martin Baulig <martin@home-of-linux.org> * gnome-fileutils.m4: Added some reasonable defaults to allow cross compiling; removed `mountlist.o' and `fsusage.o' from LIBOBJS. svn path=/trunk/; revision=285
-rw-r--r--macros/ChangeLog6
-rw-r--r--macros/gnome-fileutils.m424
-rw-r--r--macros/gnome-libgtop-sysdeps.m46
3 files changed, 30 insertions, 6 deletions
diff --git a/macros/ChangeLog b/macros/ChangeLog
index d07d16c..beb92ea 100644
--- a/macros/ChangeLog
+++ b/macros/ChangeLog
@@ -1,3 +1,9 @@
+1998-07-22 Martin Baulig <martin@home-of-linux.org>
+
+ * gnome-fileutils.m4: Added some reasonable defaults to allow
+ cross compiling; removed `mountlist.o' and `fsusage.o' from
+ LIBOBJS.
+
Tue Jul 21 23:44:53 1998 Tom Tromey <tromey@cygnus.com>
* gnome-guile-checks.m4: If no build-guile, link against readline
diff --git a/macros/gnome-fileutils.m4 b/macros/gnome-fileutils.m4
index 249f8df..ad1c714 100644
--- a/macros/gnome-fileutils.m4
+++ b/macros/gnome-fileutils.m4
@@ -15,6 +15,26 @@ AC_CHECK_FUNCS(bcopy endgrent endpwent fchdir ftime ftruncate \
getcwd getmntinfo gettimeofday isascii lchown \
listmntent memcpy mkfifo strchr strerror strrchr vprintf)
+dnl Set some defaults when cross-compiling
+
+if test x$cross_compiling = xyes ; then
+ case "$host_os" in
+ linux*)
+ fu_cv_sys_mounted_getmntent1=yes
+ fu_cv_sys_stat_statfs2_bsize=yes
+ ;;
+ sunos*)
+ fu_cv_sys_stat_statfs4=yes
+ ;;
+ freebsd*)
+ fu_cv_sys_stat_statfs2_bsize=yes
+ ;;
+ osf*)
+ fu_cv_sys_stat_statfs3_osf1=yes
+ ;;
+ esac
+fi
+
# Determine how to get the list of mounted filesystems.
list_mounted_fs=
@@ -366,8 +386,8 @@ fi
if test -n "$list_mounted_fs" && test $space != no; then
DF_PROG="df"
-LIBOBJS="$LIBOBJS fsusage.o"
-LIBOBJS="$LIBOBJS mountlist.o"
+# LIBOBJS="$LIBOBJS fsusage.o"
+# LIBOBJS="$LIBOBJS mountlist.o"
fi
# Check for SunOS statfs brokenness wrt partitions 2GB and larger.
diff --git a/macros/gnome-libgtop-sysdeps.m4 b/macros/gnome-libgtop-sysdeps.m4
index 2aa1688..cec72f8 100644
--- a/macros/gnome-libgtop-sysdeps.m4
+++ b/macros/gnome-libgtop-sysdeps.m4
@@ -21,11 +21,10 @@ AC_DEFUN([GNOME_LIBGTOP_SYSDEPS],[
[ --with-linux-table Use the table () function from Martin Baulig],[
linux_table="$withval"],[linux_table=auto])
- AC_MSG_CHECKING(for table function in Linux Kernel)
-
if test $linux_table = yes ; then
AC_CHECK_HEADER(linux/table.h, linux_table=yes, linux_table=no)
elif test $linux_table = auto ; then
+ AC_MSG_CHECKING(for table function in Linux Kernel)
AC_TRY_RUN([
#include <stdio.h>
#include <stdlib.h>
@@ -52,10 +51,9 @@ main (void)
exit (ret < 1 ? ret : 0);
}
], linux_table=yes, linux_table=no, linux_table=no)
+ AC_MSG_RESULT($linux_table)
fi
- AC_MSG_RESULT($linux_table)
-
if test $linux_table = yes ; then
AC_DEFINE(HAVE_LINUX_TABLE)
fi