From: Michael Tremer Date: Thu, 29 Dec 2011 12:44:09 +0000 (+0100) Subject: nagios_nrpe: Disable linking against tcpwrappers. X-Git-Tag: v2.11-core56^2~25^2~6 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c6f13fa77c23a02d649ed1d56c7a366c3a7a2caa;p=people%2Fms%2Fipfire-2.x.git nagios_nrpe: Disable linking against tcpwrappers. tcpwrappers is $%&"$%&/ and just causing headaches. Use the stupid firewall if you want to block access from remote hosts. --- diff --git a/lfs/nagios_nrpe b/lfs/nagios_nrpe index 34bc5a890b..41be3d3976 100644 --- a/lfs/nagios_nrpe +++ b/lfs/nagios_nrpe @@ -33,7 +33,7 @@ DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = nagios_nrpe -PAK_VER = 1 +PAK_VER = 2 DEPS = "nagios" @@ -78,9 +78,15 @@ $(subst %,%_MD5,$(objects)) : $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) @$(PREBUILD) @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE) - cd $(DIR_APP) && ./configure --prefix=/usr --libexecdir=/usr/lib/nagios \ - --with-nrpe-user=nobody --with-nrpe-group=nobody \ - --with-nagios-user=nobody --with-nagios-group=nobody + cd $(DIR_APP) && ./configure \ + --prefix=/usr \ + --libexecdir=/usr/lib/nagios \ + --with-nrpe-user=nobody \ + --with-nrpe-group=nobody \ + --with-nagios-user=nobody \ + --with-nagios-group=nobody \ + ac_cv_lib_wrap_main=no + cd $(DIR_APP) && make $(MAKETUNING) cd $(DIR_APP) && make install @rm -rf $(DIR_APP)