summaryrefslogtreecommitdiff
path: root/ACE/configure.ac
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2008-08-06 07:14:20 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2008-08-06 07:14:20 +0000
commite28fa61461da11c051ff184c9beb4cfa0a9181bf (patch)
tree2421f5de0659abd070d1cde33bbc0c246b7e96f3 /ACE/configure.ac
parent5e0ec25979a760e97167979087c35febb50dbef8 (diff)
downloadATCD-e28fa61461da11c051ff184c9beb4cfa0a9181bf.tar.gz
Wed Aug 6 08:12:11 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ACE/configure.ac')
-rw-r--r--ACE/configure.ac8
1 files changed, 4 insertions, 4 deletions
diff --git a/ACE/configure.ac b/ACE/configure.ac
index e57049799e4..80084cf6926 100644
--- a/ACE/configure.ac
+++ b/ACE/configure.ac
@@ -566,7 +566,7 @@ AC_CHECK_HEADER([sys/procfs.h],
dnl Some (early?) versions of glibc2.1 define the same variables
dnl in <sys/procfs.h> and <ucontext.h>.
ACE_CACHE_CHECK([if sys/procfs.h conflicts with ucontext.h],
- [ace_has_procfs_conflict],
+ [ace_cv_has_procfs_conflict],
[
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
#ifndef ACE_LACKS_UCONTEXT_H
@@ -577,15 +577,15 @@ AC_CHECK_HEADER([sys/procfs.h],
]],[[
int a = 0;
]])],[
- ace_has_procfs_conflict=no
+ ace_cv_has_procfs_conflict=no
],[
- ace_has_procfs_conflict=yes
+ ace_cv_has_procfs_conflict=yes
])
],
[
],
[
- dnl If ace_has_procfs_conflict = no then define ACE_HAS_PROC_FS.
+ dnl If ace_cv_has_procfs_conflict = no then define ACE_HAS_PROC_FS.
AC_DEFINE([ACE_HAS_PROC_FS])
])
],)