This may be obvious to some, but how do you add multiple directories to an
option in the configure script?
in particular:
--with-postgres-includes=DIRS
I have header files in both /usr/include/postgres and
/usr/include/postgres/server
(Debian 3.0r1 on i686)
Thanks
--
David Finlayson
University of Washington
School of Oceanography
Marine Science Building (MSB) 112
Seattle, WA 98195
(206) 616-9407
http://students.washington.edu/dfinlays
David Finlayson wrote:
This may be obvious to some, but how do you add multiple directories to an
option in the configure script?
in particular:
--with-postgres-includes=DIRS
I have header files in both /usr/include/postgres and
/usr/include/postgres/server
(Debian 3.0r1 on i686)
Thanks
--with-postgres-includes=`/usr/local/pgsql/include
/usr/local/pgsql/include/internal'
this works for me....note space between dirs & the ` and ' .....hope
that helps
....bill sneed....
...prospect, maine...
David Finlayson wrote:
This may be obvious to some, but how do you add multiple directories to an
option in the configure script?
in particular:
--with-postgres-includes=DIRS
I have header files in both /usr/include/postgres and
/usr/include/postgres/server
--with-postgres-includes='/usr/include/postgres /usr/include/postgres/server'
--
Glynn Clements <glynn.clements@virgin.net>
Thanks, that did the trick.
--
David Finlayson
University of Washington
School of Oceanography
Marine Science Building (MSB) 112
Seattle, WA 98195
(206) 616-9407
http://students.washington.edu/dfinlays
On Wed, 12 Mar 2003, Glynn Clements wrote:
David Finlayson wrote:
> This may be obvious to some, but how do you add multiple directories to an
> option in the configure script?
>
> in particular:
>
> --with-postgres-includes=DIRS
>
> I have header files in both /usr/include/postgres and
> /usr/include/postgres/server
--with-postgres-includes='/usr/include/postgres /usr/include/postgres/server'