From owner-freebsd-questions Sat Mar 23 21:34:24 2002 Delivered-To: freebsd-questions@freebsd.org Received: from invert.com (invert.com [209.164.21.15]) by hub.freebsd.org (Postfix) with ESMTP id D77FD37B404 for ; Sat, 23 Mar 2002 21:34:19 -0800 (PST) Received: (from mee@localhost) by invert.com (8.11.3/8.11.3) id g2O5U7q56501 for freebsd-questions@FreeBSD.ORG; Sat, 23 Mar 2002 21:30:07 -0800 (PST) (envelope-from mee) Date: Sat, 23 Mar 2002 21:30:07 -0800 From: Mike Erickson To: FreeBSD Questions Subject: Apache Port Customization Message-ID: <20020324053007.GP38571@quidquam.com> Mail-Followup-To: FreeBSD Questions References: <200203240343.g2O3hOQ91501@mts-138.wallnet.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200203240343.g2O3hOQ91501@mts-138.wallnet.com> User-Agent: Mutt/1.3.28i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I would like to start using ports to further automate server setup by using the apache13 port rather than installing from source. However, I need to retain the default apache src layout. I've tried a few things along the lines of what's below but with no luck. Can anyone see what I'm doing wrong? # cd /usr/ports/www/apache13 # make \ CONFIGURE_ARGS+="--with-layout=Apache --prefix=/usr/local/apache" \ CFLAGS="-DHARD_SERVER_LIMIT=4000" \ build The Makefile contains: CONFIGURE_ARGS+= \ --prefix=${PREFIX} \ --server-uid=www \ --server-gid=www \ --with-perl=${PERL} \ --with-layout=FreeBSD \ --suexec-docroot=${PREFIX}/www/data \ --without-confadjust \ --enable-module=most \ --enable-module=auth_db \ --enable-module=mmap_static \ --disable-module=auth_dbm \ --enable-shared=max OPTIM= -DDOCUMENT_LOCATION=\\"${PREFIX}/www/data/\\" \ -DDEFAULT_PATH=\\"/bin:/usr/bin:${PREFIX}/bin\\" I thought that should override the layout and prefix configure args OK, but I get this: Configuring for Apache, Version 1.3.24 + using installation path layout: Apache (config.layout) + using installation path layout: FreeBSD (config.layout) I also don't know how to safely effect the settings in OPTIM. Oh, and I'd like to stay away from any solution that requires editing the Makefiles (which I'm beginning to suspect may not be possible). grasping, mike To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message