diff options
author | Denis Kozadaev <denis@dilos.org> | 2023-05-14 12:34:44 +0300 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-05-22 10:41:26 +0900 |
commit | e5acdb1b39fa7d97d7153741202709e078b463a6 (patch) | |
tree | 8fdda91a64ae0c7f35474d44e29139f38f297958 /tdeio | |
parent | 394b5ef0fb0e0555d16bced7c4c2c1b2ac1a8463 (diff) | |
download | tdelibs-e5acdb1b39fa7d97d7153741202709e078b463a6.tar.gz tdelibs-e5acdb1b39fa7d97d7153741202709e078b463a6.zip |
Add SunOS specific patches
Signed-off-by: Denis Kozadaev <denis@dilos.org>
Diffstat (limited to 'tdeio')
-rw-r--r-- | tdeio/tdeio/global.cpp | 2 | ||||
-rw-r--r-- | tdeio/tdeio/kdirwatch.cpp | 6 |
2 files changed, 8 insertions, 0 deletions
diff --git a/tdeio/tdeio/global.cpp b/tdeio/tdeio/global.cpp index c53929b1e..21437cdd3 100644 --- a/tdeio/tdeio/global.cpp +++ b/tdeio/tdeio/global.cpp @@ -1307,6 +1307,8 @@ TDEIO_EXPORT TQByteArray TDEIO::rawErrorDetail(int errorCode, const TQString &er #endif #ifdef HAVE_SYS_UCRED_H #include <sys/ucred.h> +#elifdef HAVE_UCRED_H +#include <ucred.h> #endif #ifdef HAVE_SYS_MOUNT_H #include <sys/mount.h> diff --git a/tdeio/tdeio/kdirwatch.cpp b/tdeio/tdeio/kdirwatch.cpp index b3763978d..c87558e1d 100644 --- a/tdeio/tdeio/kdirwatch.cpp +++ b/tdeio/tdeio/kdirwatch.cpp @@ -64,11 +64,17 @@ // debug #include <sys/ioctl.h> +#ifdef Q_OS_SOLARIS +#include <sys/filio.h> /* FIONREAD */ +#endif /* solaris */ + #ifdef HAVE_INOTIFY #include <unistd.h> #include <fcntl.h> #include <sys/syscall.h> +#ifdef Q_OS_LINUX #include <linux/types.h> +#endif /* Linux */ // Linux kernel headers are documented to not compile #define _S390_BITOPS_H #include <sys/inotify.h> |