From: Daniel Albers Date: Mon, 27 Feb 2012 22:00:14 +0000 (+0100) Subject: don't use umask on Windows X-Git-Tag: 0.8.0~4 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=b2034ad5df2d6bf6b7a40899083a16909193912e don't use umask on Windows Fixes #1139 --- 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.