"Tony and Bryn Reina" <reina_ga(at)hotmail(dot)com> writes:
> I just tried:
> configure --with-openssl --with-includes=/usr/local/include;/usr/local/ssl/include
> --with-libs=/usr/local/lib;/usr/local/ssl/lib
> but the configure.log states the command was:
> configure --with-openssl --with-includes=/usr/local/include
> so it appears that everything after the first semi-colon (;) is lost.
Presumably you need to quote that parameter --- certainly you would need
to quote a semicolon in a Unix shell.
configure --with-openssl '--with-includes=/usr/local/include;/usr/local/ssl/include' ...
regards, tom lane