At 9:31 AM -0700 4/26/2002, David Wheeler wrote: >On 4/26/02 8:39 AM, "Ward W. Vuillemot" <[EMAIL PROTECTED]> claimed: > >> I thought I would go back to installing everything. >> Last time, when I installed Apache, I had had problems with the following >> command: >> >> SSL_BASE=/usr/local/src/openssl-0.9.6c/ \ >> ./configure \ >> --with-layout=Apache \ >> --enable-module=ssl \ >> --enable-module=rewrite \ >> --enable-module=so \ >> --activate-module=src/modules/perl/libperl.a \ >> --disable-shared=perl \ >> --without-execstrip >> >> Telling me that SSL_BASE is not understood. >> >> So I set it using >> % Setenv SSL_BASE "/usr/local/src/openssl-0.9.6c/" >> % ./configure \ >> [...] > >Both of these should work -- I don't get it. Try switching to zsh and doing >it again: > >% zsh >% SSL_BASE=/usr/local/src/openssl-0.9.6c/ \ > ./configure \ > --with-layout=Apache \ > --enable-module=ssl \ > --enable-module=rewrite \ > --enable-module=so \ > --activate-module=src/modules/perl/libperl.a \ > --disable-shared=perl \ > --without-execstrip > >....etc.
If you prefer to use the default tcsh, this will work: % env SSL_BASE=/usr/local/src/openssl-0.9.6c/ \ ./configure \ --with-layout=Apache \ --enable-module=ssl \ --enable-module=rewrite \ --enable-module=so \ --activate-module=src/modules/perl/libperl.a \ --disable-shared=perl \ --without-execstrip Note that --with-layout=Apache will install in /usr/local as noted elsewhere in this thread. Leaving it off or using --with-layout=Darwin will install it over Apple's defaults. -Charles Albrecht [EMAIL PROTECTED]