diff options
author | Joerg Bruehe <joerg@mysql.com> | 2010-06-23 16:19:19 +0200 |
---|---|---|
committer | Joerg Bruehe <joerg@mysql.com> | 2010-06-23 16:19:19 +0200 |
commit | 33173fbe827ed435066a3253a87866a0994503e4 (patch) | |
tree | 7e6596719888a641cf49789870f91c96e7ae144f /configure.in | |
parent | a96267c19936d8528a7ff9cc82ff88f5a5938221 (diff) | |
download | mariadb-git-33173fbe827ed435066a3253a87866a0994503e4.tar.gz |
Fix Bug #54739
Accidental change in compile-time definitions for FreeBSD
Revert the accidental setting of "HAVE_BROKEN_REALPATH"
on current versions of FreeBSD,
do it for both autotools ("configure.in")
and cmake ("cmake/os/FreeBSD.cmake").
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/configure.in b/configure.in index 5de43fc7951..ad0b3f80bce 100644 --- a/configure.in +++ b/configure.in @@ -1301,9 +1301,7 @@ case $SYSTEM_TYPE in if test "$OSVERSION" -gt "600000" then # Post user-level threads, MYSQLD_NET_RETRY_COUNT is not needed any more - AC_MSG_WARN([Adding fix for broken realpath]) - CFLAGS="$CFLAGS -DHAVE_BROKEN_REALPATH" - CXXFLAGS="$CXXFLAGS -DHAVE_BROKEN_REALPATH" + : elif test "$OSVERSION" -gt "480100" && \ test "$OSVERSION" -lt "500000" || \ test "$OSVERSION" -gt "500109" |