mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-10 19:45:01 -05:00
088649534e
Large file support is enabled by our configure script as required. If anything linking to libalpm does not also define large file support, there will be differences in the size of off_t which are not caught until runtime. Add the required CFLAGS to the pkg-config file so that users of libalpm know what flags are required. Signed-off-by: Allan McRae <allan@archlinux.org>
13 lines
352 B
PkgConfig
13 lines
352 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@
|
|
Cflags: -I${includedir} @LFS_CFLAGS@
|
|
Libs: -L${libdir} -lalpm
|
|
Libs.private: @LIBS@ @LIBARCHIVE_LIBS@ @LIBSSL_LIBS@ @LIBCURL_LIBS@ @GPGME_LIBS@
|