> > Thanks, this is my configuration: Windows NT 4 Server (Service > Pack 4), Apache 1.3.4, mod_ssl 2.2.4, OpenSSL 0.91c (compiled > with VC5 and MASM). I configured a server on a local ip > address 192.168.0.43 running HTTP on port 80 and HTTPS on > port 443. The certificate I used for this HTTPS server was > of course signed by our own services but nothing special > (root signs server cert). I installed two plain html pages > in the root (by some luck, I could reproduce the error > without using a ColdFusion page, Marc used a PHP page). > The first page is a simple form submitting via HTTPS > to a second page. > > When I load the first page with Netscape Communicator 4.5 > (on NT 4 Workstation Service Pack 4) and I submit the page, > I get the error: "An I/O error occurred during security > authorization. Please try your connection again". > > I've included page1.html, page2.html (the two pages) and > my httpd.conf. > > Again thanks for your help! > > Christian. > > PS: I'll check with Marc to give you his configuration. He > got the same error on Linux with a somewhat somewhat different > config. > My server config is: * Linux kernel 2.0.2 / glibc 2.0.7 / gcc 2.7.2.3 * openssl 0.9.1c * apache 1.3.4 * mod-ssl 2.2.4 * php 3.0.7 It is just an old test configuration thus it is not accessible from the internet. I put in attachement: * the script i used to install apache, and the install log. * the conf directory * the page that has the submit button. Netscape 4.0.8(on Linux/glibc) does not work either. Will also try the last openssl snapshot. If i can do something else please do not hesitate. Marc
#!/bin/bash
WWW_DIR=/www
MOD_SSL=mod_ssl-2.2.4-1.3.4
APACHE=apache_1.3.4
SSL_BASE=/www/openssl
PHP=php-3.0.7
echo First you should remove /usr/local/ssl if you want to use an other SSL_BASE
cd /usr/src/$MOD_SSL
./configure --with-apache=../$APACHE
cd ../$APACHE
./configure --prefix=$WWW_DIR/apache
cd ../$PHP
./configure \
--enable-memory-limit=yes \
--enable-debug=no \
--with-apache=../$APACHE \
--with-ldap \
--with-oracle \
--prefix=$WWW_DIR/php
make
make install
cd ../$APACHE
SSL_BASE=$SSL_BASE \
./configure \
--prefix=$WWW_DIR/apache \
--activate-module=src/modules/php3/libphp3.a \
--enable-shared=ssl \
--enable-module=ssl \
--enable-module=php3
make
make install
First you should remove /usr/local/ssl if you want to use an other SSL_BASE
Configuring [1mmod_ssl/2.2.4[m for [1mApache/1.3.4[m
+ Apache location: ../apache_1.3.4 (Version 1.3.4)
+ Auxiliary patch tool: ./etc/patch/patch (local)
+ Applying packages to Apache source tree:
o Extended API (EAPI)
o Distribution Documents
o SSL Module Source
o SSL Support
o SSL Configuration Additions
o SSL Module Documentation
Done: source extension and patches successfully applied.
Now proceed with the following commands (Bourne-Shell syntax):
$ cd ../apache_1.3.4
$ SSL_BASE=/path/to/openssl ./configure ... --enable-module=ssl
$ make
$ make certificate
$ make install
Configuring for Apache, Version 1.3.4
+ using installation path layout: Apache (config.layout)
Creating Makefile
Creating Configuration.apaci in src
Creating Makefile in src
+ configured for Linux platform
+ setting C compiler to gcc
+ setting C pre-processor to gcc -E
+ checking for system header files
+ adding selected modules
+ doing sanity check on compiler and options
Creating Makefile in src/support
Creating Makefile in src/main
Creating Makefile in src/ap
Creating Makefile in src/regex
Creating Makefile in src/os/unix
Creating Makefile in src/modules/standard
loading cache ./config.cache
checking whether build environment is sane... yes
checking whether to enable maintainer-specific portions of Makefiles... no
checking for bison... (cached) bison -y
checking bison version... 1.25 (ok)
checking for gcc... (cached) gcc
checking whether the C compiler (gcc ) works... yes
checking whether the C compiler (gcc ) is a cross-compiler... no
checking whether we are using GNU C... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for ranlib... (cached) ranlib
checking whether gcc and cc understand -c and -o together... (cached) yes
checking for perl... (cached) /usr/bin/perl
checking if compiler supports -R... (cached) no
checking if compiler supports -Wl,-rpath,... (cached) yes
checking for sendmail... (cached) /usr/sbin/sendmail
checking for gethostname in -lnsl... (cached) yes
checking for socket in -lc... (cached) yes
checking for gethostbyaddr in -lc... (cached) yes
checking for crypt in -lc... (cached) no
checking for crypt in -lcrypt... (cached) yes
checking for dlopen in -lc... (cached) no
checking for dlopen in -ldl... (cached) yes
checking for getrusage in -lc... (cached) yes
checking for sin in -lc... (cached) no
checking for sin in -lm... (cached) yes
checking for res_search in -lsocket... (cached) no
checking for res_search in -lresolv... (cached) yes
checking for pam_start in -lpam... (cached) yes
checking how to run the C preprocessor... (cached) gcc -E
checking for ANSI C header files... (cached) yes
checking for dirent.h that defines DIR... (cached) yes
checking for opendir in -ldir... (cached) no
checking for fclose declaration... ok
checking for fcntl.h... (cached) yes
checking for unistd.h... (cached) yes
checking for crypt.h... (cached) yes
checking for sys/file.h... (cached) yes
checking for memory.h... (cached) yes
checking for pwd.h... (cached) yes
checking for grp.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking for sys/wait.h... (cached) yes
checking for syslog.h... (cached) yes
checking for string.h... (cached) yes
checking for sys/varargs.h... (cached) no
checking for stdarg.h... (cached) yes
checking for sys/resource.h... (cached) yes
checking for sys/time.h... (cached) yes
checking for signal.h... (cached) yes
checking for netinet/in.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for limits.h... (cached) yes
checking for sys/types.h... (cached) yes
checking for sys/statvfs.h... (cached) no
checking for sys/statfs.h... (cached) yes
checking for unix.h... (cached) no
checking whether struct tm is in sys/time.h or time.h... (cached) time.h
checking for tm_zone in struct tm... (cached) yes
checking for struct flock... yes
checking for st_blksize in struct stat... (cached) yes
checking for st_blocks in struct stat... (cached) yes
checking for st_rdev in struct stat... (cached) yes
checking for size_t... (cached) yes
checking for uid_t in sys/types.h... (cached) yes
checking for uint... (cached) yes
checking for ulong... (cached) yes
checking for vprintf... (cached) yes
checking for memcpy... (cached) yes
checking for memmove... (cached) yes
checking for strdup... (cached) yes
checking for strerror... (cached) yes
checking for strcasecmp... (cached) yes
checking for strstr... (cached) yes
checking for flock... (cached) yes
checking for lockf... (cached) yes
checking for putenv... (cached) yes
checking for tempnam... (cached) yes
checking for usleep... (cached) yes
checking for setlocale... (cached) yes
checking for gettimeofday... (cached) yes
checking for setvbuf... (cached) yes
checking for srand48... (cached) yes
checking for lrand48... (cached) yes
checking for srandom... (cached) yes
checking for random... (cached) yes
checking for link... (cached) yes
checking for symlink... (cached) yes
checking for regcomp... (cached) yes
checking for getlogin... (cached) yes
checking for cuserid... (cached) yes
checking for vsnprintf... (cached) yes
checking for snprintf... (cached) yes
checking for gcvt... (cached) yes
checking for utime... (cached) yes
checking for crypt... (cached) yes
checking for setitimer... (cached) yes
checking for rint... (cached) yes
checking for unsetenv... (cached) yes
checking for strftime... (cached) yes
checking for setsockopt... (cached) yes
checking for tzset... (cached) yes
checking for statvfs... (cached) no
checking for statfs... (cached) yes
checking for inet_aton... (cached) yes
checking whether utime accepts a null argument... (cached) yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking for broken sprintf... ok
checking for getopt... (cached) yes
checking for standard DES crypt... yes
checking for extended DES crypt... no
checking for MD5 crypt... yes
checking for Blowfish crypt... no
checking for Apache module support via DSO through APXS... no
checking for Apache module support via DSO through APACI... no
checking for Apache module support... yes - Apache 1.3.x
checking whether to use bundled regex library... yes
checking for gdbm_open in -lgdbm... (cached) yes
checking preferred dbm library... gdbm chosen
checking for gdbm.h... (cached) yes
checking for mod_charset compatibility option... no
checking for fhttpd module support... no
checking for IMAP support... no
checking for ASPELL support... no
checking whether to include GD support... checking for gdImageLine in -lgd... (cached)
no
checking for gdImageString16 in -lgd... (cached) no
checking whether to include GNU gettext support... no
checking whether to include ImageMagick support... no
checking for Oracle support... yes
checking Oracle version... 8.0
checking for iODBC support... no
checking for OpenLink ODBC support... no
checking for Adabas support... no
checking for Sybase support... no
checking for Sybase-CT support... no
checking for MySQL support... no
checking for mSQL support... no
checking for PostgresSQL support... no
checking for Solid support... no
checking for Empress support... no
checking for LDAP support... yes
checking for Cybercash MCK support... no
checking for SNMP support... no
checking for Velocis support... no
checking for Informix support... no
checking for InterBase support... no
checking for a custom ODBC support... no
checking for Hyperwave support... no
checking for XML support... no
checking whether to include YP support... no
checking whether to include zlib support... no
checking whether to include pdflib support... no
checking whether to include fdftk support... no
checking whether to include the bundled dbase library... no
checking whether to include the bundled filePro support... no
checking whether to enable DAV support through mod_dav... no
checking whether to enable unified ODBC support... no
checking whether to use a configuration file... yes
checking whether to include debugging symbols... no
checking whether to enable safe mode by default... no
checking for safe mode exec dir... /usr/local/php/bin
checking whether to enable track_vars variables by default... no
checking whether to enable magic quotes by default... no
checking whether to enable remote debugger support... no
checking whether to enable bc style precision math functions... yes
checking whether to enable a memory limit... yes
checking whether to enable short tags by default... yes
checking whether to enable the URL-aware fopen wrapper... yes
checking whether to enable System V semaphore support... no
checking whether to enable System V shared memory support... no
checking whether to enable displaying source support... yes
creating ./config.status
creating Makefile
creating build-defs.h
creating stamp-h
creating libphp3.module
creating doc/Makefile
creating doc/version.ent
creating doc/checkdoc
creating extra/gd/bdf2gdfont
creating regex/Makefile
creating dbase/Makefile
creating config.h
config.h is unchanged
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
language-parser.tab.c -o language-parser.tab.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -w -c
language-scanner.c
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
main.c -o main.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
php3_hash.c -o php3_hash.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
operators.c -o operators.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
variables.c -o variables.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
token_cache.c -o token_cache.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
stack.c -o stack.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
internal_functions.c -o internal_functions.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
snprintf.c -o snprintf.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
php3_sprintf.c -o php3_sprintf.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
alloc.c -o alloc.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
list.c -o list.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
highlight.c -o highlight.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
debugger.c -o debugger.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
configuration-parser.tab.c -o configuration-parser.tab.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -w -c
configuration-scanner.c
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
request_info.c -o request_info.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
safe_mode.c -o safe_mode.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
fopen-wrappers.c -o fopen-wrappers.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
constants.c -o constants.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
php3_realpath.c -o php3_realpath.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
alloca.c -o alloca.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
php_compat.c -o php_compat.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/adabasd.c -o functions/adabasd.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/aspell.c -o functions/aspell.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/apache.c -o functions/apache.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/fhttpd.c -o functions/fhttpd.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/basic_functions.c -o functions/basic_functions.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/crypt.c -o functions/crypt.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/datetime.c -o functions/datetime.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/db.c -o functions/db.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/dbase.c -o functions/dbase.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/dir.c -o functions/dir.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/dl.c -o functions/dl.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/dns.c -o functions/dns.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/exec.c -o functions/exec.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/file.c -o functions/file.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/filepro.c -o functions/filepro.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/filestat.c -o functions/filestat.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/formatted_print.c -o functions/formatted_print.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/fsock.c -o functions/fsock.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/gd.c -o functions/gd.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/head.c -o functions/head.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/html.c -o functions/html.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/image.c -o functions/image.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/imap.c -o functions/imap.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/link.c -o functions/link.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/mail.c -o functions/mail.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/math.c -o functions/math.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/iptc.c -o functions/iptc.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/md5.c -o functions/md5.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/microtime.c -o functions/microtime.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/mime.c -o functions/mime.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/msql.c -o functions/msql.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/mysql.c -o functions/mysql.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/oracle.c -o functions/oracle.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/oci8.c -o functions/oci8.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/pack.c -o functions/pack.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/pageinfo.c -o functions/pageinfo.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/pgsql.c -o functions/pgsql.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/magick.c -o functions/magick.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/post.c -o functions/post.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/rand.c -o functions/rand.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/reg.c -o functions/reg.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/solid.c -o functions/solid.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/soundex.c -o functions/soundex.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/string.c -o functions/string.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/syslog.c -o functions/syslog.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/type.c -o functions/type.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/uniqid.c -o functions/uniqid.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/sybase.c -o functions/sybase.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/sybase-ct.c -o functions/sybase-ct.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/url.c -o functions/url.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/base64.c -o functions/base64.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/info.c -o functions/info.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/bcmath.c -o functions/bcmath.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -w -c
functions/number.c -o functions/number.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/xml.c -o functions/xml.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/unified_odbc.c -o functions/unified_odbc.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/ldap.c -o functions/ldap.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/browscap.c -o functions/browscap.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/velocis.c -o functions/velocis.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/gdttf.c -o functions/gdttf.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/gdcache.c -o functions/gdcache.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/zlib.c -o functions/zlib.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/COM.c -o functions/COM.o
(if test ; then esql -e functions/ifx.ec; mv ifx.c functions; else touch
functions/ifx.c; fi)
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/ifx.c -o functions/ifx.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/pdf.c -o functions/pdf.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/hw.c -o functions/hw.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/hg_comm.c -o functions/hg_comm.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/dlist.c -o functions/dlist.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/fdf.c -o functions/fdf.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/wddx.c -o functions/wddx.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/wddx_a.c -o functions/wddx_a.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/snmp.c -o functions/snmp.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/var.c -o functions/var.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/interbase.c -o functions/interbase.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/quot_print.c -o functions/quot_print.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/cyr_convert.c -o functions/cyr_convert.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/sysvsem.c -o functions/sysvsem.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/dav.c -o functions/dav.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/sysvshm.c -o functions/sysvshm.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/gettext.c -o functions/gettext.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/php3_mckcrypt.c -o functions/php3_mckcrypt.o
gcc -g -O2 -O2 -I. -I. -I/mnt/u01/app/oracle/product/8.0.5/rdbms/demo
-I/mnt/u01/app/oracle/product/8.0.5/network/public
-I/mnt/u01/app/oracle/product/8.0.5/plsql/public -I../apache_1.3.4/src/include
-I../apache_1.3.4/src/os/unix -I/usr/local/include -c
functions/yp.c -o functions/yp.o
ar rc libmodphp3.a language-parser.tab.o language-scanner.o main.o php3_hash.o
operators.o variables.o token_cache.o stack.o internal_functions.o snprintf.o
php3_sprintf.o alloc.o list.o highlight.o debugger.o configuration-parser.tab.o
configuration-scanner.o request_info.o safe_mode.o fopen-wrappers.o constants.o
php3_realpath.o alloca.o php_compat.o functions/adabasd.o functions/aspell.o
functions/apache.o functions/fhttpd.o functions/basic_functions.o functions/crypt.o
functions/datetime.o functions/db.o functions/dbase.o functions/dir.o functions/dl.o
functions/dns.o functions/exec.o functions/file.o functions/filepro.o
functions/filestat.o functions/formatted_print.o functions/fsock.o functions/gd.o
functions/head.o functions/html.o functions/image.o functions/imap.o functions/link.o
functions/mail.o functions/math.o functions/iptc.o functions/md5.o
functions/microtime.o functions/mime.o functions/msql.o functions/mysql.o
functions/oracle.o functions/oci8.o functions/pack.o functions/pageinfo.o
functions/pgsql.o functions/magick.o functions/post.o functions/rand.o functions/reg.o
functions/solid.o functions/soundex.o functions/string.o functions/syslog.o
functions/type.o functions/uniqid.o functions/sybase.o functions/sybase-ct.o
functions/url.o functions/base64.o functions/info.o functions/bcmath.o
functions/number.o functions/xml.o functions/unified_odbc.o functions/ldap.o
functions/browscap.o functions/velocis.o functions/gdttf.o functions/gdcache.o
functions/zlib.o functions/COM.o functions/ifx.o functions/pdf.o functions/hw.o
functions/hg_comm.o functions/dlist.o functions/fdf.o functions/wddx.o
functions/wddx_a.o functions/snmp.o functions/var.o functions/interbase.o
functions/quot_print.o functions/cyr_convert.o functions/sysvsem.o functions/dav.o
functions/sysvshm.o functions/gettext.o functions/php3_mckcrypt.o functions/yp.o
ranlib libmodphp3.a
mkdir -p ../apache_1.3.4/src/modules/php3; cp libmodphp3.a ./mod_php3.*
./php_version.h ../apache_1.3.4/src/modules/php3; cp ./apMakefile.tmpl
../apache_1.3.4/src/modules/php3/Makefile.tmpl; cp ./apMakefile.libdir
../apache_1.3.4/src/modules/php3/Makefile.libdir; cp libphp3.module
../apache_1.3.4/src/modules/php3
Configuring for Apache, Version 1.3.4
+ using installation path layout: Apache (config.layout)
+ activated php3 module (modules/php3/libphp3.a)
Creating Makefile
Creating Configuration.apaci in src
+ enabling mod_so for DSO support
Creating Makefile in src
+ configured for Linux platform
+ setting C compiler to gcc
+ setting C pre-processor to gcc -E
+ checking for system header files
+ adding selected modules
o ssl_module uses ConfigStart/End
+ SSL interface: mod_ssl/2.2.4
+ SSL interface build type: DSO
+ SSL interface compatibility: enabled
+ SSL interface experimental code: disabled
+ SSL interface vendor extensions: disabled
+ SSL interface plugin: Vendor DBM (libndbm)
+ SSL library path: /www/openssl
+ SSL library type: installed package (stand-alone)
+ SSL library version: OpenSSL 0.9.1c 23-Dec-1998
+ SSL library plugin mode: none
o php3_module uses ConfigStart/End
+ enabling Extended API (EAPI)
+ using -ldl for vendor DSO support
+ doing sanity check on compiler and options
Creating Makefile in src/support
Creating Makefile in src/main
Creating Makefile in src/ap
Creating Makefile in src/regex
Creating Makefile in src/os/unix
Creating Makefile in src/modules/standard
Creating Makefile in src/modules/ssl
Creating Makefile in src/modules/php3
===> src
make[1]: Entering directory `/usr/src/apache_1.3.4'
make[2]: Entering directory `/usr/src/apache_1.3.4/src'
===> src/regex
gcc -I. -I../os/unix -I../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX -DEAPI
`../apaci` -DPOSIX_MISTAKE -c regcomp.c -o regcomp.o
gcc -I. -I../os/unix -I../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX -DEAPI
`../apaci` -DPOSIX_MISTAKE -c regexec.c -o regexec.o
gcc -I. -I../os/unix -I../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX -DEAPI
`../apaci` -DPOSIX_MISTAKE -c regerror.c -o regerror.o
gcc -I. -I../os/unix -I../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX -DEAPI
`../apaci` -DPOSIX_MISTAKE -c regfree.c -o regfree.o
rm -f libregex.a
ar cr libregex.a regcomp.o regexec.o regerror.o regfree.o
ranlib libregex.a
<=== src/regex
===> src/os/unix
gcc -c -I../../os/unix -I../../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX
-DEAPI `../../apaci` os.c
gcc -c -I../../os/unix -I../../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX
-DEAPI `../../apaci` os-inline.c
rm -f libos.a
ar cr libos.a os.o os-inline.o
ranlib libos.a
<=== src/os/unix
===> src/ap
gcc -c -I../os/unix -I../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX -DEAPI
`../apaci` ap_execve.c
gcc -c -I../os/unix -I../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX -DEAPI
`../apaci` ap_cpystrn.c
gcc -c -I../os/unix -I../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX -DEAPI
`../apaci` ap_signal.c
gcc -c -I../os/unix -I../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX -DEAPI
`../apaci` ap_slack.c
gcc -c -I../os/unix -I../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX -DEAPI
`../apaci` ap_snprintf.c
gcc -c -I../os/unix -I../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX -DEAPI
`../apaci` ap_fnmatch.c
gcc -c -I../os/unix -I../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX -DEAPI
`../apaci` ap_hook.c
gcc -c -I../os/unix -I../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX -DEAPI
`../apaci` ap_ctx.c
rm -f libap.a
ar cr libap.a ap_execve.o ap_cpystrn.o ap_signal.o ap_slack.o ap_snprintf.o
ap_fnmatch.o ap_hook.o ap_ctx.o
ranlib libap.a
<=== src/ap
===> src/main
gcc -c -I../os/unix -I../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX -DEAPI
`../apaci` gen_test_char.c
gcc -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX -DEAPI `../apaci` -o gen_test_char
gen_test_char.o -Lmodules/php3 -L../modules/php3 -L../../modules/php3 -lmodphp3
-L/mnt/u01/app/oracle/product/8.0.5/lib
-Wl,-rpath,/mnt/u01/app/oracle/product/8.0.5/lib -lclntsh -lpsa -lcore4 -lnlsrtl3
-lclntsh -lm -L/usr/local/lib -Wl,-rpath,/usr/local/lib -lldap -llber
-lpam -lm -ldl -lcrypt -lnsl -lresolv -lm -lcrypt -lgdbm -ldl
./gen_test_char >test_char.h
gcc -c -I../os/unix -I../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX -DEAPI
`../apaci` gen_uri_delims.c
gcc -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX -DEAPI `../apaci` -o gen_uri_delims
gen_uri_delims.o -Lmodules/php3 -L../modules/php3 -L../../modules/php3 -lmodphp3
-L/mnt/u01/app/oracle/product/8.0.5/lib
-Wl,-rpath,/mnt/u01/app/oracle/product/8.0.5/lib -lclntsh -lpsa -lcore4 -lnlsrtl3
-lclntsh -lm -L/usr/local/lib -Wl,-rpath,/usr/local/lib -lldap -llber
-lpam -lm -ldl -lcrypt -lnsl -lresolv -lm -lcrypt -lgdbm -ldl
./gen_uri_delims >uri_delims.h
gcc -c -I../os/unix -I../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX -DEAPI
`../apaci` alloc.c
gcc -c -I../os/unix -I../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX -DEAPI
`../apaci` buff.c
gcc -c -I../os/unix -I../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX -DEAPI
`../apaci` http_config.c
gcc -c -I../os/unix -I../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX -DEAPI
`../apaci` http_core.c
gcc -c -I../os/unix -I../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX -DEAPI
`../apaci` http_log.c
gcc -c -I../os/unix -I../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX -DEAPI
`../apaci` http_main.c
gcc -c -I../os/unix -I../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX -DEAPI
`../apaci` http_protocol.c
gcc -c -I../os/unix -I../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX -DEAPI
`../apaci` http_request.c
gcc -c -I../os/unix -I../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX -DEAPI
`../apaci` http_vhost.c
gcc -c -I../os/unix -I../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX -DEAPI
`../apaci` util.c
gcc -c -I../os/unix -I../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX -DEAPI
`../apaci` util_date.c
gcc -c -I../os/unix -I../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX -DEAPI
`../apaci` util_script.c
gcc -c -I../os/unix -I../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX -DEAPI
`../apaci` util_uri.c
gcc -c -I../os/unix -I../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX -DEAPI
`../apaci` util_md5.c
gcc -c -I../os/unix -I../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX -DEAPI
`../apaci` md5c.c
gcc -c -I../os/unix -I../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX -DEAPI
`../apaci` rfc1413.c
rm -f libmain.a
ar cr libmain.a alloc.o buff.o http_config.o http_core.o http_log.o http_main.o
http_protocol.o http_request.o http_vhost.o util.o util_date.o util_script.o
util_uri.o util_md5.o md5c.o rfc1413.o
ranlib libmain.a
<=== src/main
===> src/modules
===> src/modules/standard
gcc -c -I../../os/unix -I../../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX
-DEAPI `../../apaci` mod_env.c
gcc -c -I../../os/unix -I../../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX
-DEAPI `../../apaci` mod_log_config.c
gcc -c -I../../os/unix -I../../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX
-DEAPI `../../apaci` mod_mime.c
gcc -c -I../../os/unix -I../../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX
-DEAPI `../../apaci` mod_negotiation.c
gcc -c -I../../os/unix -I../../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX
-DEAPI `../../apaci` mod_status.c
gcc -c -I../../os/unix -I../../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX
-DEAPI `../../apaci` mod_include.c
gcc -c -I../../os/unix -I../../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX
-DEAPI `../../apaci` mod_autoindex.c
gcc -c -I../../os/unix -I../../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX
-DEAPI `../../apaci` mod_dir.c
gcc -c -I../../os/unix -I../../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX
-DEAPI `../../apaci` mod_cgi.c
gcc -c -I../../os/unix -I../../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX
-DEAPI `../../apaci` mod_asis.c
gcc -c -I../../os/unix -I../../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX
-DEAPI `../../apaci` mod_imap.c
gcc -c -I../../os/unix -I../../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX
-DEAPI `../../apaci` mod_actions.c
gcc -c -I../../os/unix -I../../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX
-DEAPI `../../apaci` mod_userdir.c
gcc -c -I../../os/unix -I../../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX
-DEAPI `../../apaci` mod_alias.c
gcc -c -I../../os/unix -I../../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX
-DEAPI `../../apaci` mod_access.c
gcc -c -I../../os/unix -I../../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX
-DEAPI `../../apaci` mod_auth.c
gcc -c -I../../os/unix -I../../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX
-DEAPI `../../apaci` mod_so.c
gcc -c -I../../os/unix -I../../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX
-DEAPI `../../apaci` mod_setenvif.c
rm -f libstandard.a
ar cr libstandard.a mod_env.o mod_log_config.o mod_mime.o mod_negotiation.o
mod_status.o mod_include.o mod_autoindex.o mod_dir.o mod_cgi.o mod_asis.o mod_imap.o
mod_actions.o mod_userdir.o mod_alias.o mod_access.o mod_auth.o mod_so.o
mod_setenvif.o
ranlib libstandard.a
<=== src/modules/standard
===> src/modules/ssl
gcc -c -I../../os/unix -I../../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX
-DEAPI `../../apaci` -fpic -DSHARED_MODULE -DSSL_COMPAT -I/www/openssl/include
-DMOD_SSL_VERSION=\"2.2.4\" mod_ssl.c && mv mod_ssl.o mod_ssl.lo
gcc -c -I../../os/unix -I../../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX
-DEAPI `../../apaci` -fpic -DSHARED_MODULE -DSSL_COMPAT -I/www/openssl/include
-DMOD_SSL_VERSION=\"2.2.4\" ssl_engine_config.c && mv ssl_engine_config.o
ssl_engine_config.lo
gcc -c -I../../os/unix -I../../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX
-DEAPI `../../apaci` -fpic -DSHARED_MODULE -DSSL_COMPAT -I/www/openssl/include
-DMOD_SSL_VERSION=\"2.2.4\" ssl_engine_compat.c && mv ssl_engine_compat.o
ssl_engine_compat.lo
gcc -c -I../../os/unix -I../../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX
-DEAPI `../../apaci` -fpic -DSHARED_MODULE -DSSL_COMPAT -I/www/openssl/include
-DMOD_SSL_VERSION=\"2.2.4\" ssl_engine_ds.c && mv ssl_engine_ds.o ssl_engine_ds.lo
gcc -c -I../../os/unix -I../../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX
-DEAPI `../../apaci` -fpic -DSHARED_MODULE -DSSL_COMPAT -I/www/openssl/include
-DMOD_SSL_VERSION=\"2.2.4\" ssl_engine_init.c && mv ssl_engine_init.o
ssl_engine_init.lo
gcc -c -I../../os/unix -I../../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX
-DEAPI `../../apaci` -fpic -DSHARED_MODULE -DSSL_COMPAT -I/www/openssl/include
-DMOD_SSL_VERSION=\"2.2.4\" ssl_engine_kernel.c && mv ssl_engine_kernel.o
ssl_engine_kernel.lo
gcc -c -I../../os/unix -I../../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX
-DEAPI `../../apaci` -fpic -DSHARED_MODULE -DSSL_COMPAT -I/www/openssl/include
-DMOD_SSL_VERSION=\"2.2.4\" ssl_engine_rand.c && mv ssl_engine_rand.o
ssl_engine_rand.lo
gcc -c -I../../os/unix -I../../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX
-DEAPI `../../apaci` -fpic -DSHARED_MODULE -DSSL_COMPAT -I/www/openssl/include
-DMOD_SSL_VERSION=\"2.2.4\" ssl_engine_io.c && mv ssl_engine_io.o ssl_engine_io.lo
gcc -c -I../../os/unix -I../../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX
-DEAPI `../../apaci` -fpic -DSHARED_MODULE -DSSL_COMPAT -I/www/openssl/include
-DMOD_SSL_VERSION=\"2.2.4\" ssl_engine_log.c && mv ssl_engine_log.o ssl_engine_log.lo
gcc -c -I../../os/unix -I../../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX
-DEAPI `../../apaci` -fpic -DSHARED_MODULE -DSSL_COMPAT -I/www/openssl/include
-DMOD_SSL_VERSION=\"2.2.4\" ssl_engine_mutex.c && mv ssl_engine_mutex.o
ssl_engine_mutex.lo
gcc -c -I../../os/unix -I../../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX
-DEAPI `../../apaci` -fpic -DSHARED_MODULE -DSSL_COMPAT -I/www/openssl/include
-DMOD_SSL_VERSION=\"2.2.4\" ssl_engine_pphrase.c && mv ssl_engine_pphrase.o
ssl_engine_pphrase.lo
gcc -c -I../../os/unix -I../../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX
-DEAPI `../../apaci` -fpic -DSHARED_MODULE -DSSL_COMPAT -I/www/openssl/include
-DMOD_SSL_VERSION=\"2.2.4\" ssl_engine_scache.c && mv ssl_engine_scache.o
ssl_engine_scache.lo
gcc -c -I../../os/unix -I../../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX
-DEAPI `../../apaci` -fpic -DSHARED_MODULE -DSSL_COMPAT -I/www/openssl/include
-DMOD_SSL_VERSION=\"2.2.4\" ssl_engine_vars.c && mv ssl_engine_vars.o
ssl_engine_vars.lo
gcc -c -I../../os/unix -I../../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX
-DEAPI `../../apaci` -fpic -DSHARED_MODULE -DSSL_COMPAT -I/www/openssl/include
-DMOD_SSL_VERSION=\"2.2.4\" ssl_engine_ext.c && mv ssl_engine_ext.o ssl_engine_ext.lo
gcc -c -I../../os/unix -I../../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX
-DEAPI `../../apaci` -fpic -DSHARED_MODULE -DSSL_COMPAT -I/www/openssl/include
-DMOD_SSL_VERSION=\"2.2.4\" ssl_expr.c && mv ssl_expr.o ssl_expr.lo
gcc -c -I../../os/unix -I../../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX
-DEAPI `../../apaci` -fpic -DSHARED_MODULE -DSSL_COMPAT -I/www/openssl/include
-DMOD_SSL_VERSION=\"2.2.4\" ssl_expr_scan.c && mv ssl_expr_scan.o ssl_expr_scan.lo
gcc -c -I../../os/unix -I../../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX
-DEAPI `../../apaci` -fpic -DSHARED_MODULE -DSSL_COMPAT -I/www/openssl/include
-DMOD_SSL_VERSION=\"2.2.4\" ssl_expr_parse.c && mv ssl_expr_parse.o ssl_expr_parse.lo
gcc -c -I../../os/unix -I../../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX
-DEAPI `../../apaci` -fpic -DSHARED_MODULE -DSSL_COMPAT -I/www/openssl/include
-DMOD_SSL_VERSION=\"2.2.4\" ssl_expr_eval.c && mv ssl_expr_eval.o ssl_expr_eval.lo
gcc -c -I../../os/unix -I../../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX
-DEAPI `../../apaci` -fpic -DSHARED_MODULE -DSSL_COMPAT -I/www/openssl/include
-DMOD_SSL_VERSION=\"2.2.4\" ssl_util.c && mv ssl_util.o ssl_util.lo
gcc -c -I../../os/unix -I../../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX
-DEAPI `../../apaci` -fpic -DSHARED_MODULE -DSSL_COMPAT -I/www/openssl/include
-DMOD_SSL_VERSION=\"2.2.4\" ssl_util_ssl.c && mv ssl_util_ssl.o ssl_util_ssl.lo
gcc -c -I../../os/unix -I../../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX
-DEAPI `../../apaci` -fpic -DSHARED_MODULE -DSSL_COMPAT -I/www/openssl/include
-DMOD_SSL_VERSION=\"2.2.4\" ssl_util_sdbm.c && mv ssl_util_sdbm.o ssl_util_sdbm.lo
rm -f libssl.so
ld -L/www/openssl/lib -Bshareable -o libssl.so mod_ssl.lo ssl_engine_config.lo
ssl_engine_compat.lo ssl_engine_ds.lo ssl_engine_init.lo ssl_engine_kernel.lo
ssl_engine_rand.lo ssl_engine_io.lo ssl_engine_log.lo ssl_engine_mutex.lo
ssl_engine_pphrase.lo ssl_engine_scache.lo ssl_engine_vars.lo ssl_engine_ext.lo
ssl_expr.lo ssl_expr_scan.lo ssl_expr_parse.lo ssl_expr_eval.lo ssl_util.lo
ssl_util_ssl.lo ssl_util_sdbm.lo -lndbm -lssl -lcrypto
-L/usr/lib/gcc-lib/i386-redhat-linux/2.7.2.3 -lgcc
<=== src/modules/ssl
===> src/modules/php3
gcc -c -I../../os/unix -I../../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX
-DEAPI `../../apaci` mod_php3.c
cp libmodphp3.a libphp3.a
ar r libphp3.a mod_php3.o
ranlib libphp3.a
<=== src/modules/php3
<=== src/modules
gcc -c -I./os/unix -I./include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX -DEAPI
`./apaci` modules.c
gcc -c -I./os/unix -I./include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX -DEAPI
`./apaci` buildmark.c
gcc -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX -DEAPI `./apaci` -rdynamic \
-o httpd buildmark.o modules.o modules/standard/libstandard.a
modules/php3/libphp3.a main/libmain.a ./os/unix/libos.a ap/libap.a regex/libregex.a
-Lmodules/php3 -L../modules/php3 -L../../modules/php3 -lmodphp3
-L/mnt/u01/app/oracle/product/8.0.5/lib
-Wl,-rpath,/mnt/u01/app/oracle/product/8.0.5/lib -lclntsh -lpsa -lcore4 -lnlsrtl3
-lclntsh -lm -L/usr/local/lib -Wl,-rpath,/usr/local/lib -lldap -llber
-lpam -lm -ldl -lcrypt -lnsl -lresolv -lm -lcrypt -lgdbm -ldl
make[2]: Leaving directory `/usr/src/apache_1.3.4/src'
make[1]: Leaving directory `/usr/src/apache_1.3.4'
make[1]: Entering directory `/usr/src/apache_1.3.4'
===> src/support
make[2]: Entering directory `/usr/src/apache_1.3.4/src/support'
gcc -c -I../os/unix -I../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX -DEAPI
`../apaci` htpasswd.c
gcc -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX -DEAPI `../apaci` htpasswd.o -o htpasswd
-L../os/unix -L../ap -los -lap -Lmodules/php3 -L../modules/php3
-L../../modules/php3 -lmodphp3 -L/mnt/u01/app/oracle/product/8.0.5/lib
-Wl,-rpath,/mnt/u01/app/oracle/product/8.0.5/lib -lclntsh -lpsa -lcore4 -lnlsrtl3
-lclntsh -lm -L/usr/local/lib -Wl,-rpath,/usr/local/lib -lldap -llber
-lpam -lm -ldl -lcrypt -lnsl -lresolv -lm -lcrypt -lgdbm -ldl
gcc -c -I../os/unix -I../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX -DEAPI
`../apaci` htdigest.c
gcc -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX -DEAPI `../apaci` htdigest.o -o htdigest
-L../os/unix -L../ap -los -lap -Lmodules/php3 -L../modules/php3
-L../../modules/php3 -lmodphp3 -L/mnt/u01/app/oracle/product/8.0.5/lib
-Wl,-rpath,/mnt/u01/app/oracle/product/8.0.5/lib -lclntsh -lpsa -lcore4 -lnlsrtl3
-lclntsh -lm -L/usr/local/lib -Wl,-rpath,/usr/local/lib -lldap -llber
-lpam -lm -ldl -lcrypt -lnsl -lresolv -lm -lcrypt -lgdbm -ldl
gcc -c -I../os/unix -I../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX -DEAPI
`../apaci` rotatelogs.c
gcc -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX -DEAPI `../apaci` rotatelogs.o -o
rotatelogs -L../os/unix -L../ap -los -lap -Lmodules/php3 -L../modules/php3
-L../../modules/php3 -lmodphp3 -L/mnt/u01/app/oracle/product/8.0.5/lib
-Wl,-rpath,/mnt/u01/app/oracle/product/8.0.5/lib -lclntsh -lpsa -lcore4 -lnlsrtl3
-lclntsh -lm -L/usr/local/lib -Wl,-rpath,/usr/local/lib -lldap -llber
-lpam -lm -ldl -lcrypt -lnsl -lresolv -lm -lcrypt -lgdbm -ldl
gcc -c -I../os/unix -I../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX -DEAPI
`../apaci` logresolve.c
gcc -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX -DEAPI `../apaci` logresolve.o -o
logresolve -L../os/unix -L../ap -los -lap -Lmodules/php3 -L../modules/php3
-L../../modules/php3 -lmodphp3 -L/mnt/u01/app/oracle/product/8.0.5/lib
-Wl,-rpath,/mnt/u01/app/oracle/product/8.0.5/lib -lclntsh -lpsa -lcore4 -lnlsrtl3
-lclntsh -lm -L/usr/local/lib -Wl,-rpath,/usr/local/lib -lldap -llber
-lpam -lm -ldl -lcrypt -lnsl -lresolv -lm -lcrypt -lgdbm -ldl
gcc -c -I../os/unix -I../include -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX -DEAPI
`../apaci` ab.c
gcc -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX -DEAPI `../apaci` ab.o -o ab
-L../os/unix -L../ap -los -lap -Lmodules/php3 -L../modules/php3 -L../../modules/php3
-lmodphp3 -L/mnt/u01/app/oracle/product/8.0.5/lib
-Wl,-rpath,/mnt/u01/app/oracle/product/8.0.5/lib -lclntsh -lpsa -lcore4 -lnlsrtl3
-lclntsh -lm -L/usr/local/lib -Wl,-rpath,/usr/local/lib -lldap -llber
-lpam -lm -ldl -lcrypt -lnsl -lresolv -lm -lcrypt -lgdbm -ldl
sed <apxs.pl >apxs \
-e 's%@TARGET@%httpd%g' \
-e 's%@CC@%gcc%g' \
-e 's%@CFLAGS@% -DLINUX=2 -DMOD_SSL=202104 -DUSE_HSREGEX -DEAPI `../apaci`%g' \
-e 's%@CFLAGS_SHLIB@%-fpic -DSHARED_MODULE%g' \
-e 's%@LD_SHLIB@%ld%g' \
-e 's%@LDFLAGS_SHLIB@%-Bshareable%g' \
-e 's%@LIBS_SHLIB@%%g' && chmod a+x apxs
make[2]: Leaving directory `/usr/src/apache_1.3.4/src/support'
<=== src/support
make[1]: Leaving directory `/usr/src/apache_1.3.4'
make[1]: Entering directory `/usr/src/apache_1.3.4'
+---------------------------------------------------------------------+
| Before you install the package you now should prepare the SSL |
| certificate system by running the 'make certificate' command. |
| For different situations the following variants are provided: |
| |
| % make certificate TYPE=dummy (dummy self-signed Snake Oil cert) |
| % make certificate TYPE=test (test cert signed by Snake Oil CA) |
| % make certificate TYPE=custom (custom cert signed by own CA) |
| % make certificate TYPE=existing (existing cert) |
| CRT=/path/to/your.crt [KEY=/path/to/your.key] |
| |
| Use TYPE=dummy when you're a vendor package maintainer, |
| the TYPE=test when you're an admin but want to do tests only, |
| the TYPE=custom when you're an admin willing to run a real server |
| and TYPE=existing when you're an admin who upgrades a server. |
| (The default is TYPE=test) |
| |
| Thanks for using Apache & mod_ssl. Ralf S. Engelschall |
| [EMAIL PROTECTED] |
| www.engelschall.com |
+---------------------------------------------------------------------+
make[1]: Leaving directory `/usr/src/apache_1.3.4'
<=== src
make[1]: Entering directory `/usr/src/apache_1.3.4'
===> [mktree: Creating Apache installation tree]
./src/helpers/mkdir.sh /www/apache/bin
./src/helpers/mkdir.sh /www/apache/bin
./src/helpers/mkdir.sh /www/apache/libexec
./src/helpers/mkdir.sh /www/apache/man/man1
./src/helpers/mkdir.sh /www/apache/man/man8
./src/helpers/mkdir.sh /www/apache/conf
./src/helpers/mkdir.sh /www/apache/conf/ssl.crt
./src/helpers/mkdir.sh /www/apache/conf/ssl.csr
./src/helpers/mkdir.sh /www/apache/conf/ssl.key
./src/helpers/mkdir.sh /www/apache/htdocs
./src/helpers/mkdir.sh /www/apache/icons
./src/helpers/mkdir.sh /www/apache/cgi-bin
./src/helpers/mkdir.sh /www/apache/include
./src/helpers/mkdir.sh /www/apache/logs
./src/helpers/mkdir.sh /www/apache/logs
./src/helpers/mkdir.sh /www/apache/proxy
<=== [mktree]
===> [programs: Installing Apache httpd program and shared objects]
./src/helpers/install.sh -c -s -m 755 ./src/httpd /www/apache/bin/httpd
./src/helpers/install.sh -c -m 644 ./src/support/httpd.8 /www/apache/man/man8/httpd.8
./src/helpers/install.sh -c -m 755 ./src/modules/ssl/libssl.so
/www/apache/libexec/libssl.so
<=== [programs]
===> [support: Installing Apache support programs and scripts]
./src/helpers/install.sh -c -s -m 755 ./src/support/ab /www/apache/bin/ab
./src/helpers/install.sh -c -m 644 ./src/support/ab.1 /www/apache/man/man1/ab.1
./src/helpers/install.sh -c -m 755 ./src/support/apachectl[*] /www/apache/bin/apachectl
./src/helpers/install.sh -c -m 644 ./src/support/apachectl.1
/www/apache/man/man1/apachectl.1
./src/helpers/install.sh -c -s -m 755 ./src/support/htpasswd /www/apache/bin/htpasswd
./src/helpers/install.sh -c -m 644 ./src/support/htpasswd.1
/www/apache/man/man1/htpasswd.1
./src/helpers/install.sh -c -s -m 755 ./src/support/htdigest /www/apache/bin/htdigest
./src/helpers/install.sh -c -m 644 ./src/support/htdigest.1
/www/apache/man/man1/htdigest.1
./src/helpers/install.sh -c -m 755 ./src/support/dbmmanage[*] /www/apache/bin/dbmmanage
./src/helpers/install.sh -c -m 644 ./src/support/dbmmanage.1
/www/apache/man/man1/dbmmanage.1
./src/helpers/install.sh -c -s -m 755 ./src/support/logresolve
/www/apache/bin/logresolve
./src/helpers/install.sh -c -m 644 ./src/support/logresolve.8
/www/apache/man/man8/logresolve.8
./src/helpers/install.sh -c -s -m 755 ./src/support/rotatelogs
/www/apache/bin/rotatelogs
./src/helpers/install.sh -c -m 644 ./src/support/rotatelogs.8
/www/apache/man/man8/rotatelogs.8
./src/helpers/install.sh -c -m 755 ./src/support/apxs[*] /www/apache/bin/apxs
./src/helpers/install.sh -c -m 644 ./src/support/apxs.8 /www/apache/man/man8/apxs.8
<=== [support]
===> [include: Installing Apache C header files]
cp ./src/include/*.h /www/apache/include/
cp ./src/os/unix/os.h /www/apache/include/
cp ./src/os/unix/os-inline.c /www/apache/include/
chmod 644 /www/apache/include/*.h
<=== [include]
===> [data: Installing initial data files]
Copying tree ./htdocs/ -> /www/apache/htdocs/
./src/helpers/install.sh -c -m 644 ./conf/printenv[*] /www/apache/cgi-bin/printenv
./src/helpers/install.sh -c -m 644 ./conf/test-cgi[*] /www/apache/cgi-bin/test-cgi
Copying tree ./icons/ -> /www/apache/icons/
<=== [data]
===> [config: Installing Apache configuration files]
./src/helpers/install.sh -c -m 644 ./conf/httpd.conf-dist[*]
/www/apache/conf/httpd.conf.default
./src/helpers/install.sh -c -m 644 ./conf/httpd.conf-dist[*]
/www/apache/conf/httpd.conf
./src/helpers/install.sh -c -m 644 ./conf/access.conf-dist[*]
/www/apache/conf/access.conf.default
./src/helpers/install.sh -c -m 644 ./conf/access.conf-dist[*]
/www/apache/conf/access.conf
./src/helpers/install.sh -c -m 644 ./conf/srm.conf-dist[*]
/www/apache/conf/srm.conf.default
./src/helpers/install.sh -c -m 644 ./conf/srm.conf-dist[*] /www/apache/conf/srm.conf
./src/helpers/install.sh -c -m 644 ./conf/mime.types
/www/apache/conf/mime.types.default
./src/helpers/install.sh -c -m 644 ./conf/mime.types /www/apache/conf/mime.types
./src/helpers/install.sh -c -m 644 ./conf/magic /www/apache/conf/magic.default
./src/helpers/install.sh -c -m 644 ./conf/magic /www/apache/conf/magic
chmod 755 /www/apache/conf/ssl.crt
chmod 755 /www/apache/conf/ssl.csr
chmod 700 /www/apache/conf/ssl.key
./src/helpers/install.sh -c -m 644 ./conf/ssl.crt/README.CRT
/www/apache/conf/ssl.crt/README.CRT
./src/helpers/install.sh -c -m 644 ./conf/ssl.crt/Makefile
/www/apache/conf/ssl.crt/Makefile
./src/helpers/install.sh -c -m 644 -m 400 ./conf/ssl.crt/ca-bundle.crt
/www/apache/conf/ssl.crt/ca-bundle.crt
./src/helpers/install.sh -c -m 644 -m 400 ./conf/ssl.crt/snakeoil-ca.crt
/www/apache/conf/ssl.crt/snakeoil-ca.crt
./src/helpers/install.sh -c -m 644 -m 400 ./conf/ssl.crt/server.crt
/www/apache/conf/ssl.crt/server.crt
Updating hash symlinks in /www/apache/conf/ssl.crt/:
make[2]: Entering directory `/www/apache/conf/ssl.crt'
ca-bundle.crt ... Skipped
server.crt ... Skipped
snakeoil-ca.crt ... e52d41d0.0
make[2]: Leaving directory `/www/apache/conf/ssl.crt'
./src/helpers/install.sh -c -m 644 ./conf/ssl.csr/README.CSR
/www/apache/conf/ssl.csr/README.CSR
./src/helpers/install.sh -c -m 644 -m 400 ./conf/ssl.csr/server.csr
/www/apache/conf/ssl.csr/server.csr
./src/helpers/install.sh -c -m 644 ./conf/ssl.key/README.KEY
/www/apache/conf/ssl.key/README.KEY
./src/helpers/install.sh -c -m 644 -m 400 ./conf/ssl.key/snakeoil-ca.key
/www/apache/conf/ssl.key/snakeoil-ca.key
./src/helpers/install.sh -c -m 644 -m 400 ./conf/ssl.key/server.key
/www/apache/conf/ssl.key/server.key
<=== [config]
make[1]: Leaving directory `/usr/src/apache_1.3.4'
+--------------------------------------------------------+
| You now have successfully built and installed the |
| Apache 1.3 HTTP server. To verify that Apache actually |
| works correctly you now should first check the |
| (initially created or preserved) configuration files |
| |
| /www/apache/conf/httpd.conf
| |
| and then you should be able to immediately fire up |
| Apache the first time by running: |
| |
| /www/apache/bin/apachectl start
| |
| Or when you want to run it with SSL enabled use: |
| |
| /www/apache/bin/apachectl startssl
| |
| Thanks for using Apache. The Apache Group |
| http://www.apache.org/ |
+--------------------------------------------------------+
Title: GlobalSign Test - CLASS 1 Demo Certificate
|
0) {
fwrite($fp,"SPKAC = ".ereg_replace("\n","",$spk)."\n");
fwrite($fp,"Email = ".$FieldEmail."\n");
fclose($fp);
mail($FieldEmail, "GlobalSign Test",
"https://192.168.0.101/globalsign/get-cert.php3?md5Req=".md5($spk)."&CA=".$CA_name
);
echo (" Your certificate request has been accepted. Once your certificate request has been authorized, you will be contacted with instructions on how to obtain your certificate. "); echo ("Please allow up to 24 hours for your certificate request to be validated and your certificate to be generated. "); echo ("Now you must go back to the Digital ID center "); } else { echo ("An error occured while writing file "); } ?>-----BEGIN CERTIFICATE REQUEST----- \n -----END CERTIFICATE REQUEST----- |
conf.tgz