Return-Path: Delivered-To: apmail-httpd-users-archive@httpd.apache.org Received: (qmail 67945 invoked by uid 500); 9 Apr 2002 18:20:04 -0000 Mailing-List: contact users-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: users@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list users@httpd.apache.org Received: (qmail 67931 invoked from network); 9 Apr 2002 18:20:03 -0000 Received: from assembly.state.ny.us (204.97.104.2) by daedalus.apache.org with SMTP; 9 Apr 2002 18:20:03 -0000 Received: from DARKSTAR (nysa-bh1.assembly.state.ny.us [204.97.104.30]) by assembly.state.ny.us (8.11.6/8.11.6) with SMTP id g39IKl533398 for ; Tue, 9 Apr 2002 14:20:47 -0400 Message-ID: <018801c1dff3$4d287ab0$e20a020a@DARKSTAR> From: "Matt Garretson" To: References: <002901c1dfe0$4a823480$1601020a@achan><20020409105814.0ea79501.ahawkes@unicon.net><002301c1dff0$5fd193c0$1601020a@achan> <20020409110853.4ba20856.ahawkes@unicon.net> Subject: Re: Your production apache server Date: Tue, 9 Apr 2002 14:21:00 -0400 Organization: New York State Assembly MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N > One tip to keep in mind - record the "./configure ..." line you use for > this build somewhere. Then, if you need to recompile you don't have to I second this recommendation. One thing i do is have a shell script called "doit" in every source directory in which i have the configure command, so i can tweak or repeat it easily. E.g. the one currently in my httpd-2.0.35 tree looks something like below (BTW i'm still tweaking it, so not all the options below actually work as i'd like): #!/bin/sh CFLAGS='-O3 -march=i686' LDFLAGS='-static' \ ./configure \ --prefix=/opt/apache2 \ --disable-so \ --enable-static \ --disable-shared \ --enable-static-support \ --enable-info \ --disable-userdir \ --disable-asis \ --disable-autoindex \ --disable-imap \ --disable-env \ --disable-include \ --enable-auth \ --enable-auth-dbm \ --enable-auth-digest \ --enable-ssl \ 2>&1 |tee configure.log # make 2>&1 |tee make.log --------------------------------------------------------------------- The official User-To-User support forum of the Apache HTTP Server Project. See for more info. To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org For additional commands, e-mail: users-help@httpd.apache.org