From 402cab754af51997f575bb98d647e5f4fd182f10 Mon Sep 17 00:00:00 2001 From: Vladislav Vaintroub Date: Mon, 8 Mar 2010 00:31:06 +0100 Subject: Fix typo (CMAKE_SIZEOF_VOIDP=>CMAKE_SIZEOF_VOID_P) --- cmake/os/Windows.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cmake/os') 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) -- cgit v1.2.1