summaryrefslogtreecommitdiff
path: root/databases/mysql60-server/files
diff options
context:
space:
mode:
authorMartin Blapp <mbr@FreeBSD.org>2003-05-22 23:15:15 +0000
committerMartin Blapp <mbr@FreeBSD.org>2003-05-22 23:15:15 +0000
commit5f50990eced5d6a878875b2b4df31cc35010e49c (patch)
treeec65e3b9f628cdc8d66dc375efd717533e35f098 /databases/mysql60-server/files
parentTrack upstream update of the patch for WITH_BOUNDSCHECKING (which removed (diff)
We finally have a threadsafe realpath(3) in 4.x and 5.x.
Remove problematic HAVE_BROKEN_REALPATH define, now we have a fixed version. This allows usage of symlinks for database paths again which was previously broken. Bump portrevision.
Notes
Notes: svn path=/head/; revision=81751
Diffstat (limited to 'databases/mysql60-server/files')
-rw-r--r--databases/mysql60-server/files/patch-configure29
1 files changed, 24 insertions, 5 deletions
diff --git a/databases/mysql60-server/files/patch-configure b/databases/mysql60-server/files/patch-configure
index fdee2e7c639d..d0ecd4995cb0 100644
--- a/databases/mysql60-server/files/patch-configure
+++ b/databases/mysql60-server/files/patch-configure
@@ -1,5 +1,5 @@
---- configure.orig Tue Feb 25 21:30:07 2003
-+++ configure Thu Feb 27 12:42:12 2003
+--- configure.orig Thu Apr 3 14:16:29 2003
++++ configure Fri May 23 01:05:46 2003
@@ -8101,6 +8101,7 @@
# This can be used to rebuild libtool when needed
@@ -8,7 +8,7 @@
# Always use our own libtool.
LIBTOOL='$(SHELL) $(top_builddir)/libtool'
-@@ -9044,7 +9045,7 @@
+@@ -9043,7 +9044,7 @@
;;
esac
fi
@@ -17,7 +17,7 @@
if test -n "$HOSTNAME"; then
echo "$as_me:$LINENO: result: $HOSTNAME" >&5
-@@ -9236,43 +9237,8 @@
+@@ -9235,43 +9236,8 @@
echo "$as_me:$LINENO: checking \"how to check if pid exists\"" >&5
echo $ECHO_N "checking \"how to check if pid exists\"... $ECHO_C" >&6
PS=$ac_cv_path_PS
@@ -61,7 +61,26 @@
echo "$as_me:$LINENO: result: \"$FIND_PROC\"" >&5
echo "${ECHO_T}\"$FIND_PROC\"" >&6
-@@ -22310,7 +22276,7 @@
+@@ -12752,8 +12718,16 @@
+ ;;
+ *freebsd*)
+ echo "Adding fix for interrupted reads"
+- CFLAGS="$CFLAGS -DHAVE_BROKEN_REALPATH"
+- CXXFLAGS="$CXXFLAGS -DMYSQLD_NET_RETRY_COUNT=1000000 -DHAVE_BROKEN_REALPATH"
++ OSVERSION=`/sbin/sysctl -a | /usr/bin/grep osreldate | /usr/bin/awk '{ print $2 }'`
++ if test "$OSVERSION" -gt "480100" && \
++ test "$OSVERSION" -lt "500000" || \
++ test "$OSVERSION" -gt "500109"
++ then
++ CXXFLAGS="$CXXFLAGS -DMYSQLD_NET_RETRY_COUNT=1000000"
++ else
++ CFLAGS="$CFLAGS -DHAVE_BROKEN_REALPATH"
++ CXXFLAGS="$CXXFLAGS -DMYSQLD_NET_RETRY_COUNT=1000000 -DHAVE_BROKEN_REALPATH"
++ fi
+ ;;
+ *netbsd*)
+ echo "Adding flag -Dunix"
+@@ -23545,7 +23519,7 @@
/* ) rel_srcdir="$srcdir" ;;
* ) rel_srcdir="../$srcdir" ;;
esac