summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2009-01-21Fix (or try at least) for IRIX compile to tap testsThomas Guyot-Sionnest1-1/+1
Gnulib says: "$(LTLIBINTL) when linking with libtool, $(LIBINTL) otherwise" Everywhere else we use LTLIBINTL so I assume the tests should use it as well.
2009-01-21Trick for check_users test without users logged-inThomas Guyot-Sionnest1-0/+4
2009-01-19Build extra-opts in tinderbox so they can be testedThomas Guyot-Sionnest1-2/+2
2009-01-18Re-apply "Cleanup; fix the way libraries are linked; Make-It-Simple(tm)"Thomas Guyot-Sionnest1-33/+4
This reverts commit 7449b16b1781c645751e2c05b93893e93630fb2a.
2009-01-18Trying out new patch for IRIX 6.5 from Bruno HaibleThomas Guyot-Sionnest1-2/+9
See: http://article.gmane.org/gmane.comp.lib.gnulib.bugs/16341
2009-01-18Revert "Trying out a patch for IRIX 11"Thomas Guyot-Sionnest1-1/+4
This reverts commit d190c5d25865a7414eea4fe6409a94842fba220e.
2009-01-17Trying out a patch for IRIX 11Thomas Guyot-Sionnest1-4/+1
See: http://lists.gnu.org/archive/html/bug-gnulib/2009-01/msg00098.html
2009-01-15Removing AC_FUNC_ALLOCA from configure.in (added in the gnulib sync commit)Thomas Guyot-Sionnest1-1/+0
I added AC_FUNC_ALLOCA because of a mistake on my part (which has been fixed before the final commit). Removing it now.
2009-01-15TypoThomas Guyot-Sionnest1-1/+2
2009-01-15Sync with gnulibThomas Guyot-Sionnest148-1824/+8846
2009-01-15Clean up last commit - remove the __STDC_VERSION__ check in tap.hThomas Guyot-Sionnest1-4/+6
HP-UX refuses to compile tap with the check for __STDC_VERSION__ >= 199901L even though it can.
2009-01-14Trying to see if HP-UX will compile without the __STDC_VERSION__ check in tap.hThomas Guyot-Sionnest1-3/+3
2009-01-13Make /lib before /lib/tests to satisfy dependencies (building tests fails on ↵Thomas Guyot-Sionnest1-1/+1
IRIX)
2009-01-09Fix test from last commitThomas Guyot-Sionnest1-1/+1
2009-01-09basename check in test_utils.c was accidentaly added again.Thomas Guyot-Sionnest1-4/+0
In 538b97c I reverted a serie of libtap patch by Ton Voon; it included the removal of the useless basename check. Relevant portion of the changelog from which it was removed (f31cd40): Removed basename test as we should use base_name from GNUlib which is tested separately
2009-01-09Revert "Cleanup; fix the way libraries are linked; Make-It-Simple(tm)"Thomas Guyot-Sionnest2-5/+34
Trying to see if this has any relation to the tinderbox failure. I doubt it and will revert back as soon as it's tested. This reverts commit a97e5fbda21a05574b0e3c5a5118402ebfbbd13c.
2009-01-08Try to make IRIX happy (this fixes a similar warning in Solaris)Thomas Guyot-Sionnest1-1/+1
2009-01-07Cleanup; fix the way libraries are linked; Make-It-Simple(tm)Thomas Guyot-Sionnest2-34/+5
lib/Makefile.am | 2 +- lib/tests/Makefile.am | 37 ++++--------------------------------- 2 files changed, 5 insertions(+), 34 deletions(-)
2009-01-06git2svn: Use --add-author-from with "git set-tree"Thomas Guyot-Sionnest1-2/+2
2009-01-06tinderbox_build: Add --enable-libtap configure optionThomas Guyot-Sionnest1-2/+2
2009-01-06tinderbox_build: Clarify commentThomas Guyot-Sionnest1-1/+1
2008-12-23Allow privproto to be passed through check_snmp to snmpget. Defaults to DESTon Voon1-4/+13
for compatibility
2008-12-03check_mrtg: fix plugin returning UNKNOWN instead of OK (bug #2378068)Thomas Guyot-Sionnest3-1/+3
2008-12-02Updated to latest due to SF policy changesTon Voon1-15/+22
2008-11-29Add Libtap as a bundled library (does not change any behaviour without ↵Thomas Guyot-Sionnest74-64/+2743
--enable-libtap) Detects system library as pre-1.4.13 and does not install the built-in library anymore Tested on: - Linux x86_64, with and without local libtap (System libtap installed) - Linux x86, with and without local libtap (System libtap NOT installed) - Solaris SPARC, with and without local libtap, with and without system libtap installed
2008-11-28Revert inclusion of libtap into nagiospluginsThomas Guyot-Sionnest15-95/+92
(except for the NEWS file) This reverts the following commits (latest first): f3e0909, 9f16b54, be8df51, f31cd40, 5270c7d, a25083f, f1bfe40, c503d85 and 6c476db
2008-11-27tinderbox: Don't alter SunOS path if we're building off a repository treeThomas Guyot-Sionnest1-2/+4
SunOS make will work only out of snapshots and releases.
2008-11-27Fixing build breakages (I totally forgot this rule was there...)Thomas Guyot-Sionnest3-5/+1
2008-11-26Fix it for good nowThomas Guyot-Sionnest1-2/+2
2008-11-26Minor fix in NP-VERSION-GENThomas Guyot-Sionnest1-2/+2
2008-11-26Disable dynamic versionning for releases, and allow generating version out ↵Thomas Guyot-Sionnest6-22/+32
of subversion. This should be a definitive fix for systems with non-compilant make programs as the version will be taken from $(PACKAGE_VERSION) instead. At the same time I added code for generating svn-based version strings.
2008-11-25Workaround to support more make programsThomas Guyot-Sionnest3-3/+12
Avoid the use of "-include". Since "include" is interpreted by Automake, we have to use a special macro instead.
2008-11-25Exporting ENV vars from Makefile is supported only with GNU Make. Use the ↵Thomas Guyot-Sionnest1-4/+2
shell instead.
2008-11-24tools/distclean: No need to bailout on distclean failuresThomas Guyot-Sionnest1-2/+1
2008-11-24Revert "tinderbox: Comment out additional PATH conponent added for SunOS builds"Thomas Guyot-Sionnest1-5/+3
This reverts commit 088452683cf881c6ed717cc559ca2eee3faa95ca.
2008-11-23tinderbox: Comment out additional PATH conponent added for SunOS buildsThomas Guyot-Sionnest1-3/+5
2008-11-23Avoid the use of .PHONY (target s created twice and I have no idea if it's ↵Thomas Guyot-Sionnest3-4/+6
right).
2008-11-23Update .gitignore to include missing file/extentionThomas Guyot-Sionnest1-0/+3
2008-11-23Add .gitignore (Imported from svn:ignore)Thomas Guyot-Sionnest1-0/+254
2008-11-23Removing CVS/SVN tags and replacing with git-based versioningThomas Guyot-Sionnest172-531/+419
For contrib/, full tags have been imported from subversion git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@2091 f882894a-f735-0410-b71e-b25c423dba1c
2008-11-20Add comment to recent check_disk patchThomas Guyot-Sionnest1-1/+4
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@2088 f882894a-f735-0410-b71e-b25c423dba1c
2008-11-19Bulk EOL cleanupThomas Guyot-Sionnest35-183/+183
$ git diff --ignore-space-change|diffstat 0 files changed git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@2087 f882894a-f735-0410-b71e-b25c423dba1c
2008-11-19Fixed buffer overflow in check_ntp/check_ntp_peer (#1999319, Ubuntu #291265)Thomas Guyot-Sionnest3-2/+3
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@2086 f882894a-f735-0410-b71e-b25c423dba1c
2008-11-19check_disk: rerpopulate the mount list after doing a stat() on paths ↵Thomas Guyot-Sionnest4-15/+16
specified with -p for better automount support. NB: There's a memory leak here - properly freeing the mount list would invlove much more work - there's many other places where leaks can happen so it should be a project on its own. git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@2085 f882894a-f735-0410-b71e-b25c423dba1c
2008-11-14Helper script to upload tarballs to SF and create md5sumTon Voon1-0/+27
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@2081 f882894a-f735-0410-b71e-b25c423dba1c
2008-11-11Updated tinderbox linkTon Voon1-1/+1
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@2080 f882894a-f735-0410-b71e-b25c423dba1c
2008-11-08Add missing long options for check_nt (for use with extra-opts)Thomas Guyot-Sionnest2-2/+10
Extra-opts (ini files) requires long-options for setting up arguments. Added the missing ones for check_nt so that it can be properly used with extra-opts. git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@2079 f882894a-f735-0410-b71e-b25c423dba1c
2008-11-08Fix long options parsing in check_disk, check_dns, check_mrtg and ↵Thomas Guyot-Sionnest8-15/+14
check_mrtgtraf (check_tcp was done in an earlier commit) git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@2078 f882894a-f735-0410-b71e-b25c423dba1c
2008-11-08Added Jan for check_http method patchTon Voon1-0/+1
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@2077 f882894a-f735-0410-b71e-b25c423dba1c
2008-11-08Fixed bug where extra headers and redirect caused segfault (Dieter Van de ↵Ton Voon4-3/+34
Walle - 2089159) git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@2076 f882894a-f735-0410-b71e-b25c423dba1c