summaryrefslogtreecommitdiff
path: root/databases/mysql4-client/patches/patch-af
diff options
context:
space:
mode:
Diffstat (limited to 'databases/mysql4-client/patches/patch-af')
-rw-r--r--databases/mysql4-client/patches/patch-af73
1 files changed, 0 insertions, 73 deletions
diff --git a/databases/mysql4-client/patches/patch-af b/databases/mysql4-client/patches/patch-af
deleted file mode 100644
index 06bb5dc80a3..00000000000
--- a/databases/mysql4-client/patches/patch-af
+++ /dev/null
@@ -1,73 +0,0 @@
-$NetBSD: patch-af,v 1.9 2007/05/23 08:11:49 martti Exp $
-
---- configure.orig 2006-11-03 04:19:18.000000000 +0200
-+++ configure 2007-05-23 08:20:46.000000000 +0300
-@@ -20547,7 +20547,7 @@
- FIND_PROC="$PS \$\$PID | grep -v grep | grep mysqld > /dev/null"
- else
- case $SYSTEM_TYPE in
-- *freebsd*)
-+ *freebsd* | *dragonfly*)
- FIND_PROC="$PS p \$\$PID | grep -v grep | grep mysqld > /dev/null"
- ;;
- *darwin*)
-@@ -24736,6 +24736,10 @@
- MAX_C_OPTIMIZE="-O"
- fi
- ;;
-+ *dragonfly*)
-+ CXXFLAGS="$CXXFLAGS -DMYSQLD_NET_RETRY_COUNT=1000000"
-+ ;;
-+
- *freebsd*)
- echo "Adding fix for interrupted reads"
- OSVERSION=`sysctl -a | grep osreldate | awk '{ print $2 }'`
-@@ -36636,30 +36640,10 @@
- fi;
-
-
--echo "$as_me:$LINENO: checking for ORBit" >&5
--echo $ECHO_N "checking for ORBit... $ECHO_C" >&6
--orbit_config_path=`which orbit-config`
--if test -n "$orbit_config_path" -a $? = 0
--then
-- orbit_exec_prefix=`orbit-config --exec-prefix`
-- orbit_includes=`orbit-config --cflags server`
-- orbit_libs=`orbit-config --libs server`
-- orbit_idl="$orbit_exec_prefix/bin/orbit-idl"
-- echo "$as_me:$LINENO: result: found!" >&5
--echo "${ECHO_T}found!" >&6
--
--cat >>confdefs.h <<\_ACEOF
--#define HAVE_ORBIT 1
--_ACEOF
--
--else
- orbit_exec_prefix=
- orbit_includes=
- orbit_libs=
- orbit_idl=
-- echo "$as_me:$LINENO: result: not found" >&5
--echo "${ECHO_T}not found" >&6
--fi
-
-
-
-@@ -36954,7 +36938,7 @@
- else
- bench_dirs=""
- fi
--bench_dirs="$bench_dirs mysql-test"
-+#bench_dirs="$bench_dirs mysql-test"
-
-
- # Don't build readline, i have it already
-@@ -37071,7 +37055,7 @@
- main ()
- {
-
-- char res= *(*rl_completion_entry_function)(0,0);
-+ char res=(*rl_completion_entry_function)(0,0);
- completion_matches(0,0);
-
- ;