From 743d22b5f0592d0dba1d4d9040d998c9d711603e 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. --- common/refarray/ref_array.pc.in | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 common/refarray/ref_array.pc.in (limited to 'common/refarray/ref_array.pc.in') diff --git a/common/refarray/ref_array.pc.in b/common/refarray/ref_array.pc.in new file mode 100644 index 000000000..1fc06f71b --- /dev/null +++ b/common/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