From: Alexander Traud Date: Thu, 21 Jun 2018 09:59:35 +0000 (+0200) Subject: BuildSystem: Enable ./configure in Solaris 11. X-Git-Tag: 15.5.0-rc1~14^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d13e6f77e21548656ccb2d812cf5304e572d077e;p=thirdparty%2Fasterisk.git BuildSystem: Enable ./configure in Solaris 11. ASTERISK-27931 Change-Id: If298ce7f03be227a3687b9c20d382c9c55a72404 --- diff --git a/autoconf/ast_check_raii.m4 b/autoconf/ast_check_raii.m4 index e39a43d2e1..571dc1891f 100644 --- a/autoconf/ast_check_raii.m4 +++ b/autoconf/ast_check_raii.m4 @@ -33,11 +33,11 @@ AC_DEFUN([AST_CHECK_RAII], [ AST_C_COMPILER_FAMILY="gcc" ],[ AC_MSG_CHECKING(for clang -fblocks) - if test "`echo "int main(){return ^{return 42;}();}" | ${CC} -o /dev/null -fblocks -x c - 2>&1`" = ""; then + if test "`echo 'int main(){return ^{return 42;}();}' | ${CC} -o /dev/null -fblocks -x c - 2>&1`" = ""; then AST_CLANG_BLOCKS_LIBS="" AST_CLANG_BLOCKS="-Wno-unknown-warning-option -fblocks" AC_MSG_RESULT(yes) - elif test "`echo "int main(){return ^{return 42;}();}" | ${CC} -o /dev/null -fblocks -x c -lBlocksRuntime - 2>&1`" = ""; then + elif test "`echo 'int main(){return ^{return 42;}();}' | ${CC} -o /dev/null -fblocks -x c -lBlocksRuntime - 2>&1`" = ""; then AST_CLANG_BLOCKS_LIBS="-lBlocksRuntime" AST_CLANG_BLOCKS="-fblocks" AC_MSG_RESULT(yes) diff --git a/configure b/configure index 71038bd813..5d52867ffb 100755 --- a/configure +++ b/configure @@ -9084,12 +9084,12 @@ else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for clang -fblocks" >&5 $as_echo_n "checking for clang -fblocks... " >&6; } - if test "`echo "int main(){return ^{return 42;}();}" | ${CC} -o /dev/null -fblocks -x c - 2>&1`" = ""; then + if test "`echo 'int main(){return ^{return 42;}();}' | ${CC} -o /dev/null -fblocks -x c - 2>&1`" = ""; then AST_CLANG_BLOCKS_LIBS="" AST_CLANG_BLOCKS="-Wno-unknown-warning-option -fblocks" { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } - elif test "`echo "int main(){return ^{return 42;}();}" | ${CC} -o /dev/null -fblocks -x c -lBlocksRuntime - 2>&1`" = ""; then + elif test "`echo 'int main(){return ^{return 42;}();}' | ${CC} -o /dev/null -fblocks -x c -lBlocksRuntime - 2>&1`" = ""; then AST_CLANG_BLOCKS_LIBS="-lBlocksRuntime" AST_CLANG_BLOCKS="-fblocks" { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5