Fixing a couple of items before releasing.
authorBrian Aker <brian@tangent.org>
Mon, 17 Sep 2012 09:05:33 +0000 (05:05 -0400)
committerBrian Aker <brian@tangent.org>
Mon, 17 Sep 2012 09:05:33 +0000 (05:05 -0400)
configure.ac
m4/pandora_canonical.m4
m4/pandora_check_compiler_version.m4
m4/pandora_platform.m4

index 1cab94d764d4931f0b42716f9e7a69a0a32aef16..48e81d0241459a4dcffb32a57ae07edd3c207663 100644 (file)
@@ -7,7 +7,7 @@
 # Use and distribution licensed under the BSD license.  See
 # the COPYING file in this directory for full text.
 
-AC_INIT([libmemcached],[1.0.10],[http://libmemcached.org/])
+AC_INIT([libmemcached],[1.0.11],[http://libmemcached.org/])
 
 AC_CONFIG_AUX_DIR([config])
 
@@ -312,6 +312,10 @@ echo "   * Installation prefix:       $prefix"
 echo "   * System type:               $host_vendor-$host_os"
 echo "   * Host CPU:                  $host_cpu"
 echo "   * C Compiler:                $CC_VERSION"
+echo "   * C Flags:                   $CFLAGS"
+echo "   * C++ Compiler:              $CXX"
+echo "   * C++ Flags:                 $CXX_VERSION"
+echo "   * CPP Flags:                 $CPPFLAGS"
 echo "   * Assertions enabled:        $ac_cv_assert"
 echo "   * Debug enabled:             $with_debug"
 echo "   * Warnings as failure:       $ac_cv_warnings_as_errors"
index 81d46149ec69595708f364a723f941906f8f1649..9f6d514c5d46621300e062ec5eb52aed4757bdd3 100644 (file)
@@ -125,7 +125,6 @@ AC_DEFUN([PANDORA_CANONICAL_TARGET],[
     AC_CONFIG_LIBOBJ_DIR([gnulib])
   ])
 
-  PANDORA_CHECK_C_VERSION
   PANDORA_CHECK_CXX_VERSION
 
   AC_HEADER_TIME
index f39174ed1435b621e6fcf2706e2890f31c89ec5c..f490ef27b06fe1b4ce6ccfb9a8dfd952d28806dd 100644 (file)
@@ -6,32 +6,36 @@ dnl with or without modifications, as long as this notice is preserved.
 
 AC_DEFUN([PANDORA_CHECK_C_VERSION],[
 
-  dnl Print version of C compiler
-  AC_MSG_CHECKING("C Compiler version--$GCC")
-  AS_IF([test "$GCC" = "yes"],[
-    CC_VERSION=`$CC --version | sed 1q`
-  ],[AS_IF([test "$SUNCC" = "yes"],[
-      CC_VERSION=`$CC -V 2>&1 | sed 1q`
-    ],[
+    dnl Print version of C compiler
+    AC_MSG_CHECKING("C Compiler version--$GCC")
+    AS_IF([test "$GCC" = "yes"],[
+      CC_VERSION=`$CC --version | sed 1q` ],[
+      test "$SUNCC" = "yes"],[
+      CC_VERSION=`$CC -V 2>&1 | sed 1q` ],[
+      test "$CLANG" = "yes"],[
+      CC_VERSION=`$CC --version 2>&1 | sed 1q` ],[
       CC_VERSION=""
+      ])
+    AC_MSG_RESULT("$CC_VERSION")
+    AC_SUBST(CC_VERSION)
     ])
-  ])
-  AC_MSG_RESULT("$CC_VERSION")
-  AC_SUBST(CC_VERSION)
-])
 
 
 AC_DEFUN([PANDORA_CHECK_CXX_VERSION], [
-  dnl Print version of CXX compiler
-  AC_MSG_CHECKING("C++ Compiler version")
-  AS_IF([test "$GCC" = "yes"],[
-    CXX_VERSION=`$CXX --version | sed 1q`
-  ],[AS_IF([test "$SUNCC" = "yes"],[
-      CXX_VERSION=`$CXX -V 2>&1 | sed 1q`
-    ],[
-    CXX_VERSION=""
-    ])
+
+    dnl Check C version while at it
+    AC_REQUIRE([PANDORA_CHECK_C_VERSION])
+
+    dnl Print version of CXX compiler
+    AC_MSG_CHECKING("C++ Compiler version")
+    AS_IF([test "$GCC" = "yes"],[
+      CXX_VERSION=`$CXX --version | sed 1q` ],[
+      test "$SUNCC" = "yes"],[
+      CXX_VERSION=`$CXX -V 2>&1 | sed 1q` ],[
+      test "$CLANG" = "yes"],[
+      CXX_VERSION=`$CXX --version 2>&1 | sed 1q` ],[
+      CXX_VERSION=""
+      ])
+    AC_MSG_RESULT("$CXX_VERSION")
+AC_SUBST(CXX_VERSION)
   ])
-  AC_MSG_RESULT("$CXX_VERSION")
-  AC_SUBST(CXX_VERSION)
-])
index bd570f61736a61fe3203f43b4a43951cb1c8bfde..ee361c715b443206cbf982385fc554051caa3130 100644 (file)
@@ -94,6 +94,7 @@ AC_DEFUN([PANDORA_PLATFORM],[
 
   AC_SUBST(PANDORA_OPTIMIZE_BITFIELD)
 
+  AC_CHECK_DECL([__clang__], [CLANG="yes"], [CLANG="no"])
   AC_CHECK_DECL([__SUNPRO_C], [SUNCC="yes"], [SUNCC="no"])
   AC_CHECK_DECL([__ICC], [INTELCC="yes"], [INTELCC="no"])