wrong postgresql client build with zabbix-server

Hi all,

With the latest zabbix22-server-2.2.3_1 I get built with poudriere I get the wrong postgresql90-client-9.0.17 client. I need a postgresql-client from PostgreQL version v93.

My 100_x64-make.conf has this value:
Code:
DEFAULT_PGSQL_VER=93
I found this in my build logfile:
Code:
/!\ WARNING /!\
DEFAULT_PGSQL_VER is defined, consider using DEFAULT_VERSIONS=pgsql=9.3 instead

===>    Verifying for libpq.so.5 in /usr/ports/databases/postgresql90-client
===>   Installing existing package /packages/All/postgresql90-client-9.0.17.txz
Installing postgresql90-client-9.0.17... done
The PostgreSQL port has a collection of "side orders":

Why does poudriere build a postgresql90-client-9.0.17 and not a v93 client?

Please advise,
Thanks

Stefan
 
parcival said:
My 100_x64-make.conf have this value:
Code:
DEFAULT_PGSQL_VER=93
This is not correct any more.

You need:
Code:
DEFAULT_VERSIONS=pgsql=9.3
 
It should, yes.

Code:
DEFAULT_VERSIONS= pgsql=9.5 php=5.5

Have a look at /usr/ports/Mk/bsd.default-versions.mk.
 
Back
Top