mirror of https://github.com/postgres/postgres
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
376 B
22 lines
376 B
![]()
3 years ago
|
if not ssl.found()
|
||
|
subdir_done()
|
||
|
endif
|
||
|
|
||
|
sslinfo = shared_module('sslinfo',
|
||
|
files(
|
||
|
'sslinfo.c',
|
||
|
),
|
||
|
kwargs: contrib_mod_args + {
|
||
|
'dependencies': [ssl, contrib_mod_args['dependencies']],
|
||
|
}
|
||
|
)
|
||
|
contrib_targets += sslinfo
|
||
|
|
||
|
install_data(
|
||
|
'sslinfo--1.0--1.1.sql',
|
||
|
'sslinfo--1.1--1.2.sql',
|
||
|
'sslinfo--1.2.sql',
|
||
|
'sslinfo.control',
|
||
|
kwargs: contrib_data_args,
|
||
|
)
|