summaryrefslogtreecommitdiff
path: root/net-analyzer/nagios-sap-ccms-plugin/files/nagios-sap-ccms-plugin-0.8-gentoo.patch
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2019-12-15 18:09:03 +0000
committerV3n3RiX <venerix@redcorelinux.org>2019-12-15 18:09:03 +0000
commit7bc9c63c9da678a7e6fceb095d56c634afd22c56 (patch)
tree4a67d50a439e9af63947e5f8b6ba3719af98b6c9 /net-analyzer/nagios-sap-ccms-plugin/files/nagios-sap-ccms-plugin-0.8-gentoo.patch
parentb284a3168fa91a038925d2ecf5e4791011ea5e7d (diff)
gentoo resync : 15.12.2019
Diffstat (limited to 'net-analyzer/nagios-sap-ccms-plugin/files/nagios-sap-ccms-plugin-0.8-gentoo.patch')
-rw-r--r--net-analyzer/nagios-sap-ccms-plugin/files/nagios-sap-ccms-plugin-0.8-gentoo.patch61
1 files changed, 0 insertions, 61 deletions
diff --git a/net-analyzer/nagios-sap-ccms-plugin/files/nagios-sap-ccms-plugin-0.8-gentoo.patch b/net-analyzer/nagios-sap-ccms-plugin/files/nagios-sap-ccms-plugin-0.8-gentoo.patch
deleted file mode 100644
index 8ded76b3b7d1..000000000000
--- a/net-analyzer/nagios-sap-ccms-plugin/files/nagios-sap-ccms-plugin-0.8-gentoo.patch
+++ /dev/null
@@ -1,61 +0,0 @@
---- a/src/Makefile
-+++ b/src/Makefile
-@@ -1,5 +1,5 @@
-
--VERSION=0.7.3
-+VERSION=0.8
- PLATFORM=$(shell uname -m)
-
-
-@@ -33,12 +33,10 @@
- SUBDIRS = sap_moni
- #C-Compiler
-
--CC=gcc -DSAP_RFC_TIME
--X_CFLAGS = $(CFLAGS)
-+X_CFLAGS = $(CFLAGS) $(LDFLAGS) -DSAP_RFC_TIME
- SHARED_OBJECTS=libs/$(PLATFORM)/librfccm.so
-
- ifeq ($(patsubst i%86,x86,$(PLATFORM)), x86)
-- CC=gcc -DSAP_RFC_TIME
- SHARED_OBJECTS=libs/x86/librfccm.so
- endif
-
---- a/src/sap_moni/Makefile 2009-03-16 12:34:26.000000000 +0100
-+++ b/src/sap_moni/Makefile 2010-10-20 01:24:14.000000000 +0200
-@@ -1,23 +1,16 @@
--PLATFORM=$(shell uname -m)
--
- #used files
--SRC_INI = iniparser.c dictionary.c strlib.c
-+SRC_INI = dictionary.c strlib.c
- OBJ_INI = $(SRC_INI:.c=.o)
- OBJ=ctype_b.o agnt_rfc.o agnt_mon.o $(OBJ_INI)
-
- SHARED = sap_moni.so
-
- #C-Compiler
--CC=gcc -DSAP_RFC_TIME
--X_CFLAGS=$(CFLAGS) -fPIC
--
--ifeq ($(PLATFORM),ppc64)
-- CC=gcc -m64 -DSAP_RFC_TIME
--endif
-+X_CFLAGS=$(CFLAGS) -fPIC -DSAP_RFC_TIME
-
- #Rules
- shared: $(OBJ)
-- $(CC) -shared $ $(X_CFLAGS) -o $(SHARED) $(OBJ) -ldl -lm
-+ $(CC) -shared $ $(X_CFLAGS) $(LDFLAGS) -o $(SHARED) $(OBJ) -ldl -lm -liniparser
-
-
- .SUFFIXES: .c .o
-@@ -26,7 +19,7 @@
-
- #Dependencies
- agnt_rfc.o: saprfc.h sapitab.h agnt_def.h
--agnt_mon.o: agnt_def.h iniparser.h sapitab.h
-+agnt_mon.o: agnt_def.h sapitab.h
-
-
- #------