Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 14 Jul 2002 03:29:50 -0400
From:      "Peter Brezny" <peter@sysadmin-inc.com>
To:        <freebsd-ports@freebsd.org>
Subject:   mini how-to for apache-ssl update to apache 1.3.26
Message-ID:  <NFBBKAEAALGGGFKINBLAIEJOCDAA.peter@sysadmin-inc.com>

next in thread | raw e-mail | index | archive | help
I finally worked through the details of getting apache-ssl updated to 1.3.26
withough using the port for apache-ssl since it's not been updated yet and I
thought I'd share.

   get the source for apache 1.3.26 from www.apache.org and the
      source for the apache-ssl from www.apache-ssl.org
   unpack apache
   cd into the apache directory
   unpack apache-ssl
   ./FixPatch
   answer "y" to apply the patches
   ./configure.scr (see atached script, basically right out of the old
Makefile)
   make
   make install

configure.scr
#!/bin/sh
PREFIX="/usr/local"
PERL="/usr/bin/perl5"

./configure     --prefix=$PREFIX \
                --server-gid=nogroup \
                --with-perl=$PERL \
                --with-layout=GNU \
                --suexec-docroot=$PREFIX/www/data \
                --without-confadjust \
                --enable-shared=remain \
                --enable-module=most \
                --enable-module=auth_db \
                --disable-module=auth_dbm \
                --sysconfdir=$PREFIX/etc/apache \
                --includedir=$PREFIX/include/apache \
                --localstatedir=/var \
                --datadir=$PREFIX/www \
                --proxycachedir=$PREFIX/www/proxy \
                --libexecdir=$PREFIX/libexec/apache

Peter Brezny
SysAdmin Services Inc.


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?NFBBKAEAALGGGFKINBLAIEJOCDAA.peter>