From c1d6bffe9ba81c265042859dddf3b39be87c161b Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Sat, 11 Apr 2009 10:15:12 -0400 Subject: Build system improvements for common tools Allows building shared or static libraries using autotools and provides a pkg-config file to simplify inclusion into other parts of the project (or other projects in the future) For now, we will statically link the collection library and INI parser. --- common/collection/collection.pc.in | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 common/collection/collection.pc.in (limited to 'common/collection/collection.pc.in') diff --git a/common/collection/collection.pc.in b/common/collection/collection.pc.in new file mode 100644 index 00000000..c73a588c --- /dev/null +++ b/common/collection/collection.pc.in @@ -0,0 +1,11 @@ +prefix=@prefix@ +exec_prefix=@exec_prefix@ +libdir=@libdir@ +includedir=@includedir@ + +Name: collection +Description: A data-type to collect data in a heirarchical structure for easy iteration and serialization +Version: @PACKAGE_VERSION@ +Libs: -L${libdir} -lcollection +Cflags: -I${includedir} +URL: http://fedorahosted.org/sssd/ -- cgit