configure: build with -pthread unconditionally, don't test for -pipe or -D_FORTIFY_SOURCE.

This commit is contained in:
Juan RP 2011-02-27 15:44:44 +01:00
parent 007d6b4bd5
commit 35dc0aa5ad

6
configure vendored
View File

@ -162,8 +162,9 @@ else
echo "Using compiler $CC" echo "Using compiler $CC"
fi fi
echo "CC = $CC" >>$CONFIG_MK echo "CC = $CC" >>$CONFIG_MK
echo "CFLAGS = -pthread" >>$CONFIG_MK
if [ -n "$CFLAGS" ]; then if [ -n "$CFLAGS" ]; then
echo "CFLAGS = $CFLAGS" >>$CONFIG_MK echo "CFLAGS += $CFLAGS" >>$CONFIG_MK
fi fi
echo "LDFLAGS = -L\$(TOPDIR)/lib -L\$(LIBDIR)" >>$CONFIG_MK echo "LDFLAGS = -L\$(TOPDIR)/lib -L\$(LIBDIR)" >>$CONFIG_MK
if [ -n "$LDFLAGS" ]; then if [ -n "$LDFLAGS" ]; then
@ -255,7 +256,7 @@ if [ $? -eq 0 ]; then
fi fi
fi fi
if [ $? -eq 0 ]; then if [ $? -eq 0 ]; then
check_compiler_flag "_FORTIFY_SOURCE=2" D CPPFLAGS echo "CPPFLAGS += -D_FORTIFY_SOURCE=2" >>$CONFIG_MK
fi fi
check_compiler_flag "visibility=default" f SHAREDLIB_CFLAGS check_compiler_flag "visibility=default" f SHAREDLIB_CFLAGS
if [ $? -eq 0 ]; then if [ $? -eq 0 ]; then
@ -264,7 +265,6 @@ if [ $? -eq 0 ]; then
fi fi
check_compiler_flag "std=c99" "" CFLAGS check_compiler_flag "std=c99" "" CFLAGS
check_compiler_flag "l,--as-needed" W LDFLAGS check_compiler_flag "l,--as-needed" W LDFLAGS
check_compiler_flag "pipe" "" CFLAGS
# #
# Check for -Wl,--export-dynamic and if it fails, try -rdynamic. # Check for -Wl,--export-dynamic and if it fails, try -rdynamic.