>> econf "--with-pgsql-includes=/usr/include --with-modules=\"gmysql ldap\""
You're quoting a value to econf... That means it's one value. Which is very probably not what you're looking for. > econf --with-pgsql-includes=/usr/include --with-modules="gmysql ldap" $myconf This is a lot more correct. econf() passes the values verbatim. If you quote the entire set when passing it into econf, it will be passed the exact same way to configure. econf 'foo --with-bar=zip' becomes ./configure <lots of stuff> "foo --with-bar=zip" Which, I highly doubt, is what you're looking for. --NJ -- [EMAIL PROTECTED] mailing list
