From: Brian Aker Date: Fri, 18 Oct 2013 07:06:29 +0000 (-0700) Subject: Update for mavericks X-Git-Tag: 1.0.18~15^2~1 X-Git-Url: https://git.m6w6.name/?a=commitdiff_plain;h=f5f501a500797876891b7aa153934e9855073603;p=awesomized%2Flibmemcached Update for mavericks --- diff --git a/bootstrap.sh b/bootstrap.sh index abb117f7..c3347d4a 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -223,8 +223,16 @@ set_VENDOR_RELEASE () echo "mountain_lion" VENDOR_RELEASE='mountain_lion' ;; + 10.9) + echo "mavericks" + VENDOR_RELEASE='mavericks' + ;; + 10.9.*) + echo "mavericks" + VENDOR_RELEASE='mavericks' + ;; *) - echo $VENDOR_RELEASE + echo $release VENDOR_RELEASE='unknown' ;; esac @@ -420,10 +428,6 @@ run_configure () ret=1; # If we are executing on OSX use CLANG, otherwise only use it if we find it in the ENV case $HOST_OS in - *-darwin-*) - run CC=clang CXX=clang++ $CONFIGURE "$BUILD_CONFIGURE_ARG" || die "Cannot execute CC=clang CXX=clang++ configure $BUILD_CONFIGURE_ARG" - ret=$? - ;; rhel-5*) command_exists 'gcc44' || die "Could not locate gcc44" run CC=gcc44 CXX=gcc44 $top_srcdir/configure "$BUILD_CONFIGURE_ARG" || die "Cannot execute CC=gcc44 CXX=gcc44 configure $BUILD_CONFIGURE_ARG"