aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Karl DeBisschop <kdebisschop@users.sourceforge.net> 2003-03-18 08:50:27 +0000
committerGravatar Karl DeBisschop <kdebisschop@users.sourceforge.net> 2003-03-18 08:50:27 +0000
commitc67bd09ce332477f1c00496e02a3c775d530844a (patch)
tree757f7ea9b23a6bc63161abe7870df8a7e12413ea
parent68050d0b0481035ad8aacc7711a0abc5f2ba9d29 (diff)
downloadmonitoring-plugins-c67bd09ce332477f1c00496e02a3c775d530844a.tar.gz
use AC_DEFINE_UNQOUTED
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@434 f882894a-f735-0410-b71e-b25c423dba1c
-rw-r--r--lib/afs.m42
-rw-r--r--lib/ls-mntd-fs.m420
2 files changed, 11 insertions, 11 deletions
diff --git a/lib/afs.m4 b/lib/afs.m4
index 13f3bc96..905ef42a 100644
--- a/lib/afs.m4
+++ b/lib/afs.m4
@@ -3,7 +3,7 @@
AC_DEFUN(jm_AFS,
AC_MSG_CHECKING(for AFS)
if test -d /afs; then
- AC_DEFINE(AFS, 1, [Define if you have the Andrew File System.])
+ AC_DEFINE_UNQUOTED(AFS, 1, [Define if you have the Andrew File System.])
ac_result=yes
else
ac_result=no
diff --git a/lib/ls-mntd-fs.m4 b/lib/ls-mntd-fs.m4
index b13198cd..ec13e965 100644
--- a/lib/ls-mntd-fs.m4
+++ b/lib/ls-mntd-fs.m4
@@ -45,7 +45,7 @@ yes
AC_MSG_RESULT($fu_cv_sys_mounted_cray_listmntent)
if test $fu_cv_sys_mounted_cray_listmntent = yes; then
ac_list_mounted_fs=found
- AC_DEFINE(MOUNTED_LISTMNTENT, 1,
+ AC_DEFINE_UNQUOTED(MOUNTED_LISTMNTENT, 1,
[Define if there is a function named listmntent that can be used to
list all mounted filesystems. (UNICOS)])
fi
@@ -66,7 +66,7 @@ if test $ac_cv_func_getmntent = yes; then
AC_MSG_RESULT($fu_cv_sys_mounted_getmntent1)
if test $fu_cv_sys_mounted_getmntent1 = yes; then
ac_list_mounted_fs=found
- AC_DEFINE(MOUNTED_GETMNTENT1, 1,
+ AC_DEFINE_UNQUOTED(MOUNTED_GETMNTENT1, 1,
[Define if there is a function named getmntent for reading the list
of mounted filesystems, and that function takes a single argument.
(4.3BSD, SunOS, HP-UX, Dynix, Irix)])
@@ -83,7 +83,7 @@ if test $ac_cv_func_getmntent = yes; then
AC_MSG_RESULT($fu_cv_sys_mounted_getmntent2)
if test $fu_cv_sys_mounted_getmntent2 = yes; then
ac_list_mounted_fs=found
- AC_DEFINE(MOUNTED_GETMNTENT2, 1,
+ AC_DEFINE_UNQUOTED(MOUNTED_GETMNTENT2, 1,
[Define if there is a function named getmntent for reading the list of
mounted filesystems, and that function takes two arguments. (SVR4)])
fi
@@ -110,7 +110,7 @@ if test -z "$ac_list_mounted_fs"; then
AC_MSG_RESULT($fu_cv_sys_mounted_getsstat)
if test $fu_cv_sys_mounted_getsstat = yes; then
ac_list_mounted_fs=found
- AC_DEFINE(MOUNTED_GETFSSTAT, 1,
+ AC_DEFINE_UNQUOTED(MOUNTED_GETFSSTAT, 1,
[Define if there is a function named getfsstat for reading the
list of mounted filesystems. (DEC Alpha running OSF/1)])
fi
@@ -126,7 +126,7 @@ if test -z "$ac_list_mounted_fs"; then
AC_MSG_RESULT($fu_cv_sys_mounted_vmount)
if test $fu_cv_sys_mounted_vmount = yes; then
ac_list_mounted_fs=found
- AC_DEFINE(MOUNTED_VMOUNT, 1,
+ AC_DEFINE_UNQUOTED(MOUNTED_VMOUNT, 1,
[Define if there is a function named mntctl that can be used to read
the list of mounted filesystems, and there is a system header file
that declares struct vmount. (AIX)])
@@ -146,7 +146,7 @@ if test -z "$ac_list_mounted_fs"; then
AC_MSG_RESULT($fu_cv_sys_mounted_fread_fstyp)
if test $fu_cv_sys_mounted_fread_fstyp = yes; then
ac_list_mounted_fs=found
- AC_DEFINE(MOUNTED_FREAD_FSTYP, 1,
+ AC_DEFINE_UNQUOTED(MOUNTED_FREAD_FSTYP, 1,
[Define if (like SVR2) there is no specific function for reading the
list of mounted filesystems, and your system has these header files:
<sys/fstyp.h> and <sys/statfs.h>. (SVR3)])
@@ -170,7 +170,7 @@ if test -z "$ac_list_mounted_fs"; then
AC_MSG_RESULT($fu_cv_sys_mounted_getmntinfo)
if test $fu_cv_sys_mounted_getmntinfo = yes; then
ac_list_mounted_fs=found
- AC_DEFINE(MOUNTED_GETMNTINFO, 1,
+ AC_DEFINE_UNQUOTED(MOUNTED_GETMNTINFO, 1,
[Define if there is a function named getmntinfo for reading the
list of mounted filesystems. (4.4BSD)])
fi
@@ -188,7 +188,7 @@ if test -z "$ac_list_mounted_fs"; then
AC_MSG_RESULT($fu_cv_sys_mounted_getmnt)
if test $fu_cv_sys_mounted_getmnt = yes; then
ac_list_mounted_fs=found
- AC_DEFINE(MOUNTED_GETMNT, 1,
+ AC_DEFINE_UNQUOTED(MOUNTED_GETMNT, 1,
[Define if there is a function named getmnt for reading the list of
mounted filesystems. (Ultrix)])
fi
@@ -209,7 +209,7 @@ if test -z "$ac_list_mounted_fs"; then
AC_MSG_RESULT($fu_result)
if test $fu_result = yes; then
ac_list_mounted_fs=found
- AC_DEFINE(MOUNTED_FS_STAT_DEV, 1,
+ AC_DEFINE_UNQUOTED(MOUNTED_FS_STAT_DEV, 1,
[Define if there are functions named next_dev and fs_stat_dev for
reading the list of mounted filesystems. (BeOS)])
fi
@@ -225,7 +225,7 @@ if test -z "$ac_list_mounted_fs"; then
AC_MSG_RESULT($fu_cv_sys_mounted_fread)
if test $fu_cv_sys_mounted_fread = yes; then
ac_list_mounted_fs=found
- AC_DEFINE(MOUNTED_FREAD, 1,
+ AC_DEFINE_UNQUOTED(MOUNTED_FREAD, 1,
[Define if there is no specific function for reading the list of
mounted filesystems. fread will be used to read /etc/mnttab. (SVR2) ])
fi