From 69f65cc8b569d3a280d18ba360d3c37b7f6a76f4 Mon Sep 17 00:00:00 2001 From: Dmitri Pal Date: Wed, 23 Dec 2009 15:14:51 -0500 Subject: REFARRAY: New referenced array object This object allows creation the arrays with the reference count. Usefull when there are many instances of some object have to reference dynamically allocated array which is common for all these instances. In case of ELAPI the event object keeps a referecne to the common array of the sinks in the fail over order. We decided that it will be a common object not specific only to ELAPI. All the review concerns related to this object have been addressed in this patch. It also has been moved to the common area. --- refarray/ref_array.pc.in | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 refarray/ref_array.pc.in (limited to 'refarray/ref_array.pc.in') diff --git a/refarray/ref_array.pc.in b/refarray/ref_array.pc.in new file mode 100644 index 0000000..1fc06f7 --- /dev/null +++ b/refarray/ref_array.pc.in @@ -0,0 +1,11 @@ +prefix=@prefix@ +exec_prefix=@exec_prefix@ +libdir=@libdir@ +includedir=@includedir@ + +Name: @PACKAGE_NAME@ +Description: Reference library +Version: @PACKAGE_VERSION@ +Libs: -L${libdir} -lref_array +Cflags: -I${includedir} +URL: http://fedorahosted.org/sssd/ -- cgit