Steven Dake wrote: > This patch creates a shared library out of the ipc system and makes it > generically useful by third parties. It also adds a pthread_spin_lock > check to configure.ac. > > Finally it removes unnecessary serialization in coropoll which results > in a heavy performance penalty.
With the following, "make distcheck" passes once again: >From e340d6698897a4be6a36ef2e4be662ae92ef34eb Mon Sep 17 00:00:00 2001 From: Jim Meyering <[email protected]> Date: Fri, 20 Mar 2009 11:55:32 +0100 Subject: [PATCH] avoid "make distcheck" failure * Makefile.am (COROIPCS_SRC): Add coroipcs.h, so this file is distributed. --- exec/Makefile.am | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/exec/Makefile.am b/exec/Makefile.am index 8f9155a..9c99665 100644 --- a/exec/Makefile.am +++ b/exec/Makefile.am @@ -38,7 +38,7 @@ INCLUDES = -I$(top_builddir)/include -I$(top_srcdir)/include TOTEM_SRC = coropoll.c totemip.c totemnet.c totemrrp.c \ totemsrp.c totemmrp.c totempg.c crypto.c wthread.c LOGSYS_SRC = wthread.c logsys.c -COROIPCS_SRC = coroipcs.c +COROIPCS_SRC = coroipcs.c coroipcs.h LCRSO_SRC = objdb.c vsf_ykd.c coroparse.c quorum.c vsf_quorum.c LCRSO_OBJS = $(LCRSO_SRC:%.c=%.o) -- 1.6.2.rc1.285.gc5f54 _______________________________________________ Openais mailing list [email protected] https://lists.linux-foundation.org/mailman/listinfo/openais
