Re: Missing pg_config on SuSE SLES 12 for PostgreSQL 10

Поиск
Список
Период
Сортировка
От Matthias Apitz
Тема Re: Missing pg_config on SuSE SLES 12 for PostgreSQL 10
Дата
Msg-id 20190427141115.GA6004@c720-r342378
обсуждение исходный текст
Ответ на Re: Missing pg_config on SuSE SLES 12 for PostgreSQL 10  (Andrew Gierth <andrew@tao11.riddles.org.uk>)
Список pgsql-general
El día sábado, abril 27, 2019 a las 02:39:54p. m. +0100, Andrew Gierth escribió:

> >>>>> "Matthias" == Matthias Apitz <guru@unixarea.de> writes:
>
>  Matthias> There is no cmd 'pg_config'. Can I compile this from source?
>
> Some distros separate out a 'libpq' package, and have a 'libpq-devel'
> package with pg_config in it. Did you look for that?

Yes, it isn't there either. Meanwhile I wrote my own 'pg_config' as:

$ cat /opt/bin/pg_config
#!/bin/sh

test $1 = '--version'   && echo 'PostgreSQL 10.4'
test $1 = '--bindir'    && echo '/usr/pgsql-10/bin'
test $1 = '--configure' && echo ''
exit 0

and with this the building went fine:


$ /usr/local/sisis-pap/perlbrew/bin/cpanm DBD::Pg
--> Working on DBD::Pg
Fetching http://www.cpan.org/authors/id/T/TU/TURNSTEP/DBD-Pg-3.8.0.tar.gz ... OK
Configuring DBD-Pg-3.8.0 ... OK
Building and testing DBD-Pg-3.8.0 ... OK
Successfully installed DBD-Pg-3.8.0
1 distribution installed

    matthias

--
Matthias Apitz, ✉ guru@unixarea.de, http://www.unixarea.de/ +49-176-38902045
Public GnuPG key: http://www.unixarea.de/key.pub

Вложения

В списке pgsql-general по дате отправления:

Предыдущее
От: Christoph Moench-Tegeder
Дата:
Сообщение: Re: Missing pg_config on SuSE SLES 12 for PostgreSQL 10
Следующее
От: Adrian Klaver
Дата:
Сообщение: Re: Missing pg_config on SuSE SLES 12 for PostgreSQL 10