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 /cmake | |
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 'cmake')
-rw-r--r-- | cmake/os/FreeBSD.cmake | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmake/os/FreeBSD.cmake b/cmake/os/FreeBSD.cmake index be7af778e93..e09592942c1 100644 --- a/cmake/os/FreeBSD.cmake +++ b/cmake/os/FreeBSD.cmake @@ -20,4 +20,5 @@ # #Legacy option, maybe not needed anymore , taken as is from autotools build # ADD_DEFINITIONS(-DNET_RETRY_COUNT=1000000) -ADD_DEFINITIONS(-DHAVE_BROKEN_REALPATH) +# The below was used for really old versions of FreeBSD, roughly: before 5.1.9 +# ADD_DEFINITIONS(-DHAVE_BROKEN_REALPATH) |