#
49506076 |
| 20-Jul-2019 |
Adrien Destugues <pulkomandy@pulkomandy.tk> |
Add a features.h to auto enable _DEFAULT_SOURCE
Unless __STRICT_ANSI__ is defined (as it is when running the compiler in --std=c89 or --std=c99, but not when running it without any specific args), w
Add a features.h to auto enable _DEFAULT_SOURCE
Unless __STRICT_ANSI__ is defined (as it is when running the compiler in --std=c89 or --std=c99, but not when running it without any specific args), we can enable these by default and behave like most other systems. I don't know why no one has done this yet despite suggesting it multiple times and people prefer to #define _BSD_SOURCE manually everywhere.
Remove all places in our Jamfiles and sources where it had been defined. _DEFAULT_SOURCE is now enabled by default for all sources of Haiku, since we let the compiler use GNU extensions (no strict C standard specified on command line)
Use _DEFAULT_SOURCE as the define name to match current versions of glibc. Enable it if _BSD_SOURCE is #defined in compiler flags, for backward compatibility.
Change-Id: I6db04da5f6db437723cdfba3478f5094a69d7727 Reviewed-on: https://review.haiku-os.org/c/1633 Reviewed-by: Jérôme Duval <jerome.duval@gmail.com>
show more ...
|
#
b357daa5 |
| 30-Mar-2019 |
Augustin Cavalier <waddlesplash@gmail.com> |
build: Deprecate SetSubDirSupportedPlatformsBeOSCompatible.
By default, all targets support the "haiku" platform, and we no longer support building for BeOS, Dan0, Zeta, or other BeOS-compatible tar
build: Deprecate SetSubDirSupportedPlatformsBeOSCompatible.
By default, all targets support the "haiku" platform, and we no longer support building for BeOS, Dan0, Zeta, or other BeOS-compatible targets, so this is no longer needed.
Also remove all references to the non-Haiku compatible platforms, and change all BEOS_COMPATIBLE checks to HAIKU_COMPATIBLE. Removal of all SetSubDirSupportedPlatformsBeOSCompatible invocations will be in the next commit.
show more ...
|
#
091a80ae |
| 16-Apr-2015 |
Adrien Destugues <pulkomandy@gmail.com> |
Protect all BSD extensions with _BSD_SOURCE
* Do not define the symbols by default, as they are not in the default libraries. * Adjust jamfiles of all code using BSD extensions to define _BSD_SOURCE
Protect all BSD extensions with _BSD_SOURCE
* Do not define the symbols by default, as they are not in the default libraries. * Adjust jamfiles of all code using BSD extensions to define _BSD_SOURCE. * This makes Haiku slightly more compliant to standard C/POSIX.
show more ...
|
#
278ca3c0 |
| 13-Dec-2006 |
Axel Dörfler <axeld@pinc-software.de> |
Accidently built libtelnet.a as a shared library.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@19490 a95241bf-73f2-0310-859d-f6bbb57e9c96
|
#
fdad9c93 |
| 13-Dec-2006 |
Axel Dörfler <axeld@pinc-software.de> |
* Ported libtelnet.a and telnetd from FreeBSD. * The subdirectory is called "libtelnet" instead of "telnet" (as usual), since telnetd expects some headers to be found in libtelnet/ (which I could h
* Ported libtelnet.a and telnetd from FreeBSD. * The subdirectory is called "libtelnet" instead of "telnet" (as usual), since telnetd expects some headers to be found in libtelnet/ (which I could have changed as well, just in case you very much prefer telnet/). * I needed to disable some stuff to make it compile, and it's absolutely not tested, so it might as well not work yet.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@19488 a95241bf-73f2-0310-859d-f6bbb57e9c96
show more ...
|