Fix missing urcu_ref.h in Makefile.am v0.4.8
authorMathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
Fri, 24 Sep 2010 20:48:19 +0000 (16:48 -0400)
committerMathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
Fri, 24 Sep 2010 20:48:19 +0000 (16:48 -0400)
The 0.4.7 tarball is missing 'urcu/urcu_ref.h', causing the following
error:

      CC     rculfqueue.lo
    In file included from rculfqueue.c:26:
    urcu/rculfqueue.h:26:22: error: urcu_ref.h: No such file or directory
    In file included from rculfqueue.c:26:
    urcu/rculfqueue.h:45: error: field ‘ref’ has incomplete type
    In file included from rculfqueue.c:27:
    urcu/rculfqueue-static.h:29:27: error: urcu/urcu_ref.h: No such file or directory

Reported-by: Jon Bernard <jbernard@debian.org>
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Makefile.am
configure.ac

index 84c9c493d62c77dbb6db61f756a39ffcf910c124..79a7152c9adcd6586cb74f91560586f844419e20 100644 (file)
@@ -10,7 +10,8 @@ nobase_dist_include_HEADERS = urcu/compiler.h urcu/hlist.h urcu/list.h \
                urcu/uatomic_generic.h urcu/arch_generic.h urcu/wfstack.h \
                urcu/wfqueue.h urcu/rculfstack.h urcu/rculfqueue.h \
                urcu/wfqueue-static.h urcu/wfstack-static.h \
-               urcu/rculfqueue-static.h urcu/rculfstack-static.h
+               urcu/rculfqueue-static.h urcu/rculfstack-static.h \
+               urcu/urcu_ref.h
 nobase_nodist_include_HEADERS = urcu/arch.h urcu/uatomic_arch.h urcu/config.h
 
 EXTRA_DIST = $(top_srcdir)/urcu/arch_*.h $(top_srcdir)/urcu/uatomic_arch_*.h \
index 2f303d2f8d7406885cac049d50d21696f7687183..89bdb6c89f88513f79814a9d6e28f83573db4349 100644 (file)
@@ -2,7 +2,7 @@
 # Process this file with autoconf to produce a configure script.
 
 
-AC_INIT([userspace-rcu], [0.4.7], [mathieu dot desnoyers at efficios dot com])
+AC_INIT([userspace-rcu], [0.4.8], [mathieu dot desnoyers at efficios dot com])
 AC_CONFIG_AUX_DIR([config])
 AC_CANONICAL_TARGET
 AC_CANONICAL_HOST
This page took 0.025625 seconds and 4 git commands to generate.