By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 2991
Collapse All | Expand All

(-)b/src/kernel/qlock.cpp (-2 / +3 lines)
Lines 38-45 Link Here
38
38
39
#include "qlock_p.h"
39
#include "qlock_p.h"
40
40
41
#ifndef QT_NO_QWS_MULTIPROCESS
42
41
42
#ifndef QT_NO_QWS_MULTIPROCESS
43
#include <unistd.h>
43
#include <unistd.h>
44
#include <sys/types.h>
44
#include <sys/types.h>
45
#if defined(Q_OS_MACX)
45
#if defined(Q_OS_MACX)
Lines 47-56 Link Here
47
#include <sys/stat.h>
47
#include <sys/stat.h>
48
#include <sys/file.h>
48
#include <sys/file.h>
49
#else
49
#else
50
#include <sys/sem.h>
51
#if defined(__GNU_LIBRARY__) && !defined(_SEM_SEMUN_UNDEFINED) \
50
#if defined(__GNU_LIBRARY__) && !defined(_SEM_SEMUN_UNDEFINED) \
52
    || defined(Q_OS_FREEBSD) || defined(Q_OS_OPENBSD) || defined(Q_OS_NETBSD) || defined(Q_OS_BSDI)
51
    || defined(Q_OS_FREEBSD) || defined(Q_OS_OPENBSD) || defined(Q_OS_NETBSD) || defined(Q_OS_BSDI)
53
/* union semun is defined by including <sys/sem.h> */
52
/* union semun is defined by including <sys/sem.h> */
53
#define _WANT_SEMUN
54
#include <sys/sem.h>
54
#else
55
#else
55
/* according to X/OPEN we have to define it ourselves */
56
/* according to X/OPEN we have to define it ourselves */
56
union semun {
57
union semun {

Return to bug 2991