Re: APACHE source modification

2008-01-28 Thread Josh Grosse
On Sun, Jan 27, 2008 at 02:12:38PM +0100, Bambero wrote:
 Hello
 
 I have modified apache source in /usr/src/usr.sbin/httpd.
 What commands should I use to build it to override my current binary
 instalation ?

FAQ 5.3.5 will work.  Of course, afterwards, your browser may not.



Re: APACHE source modification

2008-01-28 Thread Henning Brauer
* Bambero [EMAIL PROTECTED] [2008-01-27 14:13]:
 Hello
 
 I have modified apache source in /usr/src/usr.sbin/httpd.
 What commands should I use to build it to override my current binary
 instalation ?
 
 ./configure  make  make install
 
 will be good ?

no.

make -f Makefile.bsd-wrapper obj
make -f Makefile.bsd-wrapper
sudo make -f Makefile.bsd-wrapper install


-- 
Henning Brauer, [EMAIL PROTECTED], [EMAIL PROTECTED]
BS Web Services, http://bsws.de
Full-Service ISP - Secure Hosting, Mail and DNS Services
Dedicated Servers, Rootservers, Application Hosting - Hamburg  Amsterdam



Re: APACHE source modification

2008-01-28 Thread Rosen Iliev

As per some of the patches, for example:
ftp://ftp.openbsd.org/pub/OpenBSD/patches/4.0/common/001_httpd.patch
rebuild and install httpd and its modules:
cd usr.sbin/httpd
make -f Makefile.bsd-wrapper obj
make -f Makefile.bsd-wrapper cleandir
make -f Makefile.bsd-wrapper depend
make -f Makefile.bsd-wrapper
make -f Makefile.bsd-wrapper install

If httpd had been started, you might want to run
apachectl stop
before running make install, and
apachectl start
afterwards.

Rosen

Bambero wrote:

On Sun, 27 Jan 2008 08:36:22 -0500
Josh Grosse [EMAIL PROTECTED] wrote:

  

On Sun, Jan 27, 2008 at 02:12:38PM +0100, Bambero wrote:


Hello

I have modified apache source in /usr/src/usr.sbin/httpd.
What commands should I use to build it to override my current binary
instalation ?
  

FAQ 5.3.5 will work.  Of course, afterwards, your browser may not.



Read post carefully. As i suppose apache is specific package, there is
no Makefile like in others packages, so reding FAQ 5.3.5 doesn't help.

I used the following command but I'm not sure it's correct
cd /usr/src/usr.sbin/httpd
make -f Makefile.bsd-wrapper install




APACHE source modification

2008-01-27 Thread Bambero
Hello

I have modified apache source in /usr/src/usr.sbin/httpd.
What commands should I use to build it to override my current binary
instalation ?

./configure  make  make install

will be good ?

Regards,
Bambero

-- 
Bambero [EMAIL PROTECTED]



Re: APACHE source modification

2008-01-27 Thread Bambero
On Sun, 27 Jan 2008 08:36:22 -0500
Josh Grosse [EMAIL PROTECTED] wrote:

 On Sun, Jan 27, 2008 at 02:12:38PM +0100, Bambero wrote:
  Hello
  
  I have modified apache source in /usr/src/usr.sbin/httpd.
  What commands should I use to build it to override my current binary
  instalation ?
 
 FAQ 5.3.5 will work.  Of course, afterwards, your browser may not.

Read post carefully. As i suppose apache is specific package, there is
no Makefile like in others packages, so reding FAQ 5.3.5 doesn't help.

I used the following command but I'm not sure it's correct
cd /usr/src/usr.sbin/httpd
make -f Makefile.bsd-wrapper install

-- 
Bambero [EMAIL PROTECTED]