mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-03 11:51:11 +00:00
aabf77aa41
Autoconf 2.60 and later insist on using ${datarootdir}, rather than the derived ${datadir} (although the latter defaults to the former, it is possible to set configure arguments so that they differ): config.status: creating libvirt.pc config.status: WARNING: 'libvirt.pc.in' seems to ignore the --datarootdir setting This patch follows the autoconf manual's suggestions for how to support 2.59 (RHEL 5) and newer simultaneously. * libvirt.pc.in (datarootdir): Define, so ${datadir} will not ignore datarootdir when using newer autoconf.
16 lines
348 B
PkgConfig
16 lines
348 B
PkgConfig
prefix=@prefix@
|
|
exec_prefix=@exec_prefix@
|
|
libdir=@libdir@
|
|
includedir=@includedir@
|
|
datarootdir=@datarootdir@
|
|
|
|
libvirt_api=@datadir@/libvirt/api/libvirt-api.xml
|
|
libvirt_qemu_api=@datadir@/libvirt/api/libvirt-qemu-api.xml
|
|
|
|
Name: libvirt
|
|
Version: @VERSION@
|
|
Description: libvirt library
|
|
Requires:
|
|
Libs: -L${libdir} -lvirt @LIBS@
|
|
Cflags: -I${includedir}
|