diff options
author | spz <spz@pkgsrc.org> | 2011-10-15 23:04:51 +0000 |
---|---|---|
committer | spz <spz@pkgsrc.org> | 2011-10-15 23:04:51 +0000 |
commit | f173f3e257b50999974dc29e5326a1ea5c5825c7 (patch) | |
tree | 0bcb82e83f894797fa2f0abb1764fc4b9ad0b6d0 /net/xymonclient | |
parent | 041b1af98717479f040fd77b8abbed5134457952 (diff) | |
download | pkgsrc-f173f3e257b50999974dc29e5326a1ea5c5825c7.tar.gz |
reanimate dhollands changes that play ok with 4.3.5
Diffstat (limited to 'net/xymonclient')
-rw-r--r-- | net/xymonclient/patches/patch-ae | 27 | ||||
-rw-r--r-- | net/xymonclient/patches/patch-configure | 20 |
2 files changed, 42 insertions, 5 deletions
diff --git a/net/xymonclient/patches/patch-ae b/net/xymonclient/patches/patch-ae index f9ceca88fdc..7cbb6226924 100644 --- a/net/xymonclient/patches/patch-ae +++ b/net/xymonclient/patches/patch-ae @@ -1,14 +1,31 @@ -$NetBSD: patch-ae,v 1.1.1.1 2010/02/14 16:11:11 spz Exp $ +$NetBSD: patch-ae,v 1.2 2011/10/15 23:04:51 spz Exp $ ---- build/Makefile.NetBSD.orig 2010-02-08 23:58:57.000000000 +0000 +- netbsd has stdint.h +- remove stray commas + +--- build/Makefile.NetBSD.orig 2011-03-08 17:20:28.000000000 +0000 +++ build/Makefile.NetBSD -@@ -10,7 +10,8 @@ NETLIBS = +@@ -1,7 +1,7 @@ + # Xymon compile-time settings for NetBSD systems + # From Emmanuel Dreyfus. + # +-OSDEF = -DBSD ++OSDEF = -DBSD -DHAVE_STDINT_H + + # NETLIBS: None needed + NETLIBS = +@@ -10,12 +10,12 @@ NETLIBS = CC= gcc PKGDIR?=/usr/pkg CFLAGS = -g -O2 -Wall -Wno-unused -D_REENTRANT $(LFSDEF) $(OSDEF) \ - -I${PKGDIR}/include -L${PKGDIR}/lib, -Wl,--rpath=${PKGDIR}/lib -+ -I${PKGDIR}/include -L${PKGDIR}/lib, -Wl,--rpath=${PKGDIR}/lib \ -+ -DHAVE_STDINT_H ++ -I${PKGDIR}/include -L${PKGDIR}/lib -Wl,--rpath=${PKGDIR}/lib RPATH = "-Wl,--rpath," # Compile flags for debugging + # CFLAGS = -g -DDEBUG -Wall -D_REENTRANT $(LFSDEF) $(OSDEF) \ +- -I${PKGDIR}/include -L${PKGDIR}/lib, -Wl,--rpath=${PKGDIR}/lib ++ -I${PKGDIR}/include -L${PKGDIR}/lib -Wl,--rpath=${PKGDIR}/lib + + # Mail program: This must support "CMD -s SUBJECT ADDRESS" to send out a mail with a subject + # Typically, this will be "mail" or "mailx" diff --git a/net/xymonclient/patches/patch-configure b/net/xymonclient/patches/patch-configure new file mode 100644 index 00000000000..193110b3a49 --- /dev/null +++ b/net/xymonclient/patches/patch-configure @@ -0,0 +1,20 @@ +$NetBSD: patch-configure,v 1.1 2011/10/15 23:04:51 spz Exp $ + +Make sure the toplevel configure script exits on failure. + +--- configure.orig 2011-03-08 17:20:28.000000000 +0000 ++++ configure +@@ -14,11 +14,11 @@ chmod 755 $BASEDIR/configure* $BASEDIR/b + + case "$TARGET" in + "--client") +- $BASEDIR/configure.client $* ++ $BASEDIR/configure.client "$@" || exit 1 + ;; + + "--server"|"") +- $BASEDIR/configure.server $* ++ $BASEDIR/configure.server "$@" || exit 1 + ;; + + "--help") |