~ubuntu-branches/ubuntu/karmic/gnustep-base/karmic

« back to all changes in this revision

Viewing changes to config/procfs-exe-link.m4

  • Committer: Bazaar Package Importer
  • Author(s): Eric Heintzmann
  • Date: 2005-04-17 00:14:38 UTC
  • mfrom: (1.2.1 upstream) (2.1.2 hoary)
  • Revision ID: james.westby@ubuntu.com-20050417001438-enf0y07c9tku85z1
Tags: 1.10.3-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
      # Linux 2.2.x and up
11
11
      if test -L /proc/self/exe; then
12
12
        ac_cv_sys_procfs_exe_link=/proc/self/exe
13
 
      # FreeBSD 2.2.1 and up
 
13
      # FreeBSD 4.x and up
14
14
      elif test -L /proc/curproc/file; then
15
15
        ac_cv_sys_procfs_exe_link=/proc/curproc/file
16
 
      # Solaris 2.6 and up
17
 
      elif test -L /proc/self/object/a.out; then
18
 
        ac_cv_sys_procfs_exe_link=/proc/self/object/a.out
19
16
      else
20
17
        ac_cv_sys_procfs_exe_link=no
21
18
      fi
 
19
    else
 
20
      ac_cv_sys_procfs_exe_link=no
22
21
    fi])
23
22
 
24
23
  if test "$ac_cv_sys_procfs_exe_link" != no; then