~ubuntu-branches/ubuntu/precise/gnustep-base/precise

« back to all changes in this revision

Viewing changes to config/procfs.m4

  • Committer: Bazaar Package Importer
  • Author(s): Luca Falavigna
  • Date: 2008-07-05 09:49:51 UTC
  • mfrom: (1.2.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20080705094951-gs19i3erqo2xx6if
Tags: 1.16.1-2ubuntu1
* Merge from Debian unstable, remaining Ubuntu changes:
  + debian/rules:
    - Add lpia to ALL_ARCHS supported architectures.
  + debian/control:
    - Add lpia architecture where needed.
  + debian/control{,.m4}:
    - Update Maintainer field as per spec.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
      cygwin*)     ac_cv_sys_procfs=yes;;
32
32
    esac
33
33
  elif test "$enable_procfs" = cross; then
34
 
    AC_MSG_WARN(Pass --enable-procfs argument to enable use of /proc filesystem.)
 
34
    ac_cv_sys_procfs=no
35
35
  else
36
36
    ac_cv_sys_procfs=no
37
37
  fi])
38
38
 
 
39
  if test "$enable_procfs" = cross; then
 
40
    AC_MSG_WARN(Cross-compiling: Pass --enable-procfs argument to enable use of /proc filesystem.)
 
41
  fi
39
42
  if test $ac_cv_sys_procfs = yes; then
40
43
    AC_DEFINE(HAVE_PROCFS, 1, [Define if system supports the /proc filesystem])
41
44
  fi
56
59
        ac_cv_sys_procfs_psinfo=yes, ac_cv_sys_procfs_psinfo=no, 
57
60
        ac_cv_sys_procfs_psinfo=yes)
58
61
  elif test "$enable_procfs" = cross; then
59
 
    AC_MSG_WARN(Pass --enable-procfs-psinfo argument to enable use of /proc psinfo information.)
 
62
    ac_cv_sys_procfs_psinfo=no
60
63
  else
61
64
    ac_cv_sys_procfs_psinfo=no
62
65
  fi])
63
66
 
 
67
  if test "$enable_procfs" = cross; then
 
68
    AC_MSG_WARN(Cross-compiling: Pass --enable-procfs-psinfo argument to enable use of /proc psinfo information.)
 
69
  fi
64
70
  if test $ac_cv_sys_procfs_psinfo = yes; then
65
71
    AC_DEFINE(HAVE_PROCFS_PSINFO, 1, [Define if system supports reading psinfo from /proc])
66
72
  fi