summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile.am9
-rw-r--r--pkg/solaris/.cvsignore2
-rw-r--r--pkg/solaris/pkginfo.in6
-rw-r--r--plugins/check_disk.c3
4 files changed, 13 insertions, 7 deletions
diff --git a/Makefile.am b/Makefile.am
index 8cc1514..5e117a5 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -18,17 +18,18 @@ nagios-plugins.spec: nagios-plugins.spec.in
18 sed "s/%%{VER}/${VER}/;s/%%{REL}/${REL}/;" $? > $@ 18 sed "s/%%{VER}/${VER}/;s/%%{REL}/${REL}/;" $? > $@
19 19
20# Solaris pkgmk 20# Solaris pkgmk
21BUILDDIR=`pwd`/build-solaris 21BUILDDIR := $(shell pwd)/build-solaris
22PACKDIR=`pwd`/build-pkg 22PACKDIR := $(shell pwd)/build-pkg
23PKGSCRIPT := $(shell pwd)/pkg/solaris/solpkg
23VERSION=@PACKAGE_VERSION@ 24VERSION=@PACKAGE_VERSION@
24 25
25solpkg: 26solpkg:
26 if [ ! -d $(BUILDDIR) ] ; then mkdir $(BUILDDIR); fi 27 if [ ! -d $(BUILDDIR) ] ; then mkdir $(BUILDDIR); fi
27 if [ ! -d $(PACKDIR) ] ; then mkdir $(PACKDIR); fi 28 if [ ! -d $(PACKDIR) ] ; then mkdir $(PACKDIR); fi
28 $(MAKE) all 29 $(MAKE) all
29 $(MAKE) DESTDIR=$(BUILDDIR) install 30 $(MAKE) DESTDIR=$(BUILDDIR) prefix=/ install
30 $(INSTALL) pkg/solaris/pkginfo $(BUILDDIR) 31 $(INSTALL) pkg/solaris/pkginfo $(BUILDDIR)
31 $(cd $(BUILDDIR) && `pwd`/pkg/solaris/solpkg $(PACKDIR)) 32 cd $(BUILDDIR) && $(PERL) $(PKGSCRIPT) $(PACKDIR)
32 33
33pkgclean: 34pkgclean:
34 rm -rf $(BUILDDIR) $(PACKDIR) 35 rm -rf $(BUILDDIR) $(PACKDIR)
diff --git a/pkg/solaris/.cvsignore b/pkg/solaris/.cvsignore
new file mode 100644
index 0000000..a6bb7e4
--- /dev/null
+++ b/pkg/solaris/.cvsignore
@@ -0,0 +1,2 @@
1.cvsignore
2pkginfo
diff --git a/pkg/solaris/pkginfo.in b/pkg/solaris/pkginfo.in
index be4b97f..9211fcf 100644
--- a/pkg/solaris/pkginfo.in
+++ b/pkg/solaris/pkginfo.in
@@ -1,12 +1,12 @@
1PKG="NPDTplugins" 1PKG="NAGplugin"
2NAME="nagiosplugins" 2NAME="nagios-plugins"
3DESC="Nagios network monitoring plugins" 3DESC="Nagios network monitoring plugins"
4ARCH="@PKG_ARCH@" 4ARCH="@PKG_ARCH@"
5VERSION="@PACKAGE_VERSION@,REV=@REV_DATESTAMP@" 5VERSION="@PACKAGE_VERSION@,REV=@REV_DATESTAMP@"
6CATEGORY="application" 6CATEGORY="application"
7VENDOR="Nagios Plugin Development Team" 7VENDOR="Nagios Plugin Development Team"
8EMAIL="nagiosplug-devel@lists.sourceforge.net" 8EMAIL="nagiosplug-devel@lists.sourceforge.net"
9PSTAMP="sfw@REV_TIMESTAMP@" 9PSTAMP="nag@REV_TIMESTAMP@"
10BASEDIR="/usr/local" 10BASEDIR="/usr/local"
11CLASSES="none" 11CLASSES="none"
12 12
diff --git a/plugins/check_disk.c b/plugins/check_disk.c
index a7dd5cc..347c4c7 100644
--- a/plugins/check_disk.c
+++ b/plugins/check_disk.c
@@ -64,6 +64,9 @@ const char *options = "\
64#include <stdarg.h> 64#include <stdarg.h>
65#include "../lib/fsusage.h" 65#include "../lib/fsusage.h"
66#include "../lib/mountlist.h" 66#include "../lib/mountlist.h"
67#if HAVE_LIMITS_H
68# include <limits.h>
69#endif
67 70
68/* If nonzero, show inode information. */ 71/* If nonzero, show inode information. */
69static int inode_format; 72static int inode_format;