Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Spoke too soon...' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Spoke too soon...
Authored by: morgion on Jun 06, '01 01:23:08PM
I was a little bit premature on my thanks. ;-) Now, using the setenv command, I get the following when entering the SSL_BASE and configure options:
[localhost:~/apache_1.3.19] morgion% setenv SSL_BASE=../OpenSSL-3-1/openssl
 -> ./configure
 -> --enable-module=ssl
 -> --activate-module=src/modules/php4/libphp4.a
 -> --enable-module=php4
 -> --enable-shared=ssl
setenv: Too many arguments.
According to my Terminal prog preferences, I am running tcsh. I also have the back slashes in there, at the end of every line except the last --enable, no spaces before or after the backslash.

[ Reply to This | # ]
Spoke too soon...
Authored by: Gwyrrdin on Jun 06, '01 04:11:04PM
hmmm the setenv command was advised to me by a so called unix wizz kid. That's the reason why I use bash :) resync-> unix/linux sytems don't write changes t the filesystem immediatly to the disk, but keep it in a buffer.
% sync
forces the sytem to write the changes to disk, doing it twice is somehow better then once, don't remember why. with rehash, you tell the shell to recognise any new binaries you just installed...it looks for those in his paths with the following command:
% rehash
also, for some odd reason, do this twice:) Cheers Merlijn

[ Reply to This | # ]
Spoke too soon...
Authored by: kfancher on Jun 08, '01 12:27:44AM

Don't use an = with setenv.

setenv SSL_BASE ../OpenSSL-3.1/openssl
./configure
etc...



[ Reply to This | # ]
Spoke too soon...
Authored by: kfancher on Jun 08, '01 12:36:34AM

Don't use an = with setenv.

setenv SSL_BASE ../OpenSSL-3.1/openssl
./configure
etc...



[ Reply to This | # ]