X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=configure.ac;h=978704cfbf307457fb33e5ce0793f0350cbae4f6;hb=c5e71b137f1ea8e92b41315b8f5c9be5f38bf699;hp=f074735b09a64dfc3625a787ee10595a6fe1ba41;hpb=5feb4925c499625ba85b9976643f189a9355297c;p=userspace-rcu.git diff --git a/configure.ac b/configure.ac index f074735..978704c 100644 --- a/configure.ac +++ b/configure.ac @@ -6,7 +6,7 @@ dnl Process this file with autoconf to produce a configure script. # Project version information m4_define([urcu_version_major], [0]) -m4_define([urcu_version_minor], [14]) +m4_define([urcu_version_minor], [15]) m4_define([urcu_version_patch], [0]) m4_define([urcu_version_dev_stage], [-pre]) m4_define([urcu_version], urcu_version_major[.]urcu_version_minor[.]urcu_version_patch[]urcu_version_dev_stage) @@ -51,7 +51,7 @@ AM_SILENT_RULES([yes]) ## ## AS_CASE([$host], - [*-cygwin*], [LT_NO_UNDEFINED="-no-undefined"] + [*-cygwin* | *-msys*], [LT_NO_UNDEFINED="-no-undefined"] ) @@ -325,50 +325,50 @@ AC_OUTPUT # Mini-report on what will be built. # -PPRINT_INIT -PPRINT_SET_INDENT(1) -PPRINT_SET_TS(38) +AE_PPRINT_INIT +AE_PPRINT_SET_INDENT(1) +AE_PPRINT_SET_TS(38) AS_ECHO -AS_ECHO("${PPRINT_COLOR_BLDBLU}Userspace-RCU $PACKAGE_VERSION${PPRINT_COLOR_RST}") +AS_ECHO("${AE_PPRINT_COLOR_BLDBLU}Userspace-RCU $PACKAGE_VERSION${AE_PPRINT_COLOR_RST}") AS_ECHO -PPRINT_SUBTITLE([Features]) +AE_PPRINT_SUBTITLE([Features]) -PPRINT_PROP_STRING([Target architecture], $host_cpu) +AE_PPRINT_PROP_STRING([Target architecture], $host_cpu) # SMP support enabled/disabled AE_IS_FEATURE_ENABLED([smp-support]) && value=1 || value=0 -PPRINT_PROP_BOOL([SMP support], $value) +AE_PPRINT_PROP_BOOL([SMP support], $value) # TLS AE_IS_FEATURE_ENABLED([compiler-tls]) && value="compiler TLS" || value="pthread_getspecific()" -PPRINT_PROP_STRING([Thread Local Storage (TLS)], [$value]) +AE_PPRINT_PROP_STRING([Thread Local Storage (TLS)], [$value]) # clock_gettime() available test "x$ac_cv_search_function_clock_gettime" != "xno" && value=1 || value=0 -PPRINT_PROP_BOOL([clock_gettime()], $value) +AE_PPRINT_PROP_BOOL([clock_gettime()], $value) # Require membarrier AE_IS_FEATURE_ENABLED([sys-membarrier-fallback]) && value=0 || value=1 -PPRINT_PROP_BOOL([Require membarrier], $value) +AE_PPRINT_PROP_BOOL([Require membarrier], $value) # RCU debug enabled/disabled AE_IS_FEATURE_ENABLED([rcu-debug]) && value=1 || value=0 -PPRINT_PROP_BOOL([Internal debugging], $value) +AE_PPRINT_PROP_BOOL([Internal debugging], $value) # rculfhash iterator debug enabled/disabled AE_IS_FEATURE_ENABLED([cds-lfht-iter-debug]) && value=1 || value=0 -PPRINT_PROP_BOOL([Lock-free HT iterator debugging], $value) +AE_PPRINT_PROP_BOOL([Lock-free HT iterator debugging], $value) -PPRINT_PROP_BOOL([Multi-flavor support], 1) +AE_PPRINT_PROP_BOOL([Multi-flavor support], 1) report_bindir="`eval eval echo $bindir`" report_libdir="`eval eval echo $libdir`" # Print the bindir and libdir this 'make install' will install into. AS_ECHO -PPRINT_SUBTITLE([Install directories]) -PPRINT_PROP_STRING([Binaries], [$report_bindir]) -PPRINT_PROP_STRING([Libraries], [$report_libdir]) +AE_PPRINT_SUBTITLE([Install directories]) +AE_PPRINT_PROP_STRING([Binaries], [$report_bindir]) +AE_PPRINT_PROP_STRING([Libraries], [$report_libdir])