----------------------------------------------------------------
BEFORE YOU POST, search the faq at <http://java.apache.org/faq/>
WHEN YOU POST, include all relevant version numbers, log files,
and configuration files.  Don't make us guess your problem!!!
----------------------------------------------------------------

on 11/23/99 2:31 PM, Mike Engelhart <[EMAIL PROTECTED]> wrote:

> My thoughts exactly :-)
> 
> Any idea what order of operations I need to do this to get both SSL and
> JServ statically compiled?  I tried it a few different ways and both
> configure scripts (ssl and jserv) work fine but when I try and run make in
> the JServ source directory I get recursive errors (missing header files).  I
> also tried configuring apache first and then configuring ssl and jserv and
> the same problem occurred.
> 
> mike

Note that I'm using the latest CVS of Apache JServ. I highly recommend it.
Everything builds without errors on my systems.

This is my apache build script:

#!/bin/sh

PRODUCT=/products/apache/src/apache_1.3.9

cd $PRODUCT

SSL_BASE=../openssl-0.9.4 \
RSA_BASE=../rsaref-2.0/local \
EAPI_MM=../mm-1.0.9 \
./configure \
"--with-layout=Apache" \
"--prefix=/products/apache/sol" \
"--includedir=/products/apache/sol/include/apache" \
"--enable-module=rewrite" \
"--enable-module=auth_dbm" \
"--enable-module=headers" \
"--enable-module=info" \
"--enable-module=log_agent" \
"--enable-module=log_referer" \
"--enable-module=mmap_static" \
"--enable-module=unique_id" \
"--activate-module=src/modules/auth_mysql/libauth_mysql.a" \
"--activate-module=src/modules/jserv/libjserv.a" \
"--activate-module=src/modules/php3/libphp3.a" \
"--activate-module=src/modules/ssl/libssl.a" \
"$@"
make install

this is my jserv build script:

#!/bin/sh

PACKAGE=/products/jserv/src/ApacheJServ-1.1b3

PREFIX=/products/jserv/sol
APACHE_SRC=../../../apache/src/apache_1.3.9

CURR=`pwd`

cd $PACKAGE
aclocal
automake
autoconf

./configure \
--prefix=$PREFIX \
--with-apache-src=$APACHE_SRC \
--with-jdk-home=/usr/java1.2 \
--with-javac=/products/jikes/sol/bin/jikes \
--with-JSDK=/products/classes/jsdk/jsdk.jar \
--disable-debugging \
--enable-apache-config=no



--
--------------------------------------------------------------
Please read the FAQ! <http://java.apache.org/faq/>
To subscribe:        [EMAIL PROTECTED]
To unsubscribe:      [EMAIL PROTECTED]
Archives and Other:  <http://java.apache.org/main/mail.html>
Problems?:           [EMAIL PROTECTED]

Reply via email to