2003-08-29 Adam Fedor * config/procfs.m4: Disalbe procfs for solaris Index: config/procfs.m4 =================================================================== RCS file: /cvsroot/gnustep/gnustep/core/base/config/procfs.m4,v retrieving revision 1.3 diff -u -p -r1.3 procfs.m4 --- config/procfs.m4 26 Jul 2003 06:48:44 -0000 1.3 +++ config/procfs.m4 29 Aug 2003 15:10:49 -0000 @@ -14,12 +14,13 @@ AC_DEFUN(AC_SYS_PROCFS, # works fine if (mount | grep 'proc' >/dev/null 2>/dev/null); then ac_cv_sys_procfs=yes - # Solaris has proc, but for some reason the dir is not readable - # elif (grep proc /etc/vfstab >/dev/null 2>/dev/null); then - # ac_cv_sys_procfs=yes else ac_cv_sys_procfs=no fi + case "$target_os" in + # Solaris has proc, but it is not readable + solaris*) ac_cv_sys_procfs=no;; + esac elif test "$enable_procfs" = cross; then AC_MSG_WARN(Pass --enable-procfs argument to enable use of /proc filesystem.) else