Add openzap.pc pkg-config file
git-svn-id: http://svn.openzap.org/svn/openzap/trunk@706 a93c3328-9c30-0410-af19-c9cd2b2d52af
This commit is contained in:
parent
80d9fcf1bc
commit
060872082b
|
@ -43,6 +43,15 @@ LTCOMPILE = $(LIBTOOL) --mode=compile --tag=CC $(COMPILE)
|
||||||
LINK = $(LIBTOOL) --mode=link --tag=CC $(CC) $(MY_CFLAGS) $(LDFLAGS) -o $@
|
LINK = $(LIBTOOL) --mode=link --tag=CC $(CC) $(MY_CFLAGS) $(LDFLAGS) -o $@
|
||||||
|
|
||||||
|
|
||||||
|
#
|
||||||
|
# GNU pkgconfig file
|
||||||
|
#
|
||||||
|
EXTRA_DIST = openzap.pc.in
|
||||||
|
|
||||||
|
pkgconfigdir = $(libdir)/pkgconfig
|
||||||
|
pkgconfig_DATA = openzap.pc
|
||||||
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# libopenzap
|
# libopenzap
|
||||||
#
|
#
|
||||||
|
|
|
@ -160,5 +160,6 @@ AM_CONDITIONAL([LIBPRI],[test "${enable_libpri}" = "yes"])
|
||||||
COMP_VENDOR_CFLAGS="$COMP_VENDOR_CFLAGS"
|
COMP_VENDOR_CFLAGS="$COMP_VENDOR_CFLAGS"
|
||||||
AC_SUBST(COMP_VENDOR_CFLAGS)
|
AC_SUBST(COMP_VENDOR_CFLAGS)
|
||||||
AC_CONFIG_FILES([Makefile
|
AC_CONFIG_FILES([Makefile
|
||||||
|
openzap.pc
|
||||||
mod_openzap/Makefile])
|
mod_openzap/Makefile])
|
||||||
AC_OUTPUT
|
AC_OUTPUT
|
||||||
|
|
|
@ -0,0 +1,17 @@
|
||||||
|
#
|
||||||
|
# OpenZAP pkg-config file
|
||||||
|
#
|
||||||
|
prefix=@prefix@
|
||||||
|
exec_prefix=${prefix}
|
||||||
|
libdir=${exec_prefix}/lib
|
||||||
|
includedir=${prefix}/include
|
||||||
|
|
||||||
|
Name: OpenZAP
|
||||||
|
Description:
|
||||||
|
Version: @PACKAGE_VERSION@
|
||||||
|
URL: http://www.openzap.org/
|
||||||
|
Requires:
|
||||||
|
Conflicts:
|
||||||
|
Libs: -L${libdir} -lopenzap
|
||||||
|
Libs.private: -lm
|
||||||
|
Cflags: -I${includedir}
|
Loading…
Reference in New Issue