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,6 @@
int some_undefined_func (void);
int bar_system_value (void)
{
return some_undefined_func ();
}
@@ -0,0 +1,4 @@
int faa_system_value (void)
{
return 1969;
}
@@ -0,0 +1,4 @@
int foo_system_value (void)
{
return 42;
}
@@ -0,0 +1,22 @@
project('system library', 'c', default_options : ['b_lundef=false'])
shared_library('foo_in_system', 'foo.c', install : true)
l = shared_library('faa_pkg', 'faa.c', install: true)
if host_machine.system() == 'darwin'
ldflags = ['-framework', 'CoreFoundation', '-framework', 'CoreMedia']
allow_undef_args = ['-Wl,-undefined,dynamic_lookup']
else
ldflags = ['-Wl,-rpath,${libdir}']
allow_undef_args = []
endif
pkg = import('pkgconfig')
pkg.generate(name: 'faa_pkg',
libraries: [l] + ldflags,
description: 'FAA, a pkg-config test library')
# cygwin DLLs can't have undefined symbols
if host_machine.system() != 'cygwin'
shared_library('bar_in_system', 'bar.c', install : true, link_args : allow_undef_args)
endif