1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

Merge pull request #6274

begasus (2):
      feat(haiku): Don't use fstack-protector on Haiku
      feat(haiku): Haiku doesn't use sys/errno.h
This commit is contained in:
Anthony Bilinski 2021-01-23 19:38:32 -08:00
commit 5bb89f3e0b
No known key found for this signature in database
GPG Key ID: 2AA8E0DA1B31FB3C
2 changed files with 2 additions and 2 deletions

View File

@ -104,7 +104,7 @@ if (COMPILER_SUPPORTS_WDATE_TIME)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wdate-time")
endif()
if (NOT WIN32)
if (NOT WIN32 AND NOT HAIKU)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fstack-protector-all")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wstack-protector")
endif()

View File

@ -25,7 +25,7 @@
#include <QPainter>
#include <qrencode.h>
#ifdef Q_OS_WIN32
#if defined(Q_OS_WIN32) || defined(Q_OS_HAIKU)
#include <errno.h>
#else
#include <sys/errno.h>