fix: noconfirm auto-selects first AUR match

This commit is contained in:
2026-05-08 11:01:02 +01:00
parent d39cdc3fd9
commit 153cca6132
8056 changed files with 1983098 additions and 779 deletions
@@ -0,0 +1,24 @@
project('D Multiple Versioned Shared Libraries', 'd')
dc = meson.get_compiler('d')
if dc.get_id() == 'gcc'
if dc.version().version_compare('< 8')
error('MESON_SKIP_TEST: GDC < 8.0 cannot build shared libraries')
endif
endif
ldyn1 = shared_library('say1',
'say1.d',
install: true,
version : '1.2.3',
soversion : '0'
)
ldyn2 = shared_library('say2',
'say2.d',
install: true,
version : '1.2.4',
soversion : '1'
)
ed = executable('app_d', 'app.d', link_with: [ldyn1, ldyn2], install: true)
test('multilink_test', ed)