Re: Int64GetDatum
От
Tom Lane
Тема
Re: Int64GetDatum
Дата
Msg-id
17150.1271732486@sss.pgh.pa.us
Ответ на
Re: Int64GetDatum (John R Pierce)
Список
Дерево обсуждения
Int64GetDatum John R Pierce <pierce@hogranch.com>
Re: Int64GetDatum John R Pierce <pierce@hogranch.com>
Re: Int64GetDatum Tom Lane <tgl@sss.pgh.pa.us>
Re: Int64GetDatum John R Pierce <pierce@hogranch.com>
Re: Int64GetDatum Tom Lane <tgl@sss.pgh.pa.us>
Re: Int64GetDatum Greg Smith <greg@2ndquadrant.com>
Re: Int64GetDatum John R Pierce <pierce@hogranch.com>
Re: Int64GetDatum Tom Lane <tgl@sss.pgh.pa.us>
Re: Int64GetDatum John R Pierce <pierce@hogranch.com>
Re: Int64GetDatum Tom Lane <tgl@sss.pgh.pa.us>
Re: Int64GetDatum John R Pierce <pierce@hogranch.com>
Re: Int64GetDatum Bruce Momjian <bruce@momjian.us>
Re: Int64GetDatum John R Pierce <pierce@hogranch.com>
Re: Int64GetDatum Tom Lane <tgl@sss.pgh.pa.us>
Re: Int64GetDatum Bruce Momjian <bruce@momjian.us>
Re: Int64GetDatum John R Pierce <pierce@hogranch.com>
Re: Int64GetDatum Tom Lane <tgl@sss.pgh.pa.us>
Re: Int64GetDatum Bruce Momjian <bruce@momjian.us>
Re: Int64GetDatum Greg Smith <greg@2ndquadrant.com>
Re: Int64GetDatum John R Pierce <pierce@hogranch.com>
John R Pierce writes: > I don't know if the build trees can be structured so the include > directories can be differentiated the same as the bin and lib... The RPM distributions are able to deal with this without actually differentiating: if you install both 32- and 64-bit RPMs then the overlapping files are the same for both, with pg_config.h being a stub that does this: #if defined(__x86_64__) #include "pg_config_x86_64.h" #elif defined(__i386__) #include "pg_config_i386.h" ... etc ... I don't know if Solaris' package management offers the same ability, but if it does, then it could be handled like that. regards, tom lane
В списке pgsql-general по дате отправления