
In order to use gettext on systems where it is not part of libc, the correct linker flags are needed in libalpm.pc (for static compilation). This has never been the case. The new meson build system currently only checks for ngettext in libc, but does not fall back to searching for the existence of -lintl; add it to the libalpm dependencies. Signed-off-by: Eli Schwartz <eschwartz@archlinux.org> Signed-off-by: Allan McRae <allan@archlinux.org>
13 lines
383 B
PkgConfig
13 lines
383 B
PkgConfig
prefix=@prefix@
|
|
exec_prefix=@exec_prefix@
|
|
libdir=@libdir@
|
|
includedir=@includedir@
|
|
|
|
Name: libalpm
|
|
Description: Arch Linux package management library
|
|
URL: http://www.archlinux.org/pacman/
|
|
Version: @LIB_VERSION@
|
|
Requires.private: libarchive @pc_crypto@ @pc_libcurl@ @pc_gpgme@
|
|
Cflags: -I${includedir} @LFS_CFLAGS@
|
|
Libs: -L${libdir} -lalpm
|
|
Libs.private: @LIBS@ @pc_gpgme_libs@ @LIBINTL@
|