From 02e4d3508597d8ca06080dda6142851f431bbe3c Mon Sep 17 00:00:00 2001 From: psychon Date: Tue, 30 Sep 2008 18:07:25 +0000 Subject: [PATCH] Clean up modules/Makefile.in for modperl The HAVE_PERL define isn't used anymore and we had some compiler flags for modperl mentioned multiple times. Plus IMHO this looks better now ;) git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@1235 726aef4b-f618-498e-8847-2d620e286838 --- modules/Makefile.in | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/modules/Makefile.in b/modules/Makefile.in index 0fac5c99..18c6210a 100644 --- a/modules/Makefile.in +++ b/modules/Makefile.in @@ -30,13 +30,11 @@ FILES := $(basename $(wildcard *.cpp)) endif ifneq "$(PERL)" "" -PERLCC := -DHAVE_PERL `$(PERL) -MExtUtils::Embed -e perl_inc` -PERLLD := `$(PERL) -MExtUtils::Embed -e perl_inc -e ldopts` -PERLHOOK := modperl_install +modperlFLAGS := `$(PERL) -MExtUtils::Embed -e perl_inc -e ldopts` +PERLHOOK := modperl_install else FILES := $(shell echo $(FILES) | sed -e "s/modperl//") endif -modperlFLAGS := $(PERLLD) $(PERLCC) ifeq "@SASL@" "" FILES := $(shell echo $(FILES) | sed -e "s/saslauth//")