forked from Lainports/freebsd-ports
29 lines
945 B
Text
29 lines
945 B
Text
--- configure.orig 2009-04-11 04:03:08.000000000 -0300
|
|
+++ configure 2009-04-25 13:06:44.000000000 -0300
|
|
@@ -3807,7 +3807,7 @@
|
|
enableval=$enable_dtrace;
|
|
fi
|
|
|
|
-if test "x$enable_dtrace" == "xyes"; then
|
|
+if test "x$enable_dtrace" = "xyes"; then
|
|
# Extract the first word of "dtrace", so it can be a program name with args.
|
|
set dummy dtrace; ac_word=$2
|
|
{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
|
|
@@ -3880,7 +3880,7 @@
|
|
enableval=$enable_64bit;
|
|
fi
|
|
|
|
-if test "x$enable_64bit" == "xyes"
|
|
+if test "x$enable_64bit" = "xyes"
|
|
then
|
|
org_cflags=$CFLAGS
|
|
CFLAGS=-m64
|
|
@@ -5842,7 +5842,7 @@
|
|
enableval=$enable_threads;
|
|
fi
|
|
|
|
-if test "x$enable_threads" == "xyes"; then
|
|
+if test "x$enable_threads" = "xyes"; then
|
|
{ $as_echo "$as_me:$LINENO: checking for library containing pthread_create" >&5
|
|
$as_echo_n "checking for library containing pthread_create... " >&6; }
|
|
if test "${ac_cv_search_pthread_create+set}" = set; then
|