mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +00:00
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:
parent
c7551b0431
commit
557a4409b0
3 changed files with 11 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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
3
configure
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue