about summary refs log tree commit diff
path: root/src/headers
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2019-02-19 16:23:24 +0000
committerLaurent Bercot <ska-skaware@skarnet.org>2019-02-19 16:23:24 +0000
commitff9333d473adb4ae1de2d9323394073793627823 (patch)
tree24780fca6ab8c57e5d8c5d98b61362af33bef4b8 /src/headers
parent15eda3d33f9e1160d438d370acd442ef3dbba63f (diff)
downloadskalibs-ff9333d473adb4ae1de2d9323394073793627823.tar.gz
skalibs-ff9333d473adb4ae1de2d9323394073793627823.tar.xz
skalibs-ff9333d473adb4ae1de2d9323394073793627823.zip
Add skalibs/posixishard.h
 This will break things. It's a known issue. Patches to other
packages will come later, to adapt them to the new API.

 To work around brokenness, there needs to be *two* different
headers:
 1. one to be used before including system headers, that maximizes
visibility by enabling system-dependent feature test macros
(that will be tested by system headers)
 2. one to be used after including system headers, that performs
preprocessor tests and defines.

 skalibs/nonposix.h is the first one.
 Previously, there was no second one, and the tests were scattered
all over. There was a strnlen declaration in skalibs/posixplz.h
(which serves a totally different function: declaring things that
should be in POSIX, but *are not*, i.e. working around problems in
the standard, instead of problems in systems failing to respect
the standard), a build-time sysdep for error.h, #defines for
MSG_NOSIGNAL, etc. etc.
 skalibs/posixishard.h now is the second one, and centralizes
all the tests.

 As a result, the eproto sysdep is unnecessary and has been removed.
skalibs/error.h is now a static header, it is not built anymore.
Diffstat (limited to 'src/headers')
-rw-r--r--src/headers/error-addrinuse3
-rw-r--r--src/headers/error-already1
-rw-r--r--src/headers/error-footer2
-rw-r--r--src/headers/error-header9
-rw-r--r--src/headers/error-proto3
5 files changed, 0 insertions, 18 deletions
diff --git a/src/headers/error-addrinuse b/src/headers/error-addrinuse
deleted file mode 100644
index 6f1e4fe..0000000
--- a/src/headers/error-addrinuse
+++ /dev/null
@@ -1,3 +0,0 @@
-
-/* BSD sucks */
-#define error_isalready(e) (((e) == EALREADY) || ((e) == EINPROGRESS) || ((e) == EADDRINUSE))
diff --git a/src/headers/error-already b/src/headers/error-already
deleted file mode 100644
index ac6b8a7..0000000
--- a/src/headers/error-already
+++ /dev/null
@@ -1 +0,0 @@
-#define error_isalready(e) (((e) == EALREADY) || ((e) == EINPROGRESS))
diff --git a/src/headers/error-footer b/src/headers/error-footer
deleted file mode 100644
index ddd5dae..0000000
--- a/src/headers/error-footer
+++ /dev/null
@@ -1,2 +0,0 @@
-
-#endif
diff --git a/src/headers/error-header b/src/headers/error-header
deleted file mode 100644
index f9913e5..0000000
--- a/src/headers/error-header
+++ /dev/null
@@ -1,9 +0,0 @@
-/* ISC license. */
-
-#ifndef ERROR_H
-#define ERROR_H
-
-#include <skalibs/gccattributes.h>
-
-extern int error_temp (int) gccattr_const ;
-#define error_isagain(e) (((e) == EAGAIN) || ((e) == EWOULDBLOCK))
diff --git a/src/headers/error-proto b/src/headers/error-proto
deleted file mode 100644
index fd0c01d..0000000
--- a/src/headers/error-proto
+++ /dev/null
@@ -1,3 +0,0 @@
-
-/* Did I ever mention that BSD sucks ? */
-#define EPROTO EPROTOTYPE