Re: Compiling beta2 with openssl on XP Pro
Tom Lane <[email protected]>
| Newsgroups | gmane.comp.db.postgresql.devel.win32 |
|---|---|
| Message-ID | <[email protected]> |
"Tony and Bryn Reina" <[email protected]> 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 ---------------------------(end of broadcast)--------------------------- TIP 8: explain analyze is your friend