From owner-freebsd-questions@FreeBSD.ORG Fri Nov 24 21:07:08 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3439916A47C for ; Fri, 24 Nov 2006 21:07:08 +0000 (UTC) (envelope-from gabor.kovesdan@t-hosting.hu) Received: from server.t-hosting.hu (server.t-hosting.hu [217.20.133.7]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E5B243D97 for ; Fri, 24 Nov 2006 21:06:10 +0000 (GMT) (envelope-from gabor.kovesdan@t-hosting.hu) Received: from localhost (localhost [127.0.0.1]) by server.t-hosting.hu (Postfix) with ESMTP id 139729A96BA; Fri, 24 Nov 2006 22:06:50 +0100 (CET) X-Virus-Scanned: amavisd-new at t-hosting.hu Received: from server.t-hosting.hu ([127.0.0.1]) by localhost (server.t-hosting.hu [127.0.0.1]) (amavisd-new, port 10024) with LMTP id EzE4rYdG9tmx; Fri, 24 Nov 2006 22:06:44 +0100 (CET) Received: from [127.0.0.1] (catv-50635cb6.catv.broadband.hu [80.99.92.182]) by server.t-hosting.hu (Postfix) with ESMTP id B62B59A9684; Fri, 24 Nov 2006 22:06:44 +0100 (CET) Message-ID: <45675EE1.9010101@t-hosting.hu> Date: Fri, 24 Nov 2006 22:06:41 +0100 From: =?ISO-8859-1?Q?K=F6vesd=E1n_G=E1bor?= User-Agent: Thunderbird 1.5.0.8 (Windows/20061025) MIME-Version: 1.0 To: VeeJay References: <2cd0a0da0611241302q77bf1d6etd59c7624562a65fe@mail.gmail.com> In-Reply-To: <2cd0a0da0611241302q77bf1d6etd59c7624562a65fe@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Cc: freebsd-questions@freebsd.org Subject: Re: How 2 Configure Makefile before "make install clean" from the ports? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Nov 2006 21:07:08 -0000 VeeJay escribió: > Hi > > > > I want to install apache20 from the ports. But before installing, I > want to > enable/disable some of the modules as follow > > > > ./configure \ > > --prefix=/usr/local/apache2 \ > > --with-mpm=prefork \ > > --disable-charset-lite \ > > --disable-include \ > > --disable-env \ > > --disable-setenvif \ > > --disable-status \ > > --disable-autoindex \ > > --disable-asis \ > > --disable-cgi \ > > --disable-negotiation \ > > --disable-imap \ > > --disable-actions \ > > --disable-userdir \ > > --disable-alias \ > > > > But I have tried many different ways to configure before giving > command "make install clean". But haven't had any luck. > > Could you please guide me that How can I configure the Makefile before > installing apache? > > For example > > When I give "make config" command I get error as follow: > > > > # make config > ===> No options to configure > > > > > > I have also tried --enable-OPTION and --disable-OPTION... in Makefile. > > > but didn't had any luck.... :( > > Could you attache a Makefile showing places where to put these > switches and > how? I will be really very gratefull.... > When you try to install it, it prints a bunch of knobs, you can use, e.g. WITH_SSL_MODULES, etc. You can set such in this way: make WITH_SSL_MODULES=yes install clean Cheers, Gabor