The following reply was made to PR config/3661; it has been noted by GNATS.

From: Jonathan Leffler <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Cc: Apache Bugs <[EMAIL PROTECTED]>
Subject: Re: config/3661: 'make install' ignores the --prefix dir specified 
during configuration
Date: Wed, 21 Apr 1999 11:28:59 -0700 (PDT)

 On 21 Apr 1999 [EMAIL PROTECTED] wrote:
 
 >[In order for any reply to be added to the PR database, ]
 >[you need to include <[EMAIL PROTECTED]> in the Cc line ]
 >[and leave the subject line UNCHANGED.  This is not done]
 >[automatically because of the potential for mail loops. ]
 >[If you do not include this Cc, your reply may be ig-   ]
 >[nored unless you are responding to an explicit request ]
 >[from a developer.                                      ]
 >[Reply only with text; DO NOT SEND ATTACHMENTS!         ]
 >
 >
 >Synopsis: 'make install' ignores the --prefix dir specified during 
 >configuration
 >
 >State-Changed-From-To: open-feedback
 >State-Changed-By: dgaudet
 >State-Changed-When: Tue Apr 20 21:50:52 PDT 1999
 >State-Changed-Why:
 >Oh those guys are always hacking on the config stuff...
 >does it work in 1.3.6?
 
 Hi,
 
 Yes, I think it is OK in 1.3.6.
 
 This may not be the correct way to report it, or the best group to report
 it to, but I've been installing Apache 1.3.6 and Apache-JServ 1.0b3 rather
 regularly, and I've put together a shell script which can readily be
 configured to build both Apache and the JServ stuff.  I have some problems
 with how the JServ build area seems to be needed when the JServ is
 installed.  I don't know if the script is of any use to anyone.  I've
 included a shell archive containing the shell script and the output from
 running a hacked version of the script -- this is what I used to verify
 that the install is OK.
 
 I'm running on a Sun SPARC 20 with Solaris 2.6.  I'm using EGCS 1.1.2 as
 the compiler.  If you need anything else, or want to suggest where I should
 send the JServ info, please contact me again.
 
 Yours,
 Jonathan Leffler ([EMAIL PROTECTED]) #include <wish/I/was/skiing.h>
 Guardian of DBD::Informix v0.60 (v0.61_02) -- http://www.perl.com/CPAN
 Informix IDN for D4GL & Linux -- http://www.informix.com/idn
 
 
 :      "@(#): shar.sh,v 2.1 1998/06/02 17:13:43 jleffler Exp $"
 #! /bin/sh
 #
 #      This is a shell archive.
 #      Remove everything above this line and run sh on the resulting file.
 #      If this archive is complete, you will see this message at the end:
 #      "All files extracted"
 #
 #      Created on: Wed Apr 21 11:25:46 PDT 1999
 #      Created by: jleffler at Informix Software Inc.
 #
 #      Files archived in this archive:
 #      /work4/Apache-Java/build.apache-jserv
 #      /work/jleffler/Trace/build.apache-jserv.990421-1105
 #
 a - build.apache-jserv
 #--------------------
 if [ -f build.apache-jserv -a "$1" != "-c" ]
 then echo shar: build.apache-jserv already exists
 else
 echo 'x - build.apache-jserv (7262 characters)'
 sed -e 's/^X//' >build.apache-jserv <<'SHAR-EOF'
 X# @(#)$Id: build.apache-jserv.sh,v 1.4 1999/04/14 20:20:53 jleffler Exp $
 X#
 X# Configuration, build and install script for Apache-JServ 1.0b3
 X
 X###########################################################################
 X# Annotated for public use.  Supplied as-is with no warranties.  It works #
 X# for me, and takes about 15 minutes to run on a Sun Sparc 20 running     #
 X# Solaris 2.6.  YMMV, as the saying goes.                                 #
 X#                                                                         #
 X# You need to read as far as 'End of Main Configuration Section', and     #
 X# you also need to read the section marked PATCH-PROBLEMS.  You need GNU  #
 X# tar and patch for maximum ease of use.  You may need to run as root for #
 X# the install phase.                                                      #
 X#                                                                         #
 X# Note that on 1999-04-14, the latest generally available version of      #
 X# Apache was 1.3.6 and the latest generally available version of          #
 X# Apache-JServ was 1.0b3.  The latest versions should be available from:  #
 X# the Apache Group:                                                       #
 X#     http://www.apache.org/                                              #
 X#     http://java.apache.org/                                             #
 X###########################################################################
 X
 X# Enable shell debugging to see what is happening.
 Xset -x
 X
 X# Java software must be pre-installed.
 X# Specify where the JDK (1.1.2 or later) is located.
 X# Specify where the JSDK (2.0 only) is located.
 XJDK_HOME=/usr/java1.1
 XJSDK_HOME=/work4/java/JSDK2.0
 X
 X###########################################
 X# Apache Web Server Configuration Details #
 X# You must adjust these for your machine! #
 XWEBSERVER_PORTNUMBER=7777
 XWEBSERVER_SERVERNAME=osiris.informix.com
 [EMAIL PROTECTED]
 XWEBSERVER_OWNERNAME=webusr
 XWEBSERVER_GROUPNAME=webusr
 X# End of Apache Web Server Configuration  #
 X###########################################
 X
 X# WORKROOT is where your Apache/JServ software will be built and installed.
 X#          You need a minimum of 30 MB available.
 X# If you are using a different version of either Apache or Apache-JServ,
 X# you may have to modify this script to do as the different versions
 X# require.  Note, in particular, that the jserv0.9.11.tar.gz file requires
 X# a number of different steps during configuration.  Also, this script
 X# assumes the older layout of the Apache directory with htdocs under
 X# $WEBSERVER, rather than the semi-experimental version used in Apache
 X# 1.3.1 etc with the htdocs directory under $WEBSERVER/share/htdocs.
 X# Apache reverted to the older structure with 1.3.4, I believe.
 XWORKROOT=/work4/Apache-Java
 XAPACHESRC=$WORKROOT/apache_1.3.6
 XJSERV_SRC=$WORKROOT/Apache-JServ-1.0b3
 XWEBSERVER=$WORKROOT/webserver
 X
 X# The APACHETAR file contains the Apache source code (usually gzipped).
 X# The JSERV_TAR file contains the Apache JServ source code (also usually
 X# gzipped).  They may be located anywhere except under $WORKROOT (but only
 X# because everything is removed from $APACHESRC, $JSERV_SRC and $WEBSERVER
 X# before the build starts).  They do not have to be in the same directory.
 XPUBDOM=/work4/public.domain/Apache
 XAPACHETAR=$PUBDOM/apache_1.3.6.tar.gz
 XJSERV_TAR=$PUBDOM/Apache-JServ-1.0b3.tar.gz
 X
 
X###############################################################################
 X# End of Main Configuration Section -- see also notes labelled PATCH-PROBLEMS 
#
 
X###############################################################################
 X
 Xcd $WORKROOT
 Xdate
 X
 X# Remove all previous work -- be careful!!!
 Xrm -fr $APACHESRC $JSERV_SRC $WEBSERVER
 X
 X# Use GNU tar to extract direct from gzipped tar files.
 X# Alternatively, use gzcat or 'gzip -cd' to uncompress
 X# the files and 'tar -xf -' to extract the material.
 Xtar -xzf $APACHETAR
 Xtar -xzf $JSERV_TAR
 X
 X# Pre-configure Apache to create headers needed by JServ
 X(
 Xdate
 Xcd $APACHESRC
 X./configure --prefix=$WEBSERVER
 X)
 X
 X# Configure and compile Apache-JServ
 X# Reconfigures Apache...
 X(
 Xdate
 Xcd $JSERV_SRC
 X
 X./configure \
 X      --prefix=$WEBSERVER \
 X      --with-apache-src=$APACHESRC \
 X      --with-jdk-home=$JDK_HOME \
 X      --with-jsdk=$JSDK_HOME \
 X      --enable-apache-conf \
 X      --enable-debugging
 X
 Xdate
 Xtime make
 X)
 X
 X# And build Apache
 X(
 Xdate
 Xcd $APACHESRC
 Xtime make
 X)
 X
 X# And install them...
 X(
 Xdate
 Xcd $APACHESRC
 Xmake install
 Xcd $JSERV_SRC
 Xif [ $WEBSERVER_SERVERNAME = 'osiris.informix.com' ]
 Xthen CHOWN=: CHGRP=: make install
 Xelse                 make install
 Xfi
 X)
 X
 X# And configure the web server...
 X(
 Xcd $WEBSERVER/conf
 X
 X############################################################################
 X# PATCH-PROBLEMS:
 X# There are two hunks in this patch file which may not work for you...
 X# These are: ServerAdmin, ServerName
 X# Either ignore the problems from patch or hack $WEBSERVER/conf/httpd.conf
 X# to set these manually, or hack the old lines (prefixed with a dash) to
 X# match the default values on your machine.
 X# I will not be happy if I get email from your web server!
 X############################################################################
 X
 Xpatch --verbose <<-!
 X--- httpd.conf.default        Wed Mar 31 11:25:58 1999
 X+++ httpd.conf        Wed Mar 31 12:29:47 1999
 X@@ -100,6 +100,8 @@
 X #
 X #ResourceConfig conf/srm.conf
 X #AccessConfig conf/access.conf
 X+ResourceConfig /dev/null
 X+AccessConfig /dev/null
 X 
 X #
 X # Timeout: The number of seconds before receives and sends time out.
 X@@ -229,7 +231,7 @@
 X # Port: The port to which the standalone server listens. For
 X # ports < 1023, you will need httpd to be run as root initially.
 X #
 X-Port 8080
 X+Port $WEBSERVER_PORTNUMBER
 X 
 X #
 X # If you wish httpd to run as a different user or group, you must run
 X@@ -243,15 +245,15 @@
 X #  when the value of (unsigned)Group is above 60000; 
 X #  don't use Group nobody on these systems!
 X #
 X-User nobody
 X-Group nobody
 X+User $WEBSERVER_OWNERNAME
 X+Group $WEBSERVER_GROUPNAME
 X 
 X #
 X # ServerAdmin: Your address, where problems with the server should be
 X # e-mailed.  This address appears on some server-generated pages, such
 X # as error documents.
 X #
 X-ServerAdmin [EMAIL PROTECTED]
 X+ServerAdmin $WEBSERVER_EMAILADMIN
 X 
 X #
 X # ServerName allows you to set a host name which is sent back to clients for
 X@@ -265,7 +267,7 @@
 X # You will have to access it by its address (e.g., http://123.45.67.89/)
 X # anyway, and this will make redirections work in a sensible way.
 X #
 X-#ServerName $WEBSERVER_SERVERNAME
 X+ServerName $WEBSERVER_SERVERNAME
 X 
 X #
 X # DocumentRoot: The directory out of which you will serve your
 X@@ -814,6 +816,10 @@
 X 
 X #</IfModule>
 X # End of proxy directives.
 X+
 X+<IfModule mod_jserv.c>
 X+Include $JSERV_SRC/example/jserv.conf
 X+</IfModule>
 X 
 X ### Section 3: Virtual Hosts
 X #
 X!
 X
 X)
 X
 X########################################################
 X# You are now ready to start the Apache-JServ server
 Xif [ $WEBSERVER_SERVERNAME = 'osiris.informix.com' ]
 Xthen asroot $WEBSERVER/bin/apachectl restart
 Xfi
 X#
 X# You should now be able to use a browser and go to URL
 X#     http://<server>:<port>/example/Hello
 X# If it is working, you should see a message that:
 X# 'Example Apache JServ Servlet'
 X# 'Congratulations, Apache JServ is working!'
 X########################################################
 SHAR-EOF
 chmod 555 build.apache-jserv
 if [ `wc -c <build.apache-jserv` -ne 7262 ]
 then echo shar: build.apache-jserv unpacked with wrong size
 fi
 # end of overwriting check
 fi
 a - build.apache-jserv.990421-1105
 #--------------------
 if [ -f build.apache-jserv.990421-1105 -a "$1" != "-c" ]
 then echo shar: build.apache-jserv.990421-1105 already exists
 else
 echo 'x - build.apache-jserv.990421-1105 (33127 characters)'
 sed -e 's/^X//' >build.apache-jserv.990421-1105 <<'SHAR-EOF'
 XTrace run started: Wed Apr 21 11:05:55 PDT 1999
 XCommand:   build.apache-jserv
 XMachine:   osiris (SunOS 5.6)
 XUser:      uid=9508(jleffler) gid=1030(cmkt) 
groups=1030(cmkt),10101(osiris),81(webusr),1260(SA)
 XDirectory: /work4/tmp/ap
 XUmask:     022
 XTerminal:  /dev/pts/5
 X
 XEnvironment:
 XAB_CARDCATALOG=/usr/dt/share/answerbooks/en_US/ab_cardcatalog
 XA__z="*MAILCHECK
 
XCDPATH=:/work/jleffler:/u/jleffler:/u/jleffler/mail:/work/jleffler/src:/work/jleffler/src/perl:/work/jleffler/src/sqltools:/work/jleffler/lib:/work/jleffler/4js:/work/jleffler/d4gl:/work/jleffler/doc
 XDBDATE=dmy4/
 XDBEDIT=vi
 XDISPLAY=:0.0
 
XDTAPPSEARCHPATH=/u/jleffler/.dt/appmanager:/etc/dt/appconfig/appmanager/%L:/etc/dt/appconfig/appmanager/C:/usr/dt/appconfig/appmanager/%L:/usr/dt/appconfig/appmanager/C
 
XDTDATABASESEARCHPATH=/u/jleffler/.dt/types/fp_dynamic,/u/jleffler/.dt/types,/etc/dt/appconfig/types/%L,/etc/dt/appconfig/types/C,/usr/dt/appconfig/types/%L,/usr/dt/appconfig/types/C
 
XDTHELPSEARCHPATH=/u/jleffler/.dt/help/jleffler-osiris-0/%H:/u/jleffler/.dt/help/jleffler-osiris-0/%H.sdl:/u/jleffler/.dt/help/jleffler-osiris-0/%H.hv:/u/jleffler/.dt/help/%H:/u/jleffler/.dt/help/%H.sdl:/u/jleffler/.dt/help/%H.hv:/usr/dt/appconfig/help/%
 L
 
 
/%H:/usr/dt/appconfig/help/%L/%H.sdl:/usr/dt/appconfig/help/%L/%H.hv:/usr/dt/appconfig/help/C/%H:/usr/dt/appconfig/help/C/%H.sdl:/usr/dt/appconfig/help/C/%H.hv
 XDTSCREENSAVERLIST=StartDtscreenSwarm StartDtscreenQix     StartDtscreenFlame 
StartDtscreenHop StartDtscreenImage StartDtscreenLife     StartDtscreenRotor 
StartDtscreenPyro StartDtscreenWorm StartDtscreenBlank
 XDTUSERSESSION=jleffler-osiris-0
 XDTXSERVERLOCATION=local
 XEDITOR=vi
 XEXINIT=set wm=1 ts=4 sw=4 ai showmode sm
 XFCEDIT=vi
 XHELPPATH=/usr/openwin/lib/locale:/usr/openwin/lib/help
 XHISTSIZE=512
 XHOME=/work/jleffler
 XINFORMIXDIR=/usr/informix/7.24.UC1
 XINFORMIXSERVER=osiris_23
 XIXD=/usr/informix/7.24.UC1
 XJOTTER=/work/jleffler/.jotter
 XLANG=en_US
 XLC_COLLATE=C
 XLC_CTYPE=en_US
 XLC_MESSAGES=C
 XLC_MONETARY=en_US
 XLC_NUMERIC=en_US
 XLC_TIME=en_US
 
XLD_LIBRARY_PATH=/usr/lib:.:/usr/informix/7.24.UC1/lib:/usr/informix/7.24.UC1/lib/esql:/usr/informix/7.24.UC1/lib/tools
 XLM_LICENSE_FILE=/software/combined_lic/licenses_combined
 XLOGNAME=jleffler
 XMAIL=/var/mail/jleffler
 XMAILCHECK=999999
 
XMANPATH=/work/jleffler/man:/usr/gnu/man:/usr/local/man:/software/compiler/v4.1/SUNWspro/man:/usr/openwin/share/man:/usr/man:/usr/perl/v5.004/man:/usr/dt/man
 XONCONFIG=onconfig.osiris_23
 XOPENWINHOME=/usr/openwin
 
XPATH=.:/work/jleffler/bin:/u/jleffler/bin:/usr/informix/7.24.UC1/bin:/usr/tcl/bin:/usr/atria/bin:/usr/gnu/bin:/usr/perl/v5.005/bin:/usr/egcs/bin:/usr/bin:/software/compiler/V4.0.1/SUNWspro/bin:/usr/ccs/bin:/usr/dt/bin:/usr/openwin/bin:/usr/local/bin:/us
 r
 
 /ucb
 XPWD=/work4/tmp/ap
 XREAL_HOME=/u/jleffler
 XSESSION_SVR=osiris
 XSHELL=/usr/bin/ksh
 XSQLEXEC=sqlrm
 XTERM=dtterm
 XTERMINAL_EMULATOR=dtterm
 XTZ=US/Pacific
 XUSER=jleffler
 XVISUAL=vi
 XWINDOWID=83886125
 XXFILESEARCHPATH=/usr/openwin/lib/locale/%L/%T/%N%S:/usr/openwin/lib/%T/%N%S
 XXMBINDDIR=/usr/dt/lib/bindings
 
XXMICONBMSEARCHPATH=/u/jleffler/.dt/icons/%B%M.bm:/u/jleffler/.dt/icons/%B%M.pm:/u/jleffler/.dt/icons/%B:/usr/dt/appconfig/icons/%L/%B%M.bm:/usr/dt/appconfig/icons/%L/%B%M.pm:/usr/dt/appconfig/icons/%L/%B:/usr/dt/appconfig/icons/C/%B%M.bm:/usr/dt/appconf
 i
 
 g/icons/C/%B%M.pm:/usr/dt/appconfig/icons/C/%B
 
XXMICONSEARCHPATH=/u/jleffler/.dt/icons/%B%M.pm:/u/jleffler/.dt/icons/%B%M.bm:/u/jleffler/.dt/icons/%B:/usr/dt/appconfig/icons/%L/%B%M.pm:/usr/dt/appconfig/icons/%L/%B%M.bm:/usr/dt/appconfig/icons/%L/%B:/usr/dt/appconfig/icons/C/%B%M.pm:/usr/dt/appconfig
 /
 
 icons/C/%B%M.bm:/usr/dt/appconfig/icons/C/%B
 X_=/usr/bin/env
 X******************************************
 X
 X+ JDK_HOME=/usr/java1.1
 X+ JSDK_HOME=/work4/java/JSDK2.0
 X+ WEBSERVER_PORTNUMBER=8765
 X+ WEBSERVER_SERVERNAME=osiris.informix.com
 X+ [EMAIL PROTECTED]
 X+ WEBSERVER_OWNERNAME=webusr
 X+ WEBSERVER_GROUPNAME=webusr
 X+ WORKROOT=/work4/tmp/ap
 X+ APACHESRC=/work4/tmp/ap/apache_1.3.6
 X+ JSERV_SRC=/work4/tmp/ap/Apache-JServ-1.0b3
 X+ WEBSERVER=/work4/tmp/ap/webserver
 X+ PUBDOM=/work4/public.domain/Apache
 X+ APACHETAR=/work4/public.domain/Apache/apache_1.3.6.tar.gz
 X+ JSERV_TAR=/work4/public.domain/Apache/Apache-JServ-1.0b3.tar.gz
 X+ cd /work4/tmp/ap
 X+ date
 XWed Apr 21 11:05:56 PDT 1999
 X+ rm -fr /work4/tmp/ap/apache_1.3.6 /work4/tmp/ap/Apache-JServ-1.0b3 
/work4/tmp/ap/webserver
 X+ tar -xzf /work4/public.domain/Apache/apache_1.3.6.tar.gz
 X+ tar -xzf /work4/public.domain/Apache/Apache-JServ-1.0b3.tar.gz
 X+ date
 XWed Apr 21 11:06:21 PDT 1999
 X+ cd /work4/tmp/ap/apache_1.3.6
 X+ ./configure --prefix=/work4/tmp/ap/webserver
 XConfiguring for Apache, Version 1.3.6
 X + using installation path layout: Apache (config.layout)
 XCreating Makefile
 XCreating Configuration.apaci in src
 XCreating Makefile in src
 X + configured for Solaris 260 platform
 X + setting C compiler to gcc
 X + setting C pre-processor to gcc -E
 X + checking for system header files
 X + adding selected modules
 X + doing sanity check on compiler and options
 XCreating Makefile in src/support
 XCreating Makefile in src/main
 XCreating Makefile in src/ap
 XCreating Makefile in src/regex
 XCreating Makefile in src/os/unix
 XCreating Makefile in src/modules/standard
 X+ date
 XWed Apr 21 11:07:29 PDT 1999
 X+ cd /work4/tmp/ap/Apache-JServ-1.0b3
 X+ ./configure --prefix=/work4/tmp/ap/webserver 
--with-apache-src=/work4/tmp/ap/apache_1.3.6 --with-jdk-home=/usr/java1.1 
--with-jsdk=/work4/java/JSDK2.0 --enable-apache-conf --enable-debugging
 Xcreating cache ./config.cache
 Xchecking for a BSD compatible install... /work/jleffler/bin/install -c
 Xchecking whether build environment is sane... yes
 Xchecking whether make sets ${MAKE}... yes
 Xchecking for working aclocal... found
 Xchecking for working autoconf... found
 Xchecking for working automake... found
 Xchecking for working autoheader... found
 Xchecking for working makeinfo... found
 Xchecking host system type... sparc-sun-solaris2.6
 Xchecking for ranlib... ranlib
 Xchecking for gcc... gcc
 Xchecking whether the C compiler (gcc  ) works... yes
 Xchecking whether the C compiler (gcc  ) is a cross-compiler... no
 Xchecking whether we are using GNU C... yes
 Xchecking whether gcc accepts -g... yes
 Xchecking for ld used by GCC... /usr/ccs/bin/ld
 Xchecking if the linker (/usr/ccs/bin/ld) is GNU ld... no
 Xchecking for BSD-compatible nm... /usr/ccs/bin/nm -p
 Xchecking whether ln -s works... yes
 Xchecking for gcc option to produce PIC... -fPIC
 Xchecking if gcc PIC flag -fPIC works... yes
 Xchecking if gcc static flag -static works... -static
 Xchecking if the linker (/usr/ccs/bin/ld) is GNU ld... no
 Xchecking whether the linker (/usr/ccs/bin/ld) supports shared libraries... yes
 Xchecking command to parse /usr/ccs/bin/nm -p output... yes
 Xchecking how to hardcode library paths into programs... immediate
 Xchecking for /usr/ccs/bin/ld option to reload object files... -r
 Xchecking dynamic linker characteristics... solaris2.6 ld.so
 Xchecking if libtool supports shared libraries... yes
 Xchecking whether to build shared libraries... yes
 Xchecking whether to build static libraries... no
 Xchecking for objdir... .libs
 Xcreating libtool
 Xchecking whether make sets ${MAKE}... (cached) yes
 Xchecking for a BSD compatible install... /work/jleffler/bin/install -c
 Xchecking whether ln -s works... (cached) yes
 Xchecking for gcc... (cached) gcc
 Xchecking whether the C compiler (gcc -g -O2 ) works... yes
 Xchecking whether the C compiler (gcc -g -O2 ) is a cross-compiler... no
 Xchecking whether we are using GNU C... (cached) yes
 Xchecking whether gcc accepts -g... (cached) yes
 Xchecking for working const... yes
 Xchecking how to run the C preprocessor... gcc -E
 Xchecking for ANSI C header files... yes
 Xchecking for mode_t... yes
 Xchecking whether time.h and sys/time.h may both be included... yes
 Xchecking whether struct tm is in sys/time.h or time.h... time.h
 Xchecking for ANSI C header files... (cached) yes
 Xchecking for gettimeofday... yes
 Xchecking for java in /usr/java1.1/bin... /usr/java1.1/bin/java
 Xchecking for javac in /usr/java1.1/bin... /usr/java1.1/bin/javac
 Xchecking for jar in /usr/java1.1/bin... /usr/java1.1/bin/jar
 Xchecking for Apache directory... /work4/tmp/ap/apache_1.3.6
 Xchecking for Java Servlet classes... /work4/java/JSDK2.0/lib/jsdk.jar
 Xchecking for httpd.h... yes
 Xchecking for http_config.h... yes
 Xchecking for http_core.h... yes
 Xchecking for http_log.h... yes
 Xchecking for http_main.h... yes
 Xchecking for http_protocol.h... yes
 Xchecking for util_script.h... yes
 Xchecking for util_md5.h... yes
 Xmkdir /work4/tmp/ap/apache_1.3.6/src/modules/jserv
 Xmoving Apache JServ module into /work4/tmp/ap/apache_1.3.6/src/modules/jserv
 Xchecking running of Apache Configuration... 
 X./config.status --activate-module=src/modules/jserv/mod_jserv
 XConfiguring for Apache, Version 1.3.6
 X + using installation path layout: Apache (config.layout)
 X + activated jserv module (modules/jserv/mod_jserv)
 XCreating Makefile
 XCreating Configuration.apaci in src
 XCreating Makefile in src
 X + configured for Solaris 260 platform
 X + setting C compiler to gcc
 X + setting C pre-processor to gcc -E
 X + checking for system header files
 X + adding selected modules
 X + doing sanity check on compiler and options
 XCreating Makefile in src/support
 XCreating Makefile in src/main
 XCreating Makefile in src/ap
 XCreating Makefile in src/regex
 XCreating Makefile in src/os/unix
 XCreating Makefile in src/modules/standard
 XCreating Makefile in src/modules/jserv
 XApache configuration successful
 Xupdating cache ./config.cache
 Xcreating ./config.status
 Xcreating Makefile
 Xcreating src/Makefile
 Xcreating src/java/Makefile
 Xcreating src/c/Makefile
 Xcreating docs/Makefile
 Xcreating example/Makefile
 Xcreating conf/jserv.properties
 Xcreating example/jserv.conf
 Xcreating example/example.properties
 Xcreating example/Hello.java
 Xcreating example/jserv.properties
 X
 XConfiguration complete.
 X
 XApache Directory: /work4/tmp/ap/apache_1.3.6
 XApache Version: 1.3
 XModule Type: static (mod_jserv will be statically compiled into server)
 XApache include flags: -I/work4/tmp/ap/apache_1.3.6/src/include 
-I/work4/tmp/ap/apache_1.3.6/src/os/unix
 X
 XRun make to build jserv.
 X(optional) Run 'make install' to make a .jar file, and copy it and the 
 Xdocs into the directory you specified as --prefix.
 X
 XThen cd to /work4/tmp/ap/apache_1.3.6 and run make.
 X
 XThen, to run the example put this in your httpd.conf:
 XInclude /work4/tmp/ap/Apache-JServ-1.0b3/example/jserv.conf
 X
 XThen try visiting the URL:
 Xhttp://osiris:SERVER_PORT/example/Hello
 X
 XYou might consider putting frequently used options into ./configure-options
 X
 XFor further information please read the documentation.
 X+ date
 XWed Apr 21 11:09:31 PDT 1999
 X+ make
 XMaking all in src
 XMaking all in c
 XMaking all in java
 XCLASSPATH=:/work4/java/JSDK2.0/lib/jsdk.jar:. /usr/java1.1/bin/javac -g 
-deprecation ./org/apache/java/io/LogRecord.java 
 XCLASSPATH=:/work4/java/JSDK2.0/lib/jsdk.jar:. /usr/java1.1/bin/javac -g 
-deprecation ./org/apache/java/util/ConfigurationsRepository.java 
 XCLASSPATH=:/work4/java/JSDK2.0/lib/jsdk.jar:. /usr/java1.1/bin/javac -g 
-deprecation ./org/apache/java/util/Configurations.java 
 XCLASSPATH=:/work4/java/JSDK2.0/lib/jsdk.jar:. /usr/java1.1/bin/javac -g 
-deprecation ./org/apache/java/util/SimpleQueue.java 
 XCLASSPATH=:/work4/java/JSDK2.0/lib/jsdk.jar:. /usr/java1.1/bin/javac -g 
-deprecation ./org/apache/java/io/LogWriter.java 
 XCLASSPATH=:/work4/java/JSDK2.0/lib/jsdk.jar:. /usr/java1.1/bin/javac -g 
-deprecation ./org/apache/java/io/ReadFullyInputStream.java 
 XCLASSPATH=:/work4/java/JSDK2.0/lib/jsdk.jar:. /usr/java1.1/bin/javac -g 
-deprecation ./org/apache/java/lang/AdaptiveClassLoader.java 
 XCLASSPATH=:/work4/java/JSDK2.0/lib/jsdk.jar:. /usr/java1.1/bin/javac -g 
-deprecation ./org/apache/java/lang/Bytes.java 
 XCLASSPATH=:/work4/java/JSDK2.0/lib/jsdk.jar:. /usr/java1.1/bin/javac -g 
-deprecation ./org/apache/java/lang/TimeoutException.java 
 XCLASSPATH=:/work4/java/JSDK2.0/lib/jsdk.jar:. /usr/java1.1/bin/javac -g 
-deprecation ./org/apache/java/lang/Lock.java 
 XCLASSPATH=:/work4/java/JSDK2.0/lib/jsdk.jar:. /usr/java1.1/bin/javac -g 
-deprecation ./org/apache/java/security/MessageDigest.java 
 XCLASSPATH=:/work4/java/JSDK2.0/lib/jsdk.jar:. /usr/java1.1/bin/javac -g 
-deprecation ./org/apache/java/net/AuthenticationException.java 
 XCLASSPATH=:/work4/java/JSDK2.0/lib/jsdk.jar:. /usr/java1.1/bin/javac -g 
-deprecation ./org/apache/java/net/AuthenticatedServerSocket.java 
 XCLASSPATH=:/work4/java/JSDK2.0/lib/jsdk.jar:. /usr/java1.1/bin/javac -g 
-deprecation ./org/apache/java/net/AuthenticatedSocket.java 
 XCLASSPATH=:/work4/java/JSDK2.0/lib/jsdk.jar:. /usr/java1.1/bin/javac -g 
-deprecation ./org/apache/java/security/MD5.java 
 XCLASSPATH=:/work4/java/JSDK2.0/lib/jsdk.jar:. /usr/java1.1/bin/javac -g 
-deprecation ./org/apache/java/util/ExtendedProperties.java 
 XCLASSPATH=:/work4/java/JSDK2.0/lib/jsdk.jar:. /usr/java1.1/bin/javac -g 
-deprecation ./org/apache/jserv/JServSendError.java 
 XCLASSPATH=:/work4/java/JSDK2.0/lib/jsdk.jar:. /usr/java1.1/bin/javac -g 
-deprecation ./org/apache/jserv/JServLogChannels.java 
 XCLASSPATH=:/work4/java/JSDK2.0/lib/jsdk.jar:. /usr/java1.1/bin/javac -g 
-deprecation ./org/apache/jserv/JServUtils.java 
 XCLASSPATH=:/work4/java/JSDK2.0/lib/jsdk.jar:. /usr/java1.1/bin/javac -g 
-deprecation ./org/apache/jserv/JServLog.java 
./org/apache/jserv/JServConnection.java 
./org/apache/jserv/JServServletManager.java ./org/apache/jserv/JServ.java 
./org/apache/jserv/JS e
 
 rvContext.java ./org/apache/jserv/JServSTMStore.java 
./org/apache/jserv/JServSession.java 
 X/usr/java1.1/bin/jar -0cvf Apache-JServ.jar ./org/apache/java/io/*.class 
./org/apache/java/lang/*.class ./org/apache/java/net/*.class 
./org/apache/java/security/*.class ./org/apache/java/util/*.class 
./org/apache/jserv/*.class
 Xadding: org/apache/java/io/LogRecord.class (in=681) (out=681) (stored 0%)
 Xadding: org/apache/java/io/LogWriter$1.class (in=910) (out=910) (stored 0%)
 Xadding: org/apache/java/io/LogWriter$Agent.class (in=2857) (out=2857) (stored 
0%)
 Xadding: org/apache/java/io/LogWriter.class (in=6361) (out=6361) (stored 0%)
 Xadding: org/apache/java/io/ReadFullyInputStream.class (in=847) (out=847) 
(stored 0%)
 Xadding: org/apache/java/lang/AdaptiveClassLoader$ClassCacheEntry.class 
(in=701) (out=701) (stored 0%)
 Xadding: org/apache/java/lang/AdaptiveClassLoader.class (in=8516) (out=8516) 
(stored 0%)
 Xadding: org/apache/java/lang/Bytes.class (in=3281) (out=3281) (stored 0%)
 Xadding: org/apache/java/lang/Lock.class (in=1948) (out=1948) (stored 0%)
 Xadding: org/apache/java/lang/TimeoutException.class (in=509) (out=509) 
(stored 0%)
 Xadding: org/apache/java/net/AuthenticatedServerSocket.class (in=3600) 
(out=3600) (stored 0%)
 Xadding: org/apache/java/net/AuthenticatedSocket.class (in=1747) (out=1747) 
(stored 0%)
 Xadding: org/apache/java/net/AuthenticationException.class (in=525) (out=525) 
(stored 0%)
 Xadding: org/apache/java/security/MD5.class (in=7194) (out=7194) (stored 0%)
 Xadding: org/apache/java/security/MessageDigest.class (in=880) (out=880) 
(stored 0%)
 Xadding: org/apache/java/util/Configurations.class (in=9675) (out=9675) 
(stored 0%)
 Xadding: org/apache/java/util/ConfigurationsRepository.class (in=1028) 
(out=1028) (stored 0%)
 Xadding: org/apache/java/util/ExtendedProperties$PropertiesReader.class 
(in=1549) (out=1549) (stored 0%)
 Xadding: org/apache/java/util/ExtendedProperties$PropertiesTokenizer.class 
(in=1524) (out=1524) (stored 0%)
 Xadding: org/apache/java/util/ExtendedProperties.class (in=2571) (out=2571) 
(stored 0%)
 Xadding: org/apache/java/util/SimpleQueue.class (in=1321) (out=1321) (stored 
0%)
 Xadding: org/apache/jserv/JServ.class (in=15283) (out=15283) (stored 0%)
 Xadding: org/apache/jserv/JServConnection$JServInputStream.class (in=1638) 
(out=1638) (stored 0%)
 Xadding: org/apache/jserv/JServConnection$JServOutputStream.class (in=1380) 
(out=1380) (stored 0%)
 Xadding: org/apache/jserv/JServConnection.class (in=23176) (out=23176) (stored 
0%)
 Xadding: org/apache/jserv/JServContext.class (in=7328) (out=7328) (stored 0%)
 Xadding: org/apache/jserv/JServLog.class (in=1299) (out=1299) (stored 0%)
 Xadding: org/apache/jserv/JServLogChannels.class (in=787) (out=787) (stored 0%)
 Xadding: org/apache/jserv/JServSTMStore.class (in=5914) (out=5914) (stored 0%)
 Xadding: org/apache/jserv/JServSendError.class (in=406) (out=406) (stored 0%)
 Xadding: org/apache/jserv/JServServletManager.class (in=15747) (out=15747) 
(stored 0%)
 Xadding: org/apache/jserv/JServSession.class (in=3940) (out=3940) (stored 0%)
 Xadding: org/apache/jserv/JServUtils.class (in=4534) (out=4534) (stored 0%)
 XMaking all in docs
 XMaking all in example
 XCLASSPATH=/work4/java/JSDK2.0/lib/jsdk.jar:$CLASSPATH /usr/java1.1/bin/javac 
Hello.java
 X
 Xreal  3m37.00s
 Xuser  2m32.88s
 Xsys   0m48.53s
 X+ date
 XWed Apr 21 11:13:09 PDT 1999
 X+ cd /work4/tmp/ap/apache_1.3.6
 X+ make
 X===> src
 X===> src/os/unix
 Xgcc -c  -I../../os/unix -I../../include   -DSOLARIS2=260 `../../apaci` os.c
 Xgcc -c  -I../../os/unix -I../../include   -DSOLARIS2=260 `../../apaci` 
os-inline.c
 Xrm -f libos.a
 Xar cr libos.a os.o os-inline.o
 Xranlib libos.a
 X<=== src/os/unix
 X===> src/ap
 Xgcc -c  -I../os/unix -I../include   -DSOLARIS2=260 `../apaci` ap_execve.c
 Xgcc -c  -I../os/unix -I../include   -DSOLARIS2=260 `../apaci` ap_cpystrn.c
 Xgcc -c  -I../os/unix -I../include   -DSOLARIS2=260 `../apaci` ap_signal.c
 Xgcc -c  -I../os/unix -I../include   -DSOLARIS2=260 `../apaci` ap_slack.c
 Xgcc -c  -I../os/unix -I../include   -DSOLARIS2=260 `../apaci` ap_snprintf.c
 Xgcc -c  -I../os/unix -I../include   -DSOLARIS2=260 `../apaci` ap_fnmatch.c
 Xgcc -c  -I../os/unix -I../include   -DSOLARIS2=260 `../apaci` ap_md5c.c
 Xrm -f libap.a
 Xar cr libap.a ap_execve.o ap_cpystrn.o ap_signal.o  ap_slack.o ap_snprintf.o 
ap_fnmatch.o ap_md5c.o
 Xranlib libap.a
 X<=== src/ap
 X===> src/main
 Xgcc -c  -I../os/unix -I../include   -DSOLARIS2=260 `../apaci` gen_test_char.c
 Xgcc  -DSOLARIS2=260 `../apaci`   -o gen_test_char gen_test_char.o  -lsocket 
-lnsl
 X./gen_test_char >test_char.h
 Xgcc -c  -I../os/unix -I../include   -DSOLARIS2=260 `../apaci` gen_uri_delims.c
 Xgcc  -DSOLARIS2=260 `../apaci`   -o gen_uri_delims gen_uri_delims.o  -lsocket 
-lnsl
 X./gen_uri_delims >uri_delims.h
 Xgcc -c  -I../os/unix -I../include   -DSOLARIS2=260 `../apaci` alloc.c
 Xgcc -c  -I../os/unix -I../include   -DSOLARIS2=260 `../apaci` buff.c
 Xgcc -c  -I../os/unix -I../include   -DSOLARIS2=260 `../apaci` http_config.c
 Xgcc -c  -I../os/unix -I../include   -DSOLARIS2=260 `../apaci` http_core.c
 Xgcc -c  -I../os/unix -I../include   -DSOLARIS2=260 `../apaci` http_log.c
 Xgcc -c  -I../os/unix -I../include   -DSOLARIS2=260 `../apaci` http_main.c
 Xgcc -c  -I../os/unix -I../include   -DSOLARIS2=260 `../apaci` http_protocol.c
 Xgcc -c  -I../os/unix -I../include   -DSOLARIS2=260 `../apaci` http_request.c
 Xgcc -c  -I../os/unix -I../include   -DSOLARIS2=260 `../apaci` http_vhost.c
 Xgcc -c  -I../os/unix -I../include   -DSOLARIS2=260 `../apaci` util.c
 Xgcc -c  -I../os/unix -I../include   -DSOLARIS2=260 `../apaci` util_date.c
 Xgcc -c  -I../os/unix -I../include   -DSOLARIS2=260 `../apaci` util_script.c
 Xgcc -c  -I../os/unix -I../include   -DSOLARIS2=260 `../apaci` util_uri.c
 Xgcc -c  -I../os/unix -I../include   -DSOLARIS2=260 `../apaci` util_md5.c
 Xgcc -c  -I../os/unix -I../include   -DSOLARIS2=260 `../apaci` rfc1413.c
 Xrm -f libmain.a
 Xar 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  rfc1413.o
 Xranlib libmain.a
 X<=== src/main
 X===> src/modules
 X===> src/modules/standard
 Xgcc -c  -I../../os/unix -I../../include   -DSOLARIS2=260 `../../apaci` 
mod_env.c
 Xgcc -c  -I../../os/unix -I../../include   -DSOLARIS2=260 `../../apaci` 
mod_log_config.c
 Xgcc -c  -I../../os/unix -I../../include   -DSOLARIS2=260 `../../apaci` 
mod_mime.c
 Xgcc -c  -I../../os/unix -I../../include   -DSOLARIS2=260 `../../apaci` 
mod_negotiation.c
 Xgcc -c  -I../../os/unix -I../../include   -DSOLARIS2=260 `../../apaci` 
mod_status.c
 Xgcc -c  -I../../os/unix -I../../include   -DSOLARIS2=260 `../../apaci` 
mod_include.c
 Xgcc -c  -I../../os/unix -I../../include   -DSOLARIS2=260 `../../apaci` 
mod_autoindex.c
 Xgcc -c  -I../../os/unix -I../../include   -DSOLARIS2=260 `../../apaci` 
mod_dir.c
 Xgcc -c  -I../../os/unix -I../../include   -DSOLARIS2=260 `../../apaci` 
mod_cgi.c
 Xgcc -c  -I../../os/unix -I../../include   -DSOLARIS2=260 `../../apaci` 
mod_asis.c
 Xgcc -c  -I../../os/unix -I../../include   -DSOLARIS2=260 `../../apaci` 
mod_imap.c
 Xgcc -c  -I../../os/unix -I../../include   -DSOLARIS2=260 `../../apaci` 
mod_actions.c
 Xgcc -c  -I../../os/unix -I../../include   -DSOLARIS2=260 `../../apaci` 
mod_userdir.c
 Xgcc -c  -I../../os/unix -I../../include   -DSOLARIS2=260 `../../apaci` 
mod_alias.c
 Xgcc -c  -I../../os/unix -I../../include   -DSOLARIS2=260 `../../apaci` 
mod_access.c
 Xgcc -c  -I../../os/unix -I../../include   -DSOLARIS2=260 `../../apaci` 
mod_auth.c
 Xgcc -c  -I../../os/unix -I../../include   -DSOLARIS2=260 `../../apaci` 
mod_setenvif.c
 Xrm -f libstandard.a
 Xar 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_setenvif.o
 Xranlib libstandard.a
 X<=== src/modules/standard
 X===> src/modules/jserv
 Xgcc -c  -I../../os/unix -I../../include   -DSOLARIS2=260 `../../apaci` 
mod_jserv.c
 Xgcc -c  -I../../os/unix -I../../include   -DSOLARIS2=260 `../../apaci` 
jserv_protocols.c
 Xgcc -c  -I../../os/unix -I../../include   -DSOLARIS2=260 `../../apaci` 
jserv_status.c
 Xgcc -c  -I../../os/unix -I../../include   -DSOLARIS2=260 `../../apaci` 
jserv_utils.c
 Xgcc -c  -I../../os/unix -I../../include   -DSOLARIS2=260 `../../apaci` 
jserv_ajpv11.c
 Xgcc -c  -I../../os/unix -I../../include   -DSOLARIS2=260 `../../apaci` 
jserv_balance.c
 Xgcc -c  -I../../os/unix -I../../include   -DSOLARIS2=260 `../../apaci` 
jserv_wrapper.c
 Xgcc -c  -I../../os/unix -I../../include   -DSOLARIS2=260 `../../apaci` 
jserv_wrapper_unix.c
 Xgcc  -DSOLARIS2=260 `../../apaci`    -o jserv_mkimg jserv_mkimg.c 
 Xgcc jserv_mkimg.c -o jserv_mkimg
 X./jserv_mkimg jserv.gif jserv_image.c
 Xrm -f ./jserv_mkimg
 Xgcc -c  -I../../os/unix -I../../include   -DSOLARIS2=260 `../../apaci` 
jserv_image.c
 Xmake: Warning: Too many rules defined for target libjserv.a
 XCurrent working directory /work4/tmp/ap/apache_1.3.6/src/modules/jserv
 Xrm -f libjserv.a
 Xar cr libjserv.a mod_jserv.o  jserv_protocols.o jserv_status.o jserv_utils.o 
jserv_ajpv11.o  jserv_balance.o  jserv_wrapper.o jserv_wrapper_unix.o 
jserv_image.o
 Xranlib libjserv.a
 X<=== src/modules/jserv
 X<=== src/modules
 Xgcc -c  -I./os/unix -I./include   -DSOLARIS2=260 `./apaci` modules.c
 Xgcc -c  -I./os/unix -I./include   -DSOLARIS2=260 `./apaci` buildmark.c
 Xgcc  -DSOLARIS2=260 `./apaci`    \
 X      -o httpd buildmark.o modules.o  modules/standard/libstandard.a  
modules/jserv/libjserv.a  main/libmain.a  ./os/unix/libos.a  ap/libap.a   
-lsocket -lnsl
 X===> src/support
 Xgcc -c  -I../os/unix -I../include   -DSOLARIS2=260 `../apaci` htpasswd.c
 Xgcc  -DSOLARIS2=260 `../apaci` htpasswd.o -o htpasswd   -L../os/unix -L../ap 
-los -lap  -lsocket -lnsl
 Xgcc -c  -I../os/unix -I../include   -DSOLARIS2=260 `../apaci` htdigest.c
 Xgcc  -DSOLARIS2=260 `../apaci` htdigest.o -o htdigest   -L../os/unix -L../ap 
-los -lap  -lsocket -lnsl
 Xgcc -c  -I../os/unix -I../include   -DSOLARIS2=260 `../apaci` rotatelogs.c
 Xgcc  -DSOLARIS2=260 `../apaci` rotatelogs.o -o rotatelogs   -L../os/unix 
-L../ap -los -lap  -lsocket -lnsl
 Xgcc -c  -I../os/unix -I../include   -DSOLARIS2=260 `../apaci` logresolve.c
 Xgcc  -DSOLARIS2=260 `../apaci` logresolve.o -o logresolve   -L../os/unix 
-L../ap -los -lap  -lsocket -lnsl
 Xgcc -c  -I../os/unix -I../include   -DSOLARIS2=260 `../apaci` ab.c
 Xgcc  -DSOLARIS2=260 `../apaci` ab.o -o ab   -L../os/unix -L../ap -los -lap  
-lsocket -lnsl
 Xsed <apxs.pl >apxs \
 X    -e '[EMAIL PROTECTED]@%httpd%g' \
 X    -e '[EMAIL PROTECTED]@%gcc%g' \
 X    -e '[EMAIL PROTECTED]@% -DSOLARIS2=260 `../apaci`%g' \
 X    -e '[EMAIL PROTECTED]@%%g' \
 X    -e '[EMAIL PROTECTED]@%%g' \
 X    -e '[EMAIL PROTECTED]@%%g' \
 X    -e '[EMAIL PROTECTED]@%%g' && chmod a+x apxs
 X<=== src/support
 X<=== src
 X
 Xreal  4m4.21s
 Xuser  2m31.27s
 Xsys   0m46.68s
 X+ date
 XWed Apr 21 11:17:13 PDT 1999
 X+ cd /work4/tmp/ap/apache_1.3.6
 X+ make install
 X===> [mktree: Creating Apache installation tree]
 X./src/helpers/mkdir.sh /work4/tmp/ap/webserver/bin
 Xmkdir /work4/tmp/ap/webserver
 Xmkdir /work4/tmp/ap/webserver/bin
 X./src/helpers/mkdir.sh /work4/tmp/ap/webserver/bin
 X./src/helpers/mkdir.sh /work4/tmp/ap/webserver/libexec
 Xmkdir /work4/tmp/ap/webserver/libexec
 X./src/helpers/mkdir.sh /work4/tmp/ap/webserver/man/man1
 Xmkdir /work4/tmp/ap/webserver/man
 Xmkdir /work4/tmp/ap/webserver/man/man1
 X./src/helpers/mkdir.sh /work4/tmp/ap/webserver/man/man8
 Xmkdir /work4/tmp/ap/webserver/man/man8
 X./src/helpers/mkdir.sh /work4/tmp/ap/webserver/conf
 Xmkdir /work4/tmp/ap/webserver/conf
 X./src/helpers/mkdir.sh /work4/tmp/ap/webserver/htdocs
 Xmkdir /work4/tmp/ap/webserver/htdocs
 X./src/helpers/mkdir.sh /work4/tmp/ap/webserver/icons
 Xmkdir /work4/tmp/ap/webserver/icons
 X./src/helpers/mkdir.sh /work4/tmp/ap/webserver/cgi-bin
 Xmkdir /work4/tmp/ap/webserver/cgi-bin
 X./src/helpers/mkdir.sh /work4/tmp/ap/webserver/include
 Xmkdir /work4/tmp/ap/webserver/include
 X./src/helpers/mkdir.sh /work4/tmp/ap/webserver/logs
 Xmkdir /work4/tmp/ap/webserver/logs
 X./src/helpers/mkdir.sh /work4/tmp/ap/webserver/logs
 X./src/helpers/mkdir.sh /work4/tmp/ap/webserver/proxy
 Xmkdir /work4/tmp/ap/webserver/proxy
 X<=== [mktree]
 X===> [programs: Installing Apache httpd program and shared objects]
 X./src/helpers/install.sh -c -m 755 -s ./src/httpd 
/work4/tmp/ap/webserver/bin/httpd
 X./src/helpers/install.sh -c -m 644 ./src/support/httpd.8 
/work4/tmp/ap/webserver/man/man8/httpd.8
 X<=== [programs]
 X===> [support: Installing Apache support programs and scripts]
 X./src/helpers/install.sh -c -m 755 -s ./src/support/ab 
/work4/tmp/ap/webserver/bin/ab
 X./src/helpers/install.sh -c -m 644 ./src/support/ab.8 
/work4/tmp/ap/webserver/man/man8/ab.8
 X./src/helpers/install.sh -c -m 755 ./src/support/apachectl[*] 
/work4/tmp/ap/webserver/bin/apachectl
 X./src/helpers/install.sh -c -m 644 ./src/support/apachectl.8 
/work4/tmp/ap/webserver/man/man8/apachectl.8
 X./src/helpers/install.sh -c -m 755 -s ./src/support/htpasswd 
/work4/tmp/ap/webserver/bin/htpasswd
 X./src/helpers/install.sh -c -m 644 ./src/support/htpasswd.1 
/work4/tmp/ap/webserver/man/man1/htpasswd.1
 X./src/helpers/install.sh -c -m 755 -s ./src/support/htdigest 
/work4/tmp/ap/webserver/bin/htdigest
 X./src/helpers/install.sh -c -m 644 ./src/support/htdigest.1 
/work4/tmp/ap/webserver/man/man1/htdigest.1
 X./src/helpers/install.sh -c -m 755 ./src/support/dbmmanage[*] 
/work4/tmp/ap/webserver/bin/dbmmanage
 X./src/helpers/install.sh -c -m 644 ./src/support/dbmmanage.1 
/work4/tmp/ap/webserver/man/man1/dbmmanage.1
 X./src/helpers/install.sh -c -m 755 -s ./src/support/logresolve 
/work4/tmp/ap/webserver/bin/logresolve
 X./src/helpers/install.sh -c -m 644 ./src/support/logresolve.8 
/work4/tmp/ap/webserver/man/man8/logresolve.8
 X./src/helpers/install.sh -c -m 755 -s ./src/support/rotatelogs 
/work4/tmp/ap/webserver/bin/rotatelogs
 X./src/helpers/install.sh -c -m 644 ./src/support/rotatelogs.8 
/work4/tmp/ap/webserver/man/man8/rotatelogs.8
 X./src/helpers/install.sh -c -m 755 ./src/support/apxs[*] 
/work4/tmp/ap/webserver/bin/apxs
 X./src/helpers/install.sh -c -m 644 ./src/support/apxs.8 
/work4/tmp/ap/webserver/man/man8/apxs.8
 X<=== [support]
 X===> [include: Installing Apache C header files]
 Xcp ./src/include/*.h /work4/tmp/ap/webserver/include/
 Xcp ./src/os/unix/os.h /work4/tmp/ap/webserver/include/
 Xcp ./src/os/unix/os-inline.c /work4/tmp/ap/webserver/include/
 Xchmod 644 /work4/tmp/ap/webserver/include/*.h
 X<=== [include]
 X===> [data: Installing initial data files]
 XCopying tree ./htdocs/ -> /work4/tmp/ap/webserver/htdocs/
 X./src/helpers/install.sh -c -m 644 ./conf/printenv[*] 
/work4/tmp/ap/webserver/cgi-bin/printenv
 X./src/helpers/install.sh -c -m 644 ./conf/test-cgi[*] 
/work4/tmp/ap/webserver/cgi-bin/test-cgi
 XCopying tree ./icons/ -> /work4/tmp/ap/webserver/icons/
 X<=== [data]
 X===> [config: Installing Apache configuration files]
 X./src/helpers/install.sh -c -m 644 ./conf/httpd.conf-dist[*] 
/work4/tmp/ap/webserver/conf/httpd.conf.default
 X./src/helpers/install.sh -c -m 644 ./conf/httpd.conf-dist[*] 
/work4/tmp/ap/webserver/conf/httpd.conf
 X./src/helpers/install.sh -c -m 644 ./conf/access.conf-dist[*] 
/work4/tmp/ap/webserver/conf/access.conf.default
 X./src/helpers/install.sh -c -m 644 ./conf/access.conf-dist[*] 
/work4/tmp/ap/webserver/conf/access.conf
 X./src/helpers/install.sh -c -m 644 ./conf/srm.conf-dist[*] 
/work4/tmp/ap/webserver/conf/srm.conf.default
 X./src/helpers/install.sh -c -m 644 ./conf/srm.conf-dist[*] 
/work4/tmp/ap/webserver/conf/srm.conf
 X./src/helpers/install.sh -c -m 644 ./conf/mime.types 
/work4/tmp/ap/webserver/conf/mime.types.default
 X./src/helpers/install.sh -c -m 644 ./conf/mime.types 
/work4/tmp/ap/webserver/conf/mime.types
 X./src/helpers/install.sh -c -m 644 ./conf/magic 
/work4/tmp/ap/webserver/conf/magic.default
 X./src/helpers/install.sh -c -m 644 ./conf/magic 
/work4/tmp/ap/webserver/conf/magic
 X<=== [config]
 X+--------------------------------------------------------+
 X| You now have successfully built and installed the      |
 X| Apache 1.3 HTTP server. To verify that Apache actually |
 X| works correctly you now should first check the         |
 X| (initially created or preserved) configuration files   |
 X|                                                        |
 X|   /work4/tmp/ap/webserver/conf/httpd.conf
 X|                                                        |
 X| and then you should be able to immediately fire up     |
 X| Apache the first time by running:                      |
 X|                                                        |
 X|   /work4/tmp/ap/webserver/bin/apachectl start
 X|                                                        |
 X| Thanks for using Apache.       The Apache Group        |
 X|                                http://www.apache.org/  |
 X+--------------------------------------------------------+
 X+ cd /work4/tmp/ap/Apache-JServ-1.0b3
 X+ [ osiris.informix.com = osiris.informix.com ]
 X+ make install
 X+ CHOWN=: CHGRP=:
 XMaking install in src
 XMaking install in c
 X/bin/sh ../../src/scripts/build/unix/mkinstalldirs /work4/tmp/ap/webserver/lib
 Xmkdir /work4/tmp/ap/webserver/lib
 XMaking install in java
 X/work/jleffler/bin/install -c -m 644 ./Apache-JServ.jar 
/work4/tmp/ap/webserver/lib/Apache-JServ.jar
 XMaking install in docs
 X/bin/sh ../src/scripts/build/unix/mkinstalldirs /work4/tmp/ap/webserver/docs 
/work4/tmp/ap/webserver/docs/api /work4/tmp/ap/webserver/docs/images 
/work4/tmp/ap/webserver/docs/install /work4/tmp/ap/webserver/docs/protocol 
/work4/tmp/ap/webserver/docs/fut u
 
 re
 Xmkdir /work4/tmp/ap/webserver/docs
 Xmkdir /work4/tmp/ap/webserver/docs/api
 Xmkdir /work4/tmp/ap/webserver/docs/images
 Xmkdir /work4/tmp/ap/webserver/docs/install
 Xmkdir /work4/tmp/ap/webserver/docs/protocol
 Xmkdir /work4/tmp/ap/webserver/docs/future
 XMaking install in example
 X+ cd /work4/tmp/ap/webserver/conf
 X+ patch --verbose
 X+ 0<<
 X--- httpd.conf.default        Wed Mar 31 11:25:58 1999
 X+++ httpd.conf        Wed Mar 31 12:29:47 1999
 X@@ -100,6 +100,8 @@
 X #
 X #ResourceConfig conf/srm.conf
 X #AccessConfig conf/access.conf
 X+ResourceConfig /dev/null
 X+AccessConfig /dev/null
 X 
 X #
 X # Timeout: The number of seconds before receives and sends time out.
 X@@ -229,7 +231,7 @@
 X # Port: The port to which the standalone server listens. For
 X # ports < 1023, you will need httpd to be run as root initially.
 X #
 X-Port 8080
 X+Port 8765
 X 
 X #
 X # If you wish httpd to run as a different user or group, you must run
 X@@ -243,15 +245,15 @@
 X #  when the value of (unsigned)Group is above 60000; 
 X #  don't use Group nobody on these systems!
 X #
 X-User nobody
 X-Group nobody
 X+User webusr
 X+Group webusr
 X 
 X #
 X # ServerAdmin: Your address, where problems with the server should be
 X # e-mailed.  This address appears on some server-generated pages, such
 X # as error documents.
 X #
 X-ServerAdmin [EMAIL PROTECTED]
 X+ServerAdmin [EMAIL PROTECTED]
 X 
 X #
 X # ServerName allows you to set a host name which is sent back to clients for
 X@@ -265,7 +267,7 @@
 X # You will have to access it by its address (e.g., http://123.45.67.89/)
 X # anyway, and this will make redirections work in a sensible way.
 X #
 X-#ServerName osiris.informix.com
 X+ServerName osiris.informix.com
 X 
 X #
 X # DocumentRoot: The directory out of which you will serve your
 X@@ -814,6 +816,10 @@
 X 
 X #</IfModule>
 X # End of proxy directives.
 X+
 X+<IfModule mod_jserv.c>
 X+Include /work4/tmp/ap/Apache-JServ-1.0b3/example/jserv.conf
 X+</IfModule>
 X 
 X ### Section 3: Virtual Hosts
 X #
 XHmm...  Looks like a unified diff to me...
 XThe text leading up to this was:
 X--------------------------
 X|--- httpd.conf.default       Wed Mar 31 11:25:58 1999
 X|+++ httpd.conf       Wed Mar 31 12:29:47 1999
 X--------------------------
 XPatching file `httpd.conf' using Plan A...
 XHunk #1 succeeded at 100.
 XHunk #2 succeeded at 231.
 XHunk #3 succeeded at 245.
 XHunk #4 succeeded at 267.
 XHunk #5 succeeded at 816.
 Xdone
 X+ [ osiris.informix.com = osiris.informix.com ]
 X+ asroot /work4/tmp/ap/webserver/bin/apachectl restart
 X/work4/tmp/ap/webserver/bin/apachectl restart: httpd not running, trying to 
start
 X/work4/tmp/ap/webserver/bin/apachectl restart: httpd started
 X
 X******************************************
 XTrace run finished: Wed Apr 21 11:18:20 PDT 1999
 SHAR-EOF
 chmod 644 build.apache-jserv.990421-1105
 if [ `wc -c <build.apache-jserv.990421-1105` -ne 33127 ]
 then echo shar: build.apache-jserv.990421-1105 unpacked with wrong size
 fi
 # end of overwriting check
 fi
 echo All files extracted
 exit 0
 

Reply via email to