-----------------------------
Please read the FAQ!
<http://java.apache.org/faq/>
-----------------------------

> Please let me know if anyone has any tips on getting SSLeay/OpenSSL and JServ
1.0
> working together.

I got it all working on working-dogs.com just fine. Below are my scripts for
building things...

[33] admin [/products/apache/src] ?> dir
total 35780
drwxr-xr-x   9 root     other        512 Aug 24 15:45 ./
drwxr-xr-x   4 root     other        512 Jan 13  1999 ../
-rw-rw-r--   1 root     other        274 Jul 16 17:58 README
drwxr-xr-x   8 161      staff       1024 Aug 25 16:20 apache_1.3.9/
-rw-rw-r--   1 root     other    6225920 Aug 19 12:17 apache_1.3.9.tar
-rwxr-xr-x   1 root     other       1328 Aug 24 15:46 buildapache*
-rw-r--r--   1 root     other        307 Jul 15 16:12 buildeverything
-rwxrw-r--   1 root     other         56 Jul 15 14:08 buildmm*
-rwxrw-r--   1 root     other         75 Aug 24 15:45 buildmodssl*
-rwxrw-r--   1 root     other         91 Aug 24 15:46 buildopenssl*
-rwxrw-r--   1 root     other         93 Jul 15 14:09 buildrsaref*
drwxrwxr-x   3 root     root        1536 Jul 15 15:17 mm-1.0.9/
-rw-rw-r--   1 root     other     604160 Jul 15 14:07 mm-1.0.9.tar
drwxrwxr-x  10 root     root        1024 Aug 25 16:20 mod_ssl-2.4.0-1.3.9/
-rw-rw-r--   1 root     other    2498560 Aug 24 15:40
mod_ssl-2.4.0-1.3.9.tar
drwxr-xr-x   3 root     other        512 Apr  1 16:34 modules/
-rw-rw-r--   1 root     other     204800 Jul 26 17:44 modules.tar
drwxrwxr-x   5 root     other        512 Aug 24 15:40 old/
drwxrwxr-x  24 root     root        1024 Aug 24 15:53 openssl-0.9.4/
-rw-rw-r--   1 root     other    8724480 Aug  9 03:58 openssl-0.9.4.tar
drwxrwxr-x   7 root     other        512 Jul 15 12:59 rsaref-2.0/
[34] admin [/products/apache/src] ?> more buildmm
cd mm-1.0.9

./configure --disable-shared

make

cd ..

[35] admin [/products/apache/src] ?> more buildmodssl
cd mod_ssl-2.4.0-1.3.9

./configure \
--with-apache=../apache_1.3.9

cd ..
[36] admin [/products/apache/src] ?> more buildopenssl
cd openssl-0.9.4

sh config \
        -L`pwd`/../rsaref-2.0/local/ rsaref

make

make test

cd ..
[37] admin [/products/apache/src] ?> more buildrsaref
cd rsaref-2.0

cp -rp install/unix local

cd local

make

mv rsaref.a librsaref.a

cd ../..

[38] admin [/products/apache/src] ?> more buildapache
#!/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/php3/libphp3.a" \
"--activate-module=src/modules/jserv/mod_jserv" \
"--activate-module=src/modules/ssl/libssl.a" \
"$@"

make

more buildjserv
#!/bin/sh

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

CURR=`pwd`

cd $PACKAGE
./configure \
--prefix=$PREFIX \
--with-apache-src=$APACHE_SRC \
--disable-debugging

echo "JServ: make install"
make install

cd $CURR


-jon



--
--------------------------------------------------------------
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