move config.h to urcu/config.h and install it
authorPierre-Marc Fournier <pierre-marc.fournier@polymtl.ca>
Thu, 8 Oct 2009 20:40:15 +0000 (16:40 -0400)
committerMathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
Thu, 8 Oct 2009 20:40:15 +0000 (16:40 -0400)
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
Makefile.am
bootstrap
configure.ac
tests/Makefile.am
urcu/arch_ppc.h
urcu/arch_s390.h
urcu/arch_x86.h

index 28e414c3c186fffcec498c216ae17ecaaaae50d8..df67b1e3fef0fd8c8f7ce71d37b7f0a994a49987 100644 (file)
@@ -3,7 +3,7 @@ INCLUDES = -I$(top_builddir)/urcu
 
 AM_LDFLAGS=-lpthread
 
-SUBDIRS = tests
+SUBDIRS = tests
 
 include_HEADERS = urcu.h $(top_srcdir)/urcu-*.h
 nobase_dist_include_HEADERS = urcu/compiler.h urcu/hlist.h urcu/list.h \
index c507425667e579d73a2a31c27b0e7a96baa4e8da..530ec0a04457638230e4153f969c285b95e7454b 100755 (executable)
--- a/bootstrap
+++ b/bootstrap
@@ -6,7 +6,6 @@ if [ ! -e config ]; then
 fi
 aclocal
 libtoolize --force --copy
-autoheader
 automake --add-missing --copy
 autoconf
 
index 2c1b6c00b26ce5c2bebe19c0e2eca4098459cd5f..e7cc18106a2a4f2ce5f9024118ebda835c975c53 100644 (file)
@@ -13,7 +13,7 @@ AH_TEMPLATE([CONFIG_SMP], [Enable SMP support. With SMP support enabled, uniproc
 AH_TEMPLATE([CONFIG_HAVE_FENCE], [Defined when on a system that has memory fence
 instructions.])
 AH_TEMPLATE([CONFIG_HAVE_FUTEX], [Defined when on a system with futex support.])
-AC_CONFIG_HEADERS([config.h])
+AC_CONFIG_HEADERS([urcu/config.h])
 
 # Checks for programs.
 AC_PROG_CC
index fdc82b11303e7a506dde08c0049550d01b20c349..748e77019d6987c9927194144fbc7300c86ec8ba 100644 (file)
@@ -1,5 +1,5 @@
 AM_LDFLAGS=-lpthread
-AM_CFLAGS=-I$(top_srcdir)
+AM_CFLAGS=-I$(top_srcdir) -I$(top_builddir)
 
 noinst_PROGRAMS = test_urcu test_urcu_dynamic_link test_urcu_timing \
         test_rwlock_timing test_rwlock test_perthreadlock_timing \
index 40a4359417872c0099a59d0d01d8ac2065447a26..2f9460b8542d6a8a43baa5f55c59b324284e34d2 100644 (file)
@@ -23,7 +23,7 @@
  */
 
 #include <urcu/compiler.h>
-#include "config.h"
+#include <urcu/config.h>
 
 #define CONFIG_HAVE_FENCE 1
 #define CONFIG_HAVE_MEM_COHERENCY
index 1a43c6cff6a22847f288241fed60db77b3fcb933..aec91b92c1f6fef6d771e20511a8b5428c0b8e8d 100644 (file)
@@ -29,7 +29,7 @@
  */
 
 #include <compiler.h>
-#include "config.h"
+#include <config/config.h>
 
 #define CONFIG_HAVE_MEM_COHERENCY
 
index 7d3d76db7a2c19ed5890869817109582a657073b..a72ef064d236c21d45086fd86293edd251943591 100644 (file)
@@ -23,7 +23,7 @@
  */
 
 #include <urcu/compiler.h>
-#include "config.h"
+#include <urcu/config.h>
 
 #define CONFIG_HAVE_MEM_COHERENCY
 
This page took 0.027203 seconds and 4 git commands to generate.