From b2034ad5df2d6bf6b7a40899083a16909193912e Mon Sep 17 00:00:00 2001 From: Daniel Albers Date: Mon, 27 Feb 2012 23:00:14 +0100 Subject: [PATCH] don't use umask on Windows Fixes #1139 --- CMakeLists.txt | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 98999156..967715e8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -399,10 +399,12 @@ if(HAVE_INDICATEQT) add_definitions(-DXDG_APPS_INSTALL_DIR=${XDG_APPS_INSTALL_DIR}) endif(HAVE_INDICATEQT) -check_function_exists(umask HAVE_UMASK) -if(HAVE_UMASK) - add_definitions(-DHAVE_UMASK) -endif(HAVE_UMASK) +if(NOT WIN32) + check_function_exists(umask HAVE_UMASK) + if(HAVE_UMASK) + add_definitions(-DHAVE_UMASK) + endif(HAVE_UMASK) +endif(NOT WIN32) # We need to create a version.gen # For this, we create our genversion binary and make sure it is run every time. -- 2.20.1