mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-15 10:57:02 +08:00
The test targets libpq's options, so 'src/test/interfaces/libpq/t' is a more natural place for it. While doing this, I noticed that I had missed adding the libpq_encryption subdir to the Makefile. That's why this commit only needs to remove it from the meson.build file. Per Peter Eisentraut's suggestion. Discussion: https://www.postgresql.org/message-id/09d4bf5d-d0fa-4c66-a1d7-5ec757609646@eisentraut.org
28 lines
366 B
Meson
28 lines
366 B
Meson
# Copyright (c) 2022-2024, PostgreSQL Global Development Group
|
|
|
|
subdir('regress')
|
|
subdir('isolation')
|
|
|
|
subdir('authentication')
|
|
subdir('recovery')
|
|
subdir('subscription')
|
|
subdir('modules')
|
|
|
|
if ssl.found()
|
|
subdir('ssl')
|
|
endif
|
|
|
|
if ldap.found()
|
|
subdir('ldap')
|
|
endif
|
|
|
|
if gssapi.found()
|
|
subdir('kerberos')
|
|
endif
|
|
|
|
if icu.found()
|
|
subdir('icu')
|
|
endif
|
|
|
|
subdir('perl')
|