Overview
Comment: | Remove #define __NO_EXT_QNX
It doesn't seem to be needed anymore. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
cf0effe8343cf7ddfcb1fa829a502ede |
User & Date: | js on 2024-04-01 15:59:56 |
Other Links: | manifest | tags |
Context
2024-04-01
| ||
16:01 | Define _LARGEFILE64_SOURCE to 1 check-in: fba60b6967 user: js tags: trunk | |
15:59 | Remove #define __NO_EXT_QNX check-in: cf0effe834 user: js tags: trunk | |
15:46 | configure: Work around non-binary-compatible grep check-in: 979e82e85f user: js tags: trunk | |
Changes
Modified src/OFKernelEventObserver.m from [fd95409b3f] to [d1c33bf38e].
︙ | ︙ | |||
9 10 11 12 13 14 15 | * * Alternatively, it may be distributed under the terms of the GNU General * Public License, either version 2 or 3, which can be found in the file * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this * file. */ | < < | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | * * Alternatively, it may be distributed under the terms of the GNU General * Public License, either version 2 or 3, which can be found in the file * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this * file. */ #include "config.h" #include <errno.h> #import "OFKernelEventObserver.h" #import "OFArray.h" #import "OFData.h" |
︙ | ︙ |
Modified src/OFPollKernelEventObserver.m from [5e31dea6aa] to [18e68a021a].
︙ | ︙ | |||
9 10 11 12 13 14 15 | * * Alternatively, it may be distributed under the terms of the GNU General * Public License, either version 2 or 3, which can be found in the file * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this * file. */ | < < | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | * * Alternatively, it may be distributed under the terms of the GNU General * Public License, either version 2 or 3, which can be found in the file * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this * file. */ #include "config.h" #include <errno.h> #ifdef HAVE_POLL_H # include <poll.h> #endif |
︙ | ︙ |
Modified src/OFSelectKernelEventObserver.m from [e50f11801b] to [f755deb6a0].
︙ | ︙ | |||
11 12 13 14 15 16 17 | * Public License, either version 2 or 3, which can be found in the file * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this * file. */ #include "config.h" | < < | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | * Public License, either version 2 or 3, which can be found in the file * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this * file. */ #include "config.h" #include "platform.h" #ifdef OF_WINDOWS /* Win32 has a ridiculous default of 64, even though it supports much more. */ # define FD_SETSIZE 1024 #endif |
︙ | ︙ |
Modified src/OFStream.m from [908730005b] to [14f0d5ccca].
︙ | ︙ | |||
9 10 11 12 13 14 15 | * * Alternatively, it may be distributed under the terms of the GNU General * Public License, either version 2 or 3, which can be found in the file * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this * file. */ | < < | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | * * Alternatively, it may be distributed under the terms of the GNU General * Public License, either version 2 or 3, which can be found in the file * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this * file. */ #include "config.h" #include <errno.h> #include <stdarg.h> #include <stdio.h> #include <stdlib.h> #include <string.h> |
︙ | ︙ |
Modified src/OFStreamSocket.m from [f9f8a407eb] to [a2d2d261a8].
︙ | ︙ | |||
14 15 16 17 18 19 20 | */ #include "config.h" #ifndef _XOPEN_SOURCE_EXTENDED # define _XOPEN_SOURCE_EXTENDED #endif | < | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | */ #include "config.h" #ifndef _XOPEN_SOURCE_EXTENDED # define _XOPEN_SOURCE_EXTENDED #endif #define _HPUX_ALT_XOPEN_SOCKET_API #include <errno.h> #include <string.h> #import "OFStreamSocket.h" #import "OFStreamSocket+Private.h" |
︙ | ︙ |
Modified src/OFSystemInfo.m from [d0a8a94e19] to [17b1ff4e0e].
︙ | ︙ | |||
9 10 11 12 13 14 15 | * * Alternatively, it may be distributed under the terms of the GNU General * Public License, either version 2 or 3, which can be found in the file * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this * file. */ | < < | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | * * Alternatively, it may be distributed under the terms of the GNU General * Public License, either version 2 or 3, which can be found in the file * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this * file. */ #include "config.h" #include <limits.h> /* include any libc header to get the libc defines */ #include <setjmp.h> #include <signal.h> #include "unistd_wrapper.h" |
︙ | ︙ |
Modified src/OFTCPSocket.m from [763f8308b6] to [28180f5555].
︙ | ︙ | |||
14 15 16 17 18 19 20 | */ #include "config.h" #ifndef _XOPEN_SOURCE_EXTENDED # define _XOPEN_SOURCE_EXTENDED #endif | < | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | */ #include "config.h" #ifndef _XOPEN_SOURCE_EXTENDED # define _XOPEN_SOURCE_EXTENDED #endif #define _HPUX_ALT_XOPEN_SOCKET_API #include <errno.h> #include <stdio.h> #include <stdlib.h> #include <string.h> |
︙ | ︙ |
Modified src/OFThread.m from [2a7fa371d3] to [ce6ddb874b].
︙ | ︙ | |||
12 13 14 15 16 17 18 | * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this * file. */ #include "config.h" #define _POSIX_TIMERS | < | 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this * file. */ #include "config.h" #define _POSIX_TIMERS #include <errno.h> #include <stdlib.h> #include <math.h> #include <time.h> |
︙ | ︙ |