forked from Lainports/freebsd-ports
- Fix repcached on amd64 updating to repcached 2.2 [2] - Bump PORTREVISION PR: 129631 [1], 129767 [2] Submitted by: Artemiev Igor <ai___kliksys.ru> [1], Maxim Dounin <mdounin___mdounin.ru> [2]
29 lines
946 B
Text
29 lines
946 B
Text
--- configure.orig 2009-01-27 00:32:17.000000000 -0200
|
|
+++ configure 2009-01-27 00:32:52.000000000 -0200
|
|
@@ -3668,7 +3668,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
|
|
{ echo "$as_me:$LINENO: checking for $ac_word" >&5
|
|
@@ -3741,7 +3741,7 @@
|
|
enableval=$enable_64bit;
|
|
fi
|
|
|
|
-if test "x$enable_64bit" == "xyes"
|
|
+if test "x$enable_64bit" = "xyes"
|
|
then
|
|
org_cflags=$CFLAGS
|
|
CFLAGS=-m64
|
|
@@ -5637,7 +5637,7 @@
|
|
enableval=$enable_threads;
|
|
fi
|
|
|
|
-if test "x$enable_threads" == "xyes"; then
|
|
+if test "x$enable_threads" = "xyes"; then
|
|
{ echo "$as_me:$LINENO: checking for library containing pthread_create" >&5
|
|
echo $ECHO_N "checking for library containing pthread_create... $ECHO_C" >&6; }
|
|
if test "${ac_cv_search_pthread_create+set}" = set; then
|