mirror of
https://git.proxmox.com/git/mirror_corosync
synced 2026-01-20 04:51:21 +00:00
IPC: return 0/-ENOBUFS from message handler IPC: use the new rate_limit API to improve perf. CPG: add send_async API & hook up flow control IPC: Fix flow control getting stuck. IPC: Port the remaining libs to use libqb IPC IPC: remove libqb flowcontrol API TEST: put cpg_dispatch() in it's own thread IPC: cleanup ipc_glue.c name everything cs_ipcs_*() IPC: add back statistics IPC: remove coroipcc_ symbols from lib*.versions IPC: init each se's IPC as it is loaded. IPC: use the new connection_closed() event to free the context. IPC: re-add zero copy functionality back IPC: remove cpg_mcast_joined_async() and make it the default -> now cpg_mcast_joined() == cpg_mcast_joined_async() libqb: expose a libqb error converter libqb: add missing error conversions libqb: remove repeat try loop in lib/cpg.c CPG: fix zero copy mcast CPG: use newer return codes Add ENOTCONN to qb_to_cs_error() libqb: fix error conversion from errno to cs_error_t in confdb libqb: change errno_to_cs to qb_to_cs_error libqb: add a cs_strerror() to get a more meaningful message libqb: fix some confusing error conversions. libqb: set the timeout on recv's to -1 (wait forever) Signed-off-by: Angus Salkeld <asalkeld@redhat.com> Reviewed-by: Steven Dake <sdake@redhat.com>
77 lines
2.7 KiB
Makefile
77 lines
2.7 KiB
Makefile
# Copyright (c) 2009 Red Hat, Inc.
|
|
#
|
|
# All rights reserved.
|
|
#
|
|
# This software licensed under BSD license, the text of which follows:
|
|
#
|
|
# Redistribution and use in source and binary forms, with or without
|
|
# modification, are permitted provided that the following conditions are met:
|
|
#
|
|
# - Redistributions of source code must retain the above copyright notice,
|
|
# this list of conditions and the following disclaimer.
|
|
# - Redistributions in binary form must reproduce the above copyright notice,
|
|
# this list of conditions and the following disclaimer in the documentation
|
|
# and/or other materials provided with the distribution.
|
|
# - Neither the name of the MontaVista Software, Inc. nor the names of its
|
|
# contributors may be used to endorse or promote products derived from this
|
|
# software without specific prior written permission.
|
|
#
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
# SUBSTITUTE GOODS OR ENGINES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
|
|
# THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
MAINTAINERCLEANFILES = Makefile.in
|
|
|
|
EXTRA_DIST = libtemplate.pc.in corosync.pc.in
|
|
|
|
LIBS = cfg confdb cpg evs pload quorum \
|
|
totem_pg votequorum sam
|
|
|
|
target_LIBS = $(LIBS:%=lib%.pc)
|
|
|
|
target_PACKAGE = corosync.pc
|
|
|
|
lib%.pc: libtemplate.pc.in Makefile
|
|
rm -f $@-t $@
|
|
sed \
|
|
-e 's#@''PREFIX@#$(exec_prefix)#g' \
|
|
-e 's#@''LIBDIR@#$(libdir)#g' \
|
|
-e 's#@''LIBVERSION@#$(VERSION)#g' \
|
|
-e 's#@''LIB@#'$(*:lib%=%)'#g' \
|
|
$< > $@-t
|
|
chmod a-w $@-t
|
|
mv $@-t $@
|
|
|
|
%: %.in Makefile
|
|
rm -f $@-t $@
|
|
sed \
|
|
-e 's#@''PREFIX@#$(exec_prefix)#g' \
|
|
-e 's#@''LIBDIR@#$(libdir)#g' \
|
|
-e 's#@''LIBVERSION@#$(VERSION)#g' \
|
|
-e 's#@''COROLCRSODIR@#$(LCRSODIR)#g' \
|
|
-e 's#@''COROSOCKETDIR@#$(SOCKETDIR)#g' \
|
|
$< > $@-t
|
|
chmod a-w $@-t
|
|
mv $@-t $@
|
|
|
|
all-local: $(target_LIBS) $(target_PACKAGE)
|
|
|
|
install-exec-local: $(target_LIBS) $(target_PACKAGE)
|
|
$(INSTALL) -d $(DESTDIR)/$(libdir)/pkgconfig
|
|
$(INSTALL) -m 644 $(target_LIBS) $(target_PACKAGE) $(DESTDIR)/$(libdir)/pkgconfig
|
|
|
|
uninstall-local:
|
|
cd $(DESTDIR)/$(libdir)/pkgconfig && rm -f $(target_LIBS) $(target_PACKAGE)
|
|
rmdir $(DESTDIR)/$(libdir)/pkgconfig 2> /dev/null || :
|
|
|
|
clean-local:
|
|
rm -f *.pc
|