Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 12 Nov 2000 19:40:57 -0600
From:      Steve Price <sprice@hiwaay.net>
To:        Allan Bowhill <abowhill@vservers.com>
Cc:        Jun Kuriyama <kuriyama@imgsrc.co.jp>, ports@FreeBSD.ORG
Subject:   Re: apache-jserv
Message-ID:  <20001112194057.I62344@bonsai.knology.net>
In-Reply-To: <3A0C3E81.2BAF4CE7@vservers.com>; from abowhill@vservers.com on Fri, Nov 10, 2000 at 10:29:21AM -0800
References:  <Pine.BSF.3.96.1001109100537.44245A-100000@imediasolutions.net> <3A0AE4CC.9C9813FC@vservers.com> <7mbsvofa6x.wl@waterblue.imgsrc.co.jp> <3A0C3E81.2BAF4CE7@vservers.com>

next in thread | previous in thread | raw e-mail | index | archive | help

--qGV0fN9tzfkG3CxV
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline

On Fri, Nov 10, 2000 at 10:29:21AM -0800, Allan Bowhill wrote:
# 
# Yeah, patching configure is a bit kludgy. I haven't quite got a handle
# on how configure
# gets configured. Somewhere along the way make is identifying itself as
# /usr/bin/make.
# Isn't there an operation in configure where running the "make" command
# sets the ${MAKE} variable?
# 
# echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6
# 
# I wonder if that is causing the make misidentification. On the other
# hand there are still
# problems with the configure script, that needed to be patched.

The following patch should fix the problem without having to
patch the configure script.

-steve

--qGV0fN9tzfkG3CxV
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename=diffs

Index: Makefile
===================================================================
RCS file: /home/ncvs/ports/www/apache-jserv/Makefile,v
retrieving revision 1.9
diff -u -r1.9 Makefile
--- Makefile	2000/10/08 10:23:08	1.9
+++ Makefile	2000/11/09 19:34:34
@@ -20,10 +20,12 @@
 		${LOCALBASE}/sbin/apachectl:${PORTSDIR}/www/apache13\
 		${LOCALBASE}/share/java/classes/jsdk.jar:${PORTSDIR}/java/jsdk
 
-USE_LIBTOOL=	yes
 USE_GMAKE=	yes
+GMAKE=		${LOCALBASE}/bin/gmake # Must have the full path.
+USE_LIBTOOL=	yes
+USE_PERL5=	yes
 JAVAVM?=	${LOCALBASE}/bin/javavm
-CONFIGURE_ENV=	MAKE=${LOCALBASE}/bin/${GMAKE}
+CONFIGURE_ENV=	PERL=${PERL}
 CONFIGURE_ARGS=	--prefix=${PREFIX}\
 		--libexecdir=${LOCALBASE}/libexec/apache\
 		--libdir=${LOCALBASE}/libexec/apache\

--qGV0fN9tzfkG3CxV--


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20001112194057.I62344>