Change /proc support on Irix, Cygwin

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@17760 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
fedor 2003-10-01 03:55:35 +00:00
parent c7551b0431
commit 557a4409b0
3 changed files with 11 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2003-09-30 Adam Fedor <fedor@gnu.org>
* config/procfs.m4: Force disable /proc on Irix. Force enable
on cygwin.
2003-09-30 Richard Frith-Macdonald <rfm@gnu.org>
* Source/NSThread.m: Protect the function handling notification

View file

@ -20,6 +20,9 @@ AC_DEFUN(AC_SYS_PROCFS,
case "$target_os" in
# Solaris has proc, but it is not readable
solaris*) ac_cv_sys_procfs=no;;
irix*) ac_cv_sys_procfs=no;;
# Cygwin does have proc, but it does not show with mount
cygwin*) ac_cv_sys_procfs=yes;;
esac
elif test "$enable_procfs" = cross; then
AC_MSG_WARN(Pass --enable-procfs argument to enable use of /proc filesystem.)

3
configure vendored
View file

@ -11772,6 +11772,9 @@ else
case "$target_os" in
# Solaris has proc, but it is not readable
solaris*) ac_cv_sys_procfs=no;;
irix*) ac_cv_sys_procfs=no;;
# Cygwin does have proc, but it does not show with mount
cygwin*) ac_cv_sys_procfs=yes;;
esac
elif test "$enable_procfs" = cross; then
{ echo "$as_me:$LINENO: WARNING: Pass --enable-procfs argument to enable use of /proc filesystem." >&5