Date: Fri, 24 Nov 2006 22:06:41 +0100 From: =?ISO-8859-1?Q?K=F6vesd=E1n_G=E1bor?= <gabor.kovesdan@t-hosting.hu> To: VeeJay <maanjee@gmail.com> Cc: freebsd-questions@freebsd.org Subject: Re: How 2 Configure Makefile before "make install clean" from the ports? Message-ID: <45675EE1.9010101@t-hosting.hu> In-Reply-To: <2cd0a0da0611241302q77bf1d6etd59c7624562a65fe@mail.gmail.com> References: <2cd0a0da0611241302q77bf1d6etd59c7624562a65fe@mail.gmail.com>
next in thread | previous in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?45675EE1.9010101>