diff options
author | albert-github <albert.tests@gmail.com> | 2018-06-30 14:37:22 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2018-06-30 14:37:22 (GMT) |
commit | b0f638cb3a63ba4e73657ed5fd6276e1814391d7 (patch) | |
tree | 226b3bbb5ed889811a308bd9057f2a4a4fdfe682 /src/doxygen.cpp | |
parent | 154e877cc2e8b10091d7e0068b6f6d5793cd29f3 (diff) | |
download | Doxygen-b0f638cb3a63ba4e73657ed5fd6276e1814391d7.zip Doxygen-b0f638cb3a63ba4e73657ed5fd6276e1814391d7.tar.gz Doxygen-b0f638cb3a63ba4e73657ed5fd6276e1814391d7.tar.bz2 |
Enable possibility of CLANG for Cygwin
- During compilation there were some problems with strdup (POSIX), replaced by qstrdup
- During compiling / linking there were some problems with killpg which was recognized, added standard definition.
Diffstat (limited to 'src/doxygen.cpp')
-rw-r--r-- | src/doxygen.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp index 7ad8c52..c5408f0 100644 --- a/src/doxygen.cpp +++ b/src/doxygen.cpp @@ -113,6 +113,10 @@ extern void initResources(); #if !defined(_WIN32) || defined(__CYGWIN__) #include <signal.h> #define HAS_SIGNALS +extern "C" +{ + int killpg(pid_t pgrp, int sig); +} #endif // globally accessible variables |