summaryrefslogtreecommitdiff
path: root/cmake/os
diff options
context:
space:
mode:
authorVladislav Vaintroub <vvaintroub@mysql.com>2010-03-08 00:31:06 +0100
committerVladislav Vaintroub <vvaintroub@mysql.com>2010-03-08 00:31:06 +0100
commit402cab754af51997f575bb98d647e5f4fd182f10 (patch)
treee9f512ea1962f9969637e7fafdfde5ca7943ee80 /cmake/os
parent22f923f2b157285c8f5b834cc8ccc062f70cf601 (diff)
downloadmariadb-git-402cab754af51997f575bb98d647e5f4fd182f10.tar.gz
Fix typo (CMAKE_SIZEOF_VOIDP=>CMAKE_SIZEOF_VOID_P)
Diffstat (limited to 'cmake/os')
-rw-r--r--cmake/os/Windows.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmake/os/Windows.cmake b/cmake/os/Windows.cmake
index f610ce9068a..3be739d3122 100644
--- a/cmake/os/Windows.cmake
+++ b/cmake/os/Windows.cmake
@@ -56,7 +56,7 @@ ADD_DEFINITIONS("-D_WIN32_WINNT=0x0501")
ADD_DEFINITIONS("-DWIN32_LEAN_AND_MEAN")
# Adjust compiler and linker flags
-IF(MINGW AND CMAKE_SIZEOF_VOIDP EQUAL 4)
+IF(MINGW AND CMAKE_SIZEOF_VOID_P EQUAL 4)
# mininal architecture flags, i486 enables GCC atomics
ADD_DEFINITIONS(-march=i486)
ENDIF()
@@ -193,4 +193,4 @@ IF(NOT HAVE_SIZE_OF_SSIZE_T)
SET(ssize_t SSIZE_T)
ENDIF()
-SET(FN_NO_CASE_SENSE 1) \ No newline at end of file
+SET(FN_NO_CASE_SENSE 1)