]> git.ipfire.org Git - thirdparty/libbsd.git/commitdiff
Split errc family of functions from err ones
authorGuillem Jover <guillem@hadrons.org>
Sat, 17 Feb 2024 04:25:01 +0000 (05:25 +0100)
committerGuillem Jover <guillem@hadrons.org>
Sun, 18 Feb 2024 13:02:32 +0000 (14:02 +0100)
On most systems the err family of functions is already present, but are
missing the errc family of functions, which are also present on some
other systems. Splitting them into separate files will make it easer to
conditionally include one or the other.

configure.ac
man/Makefile.am
src/Makefile.am
src/err.c
src/errc.c [new file with mode: 0644]

index e704168f5e36b98c65ed09a7ee15685d923258eb..7878743769065c6e38a379ff212dd15dc9daf325 100644 (file)
@@ -257,6 +257,8 @@ AC_CHECK_FUNCS([\
 
 need_arc4random=yes
 need_bsd_getopt=yes
+need_err=yes
+need_errc=yes
 need_progname=yes
 need_md5=yes
 need_nlist=yes
@@ -271,6 +273,7 @@ AS_CASE([$host_os],
     # On glibc >= 2.38, strlcpy() and strlcat() got added,
     # so these could then be dropped on the next SOVERSION bump.
     #need_strl=no
+    need_err=no
   ],
   [*-musl*], [
     # On musl >= 0.5.0, strlcpy() and strlcat() were already implemented,
@@ -279,6 +282,7 @@ AS_CASE([$host_os],
     # On musl >= 0.9.7, optreset got implemented, so bsd_getopt() can then
     # be dropped on the next SOVERSION bump.
     #need_bsd_getopt=no
+    need_err=no
     # On musl >= 1.1.19, fopencookie() got implemented, and because we were
     # checking for its presence to decide whether to build funopen(), it got
     # included in builds even when previously it had not been included, which
@@ -292,6 +296,8 @@ AS_CASE([$host_os],
     # there, so we can avoid providing these with no ABI breakage.
     need_arc4random=no
     need_bsd_getopt=no
+    need_err=no
+    need_errc=no
     need_progname=no
     need_transparent_libmd=no
     need_md5=no
@@ -310,6 +316,8 @@ AM_CONDITIONAL([HAVE_GETENTROPY], [test "x$ac_cv_func_getentropy" = "xyes"])
 
 AM_CONDITIONAL([NEED_ARC4RANDOM], [test "x$need_arc4random" = "xyes"])
 AM_CONDITIONAL([NEED_BSD_GETOPT], [test "x$need_bsd_getopt" = "xyes"])
+AM_CONDITIONAL([NEED_ERR], [test "x$need_err" = "xyes"])
+AM_CONDITIONAL([NEED_ERRC], [test "x$need_errc" = "xyes"])
 AM_CONDITIONAL([NEED_PROGNAME], [test "x$need_progname" = "xyes"])
 AM_CONDITIONAL([NEED_TRANSPARENT_LIBMD], [test "x$need_transparent_libmd" = "xyes"])
 AM_CONDITIONAL([NEED_MD5], [test "x$need_md5" = "xyes"])
index 12235579f0efcc1b659aec591875b0f62ebe4124..b878fef22cf908ec75d97634ac5f1e9e66e594e6 100644 (file)
@@ -168,7 +168,6 @@ dist_man_MANS = \
        byteorder.3bsd \
        closefrom.3bsd \
        dehumanize_number.3bsd \
-       errc.3bsd \
        expand_number.3bsd \
        explicit_bzero.3bsd \
        fgetln.3bsd \
@@ -238,6 +237,12 @@ dist_man_MANS = \
        vis.3bsd \
        # EOL
 
+if NEED_ERRC
+dist_man_MANS += \
+       errc.3bsd \
+       # EOL
+endif
+
 if NEED_PROGNAME
 dist_man_MANS += \
        getprogname.3bsd \
index 1c350b82aff145be85d685d50a557938cb0aa335..1877ad60d77632959f5f6e4f96c65ed631be7e45 100644 (file)
@@ -78,7 +78,6 @@ endif
 libbsd_la_SOURCES = \
        closefrom.c \
        dehumanize_number.c \
-       err.c \
        expand_number.c \
        explicit_bzero.c \
        fgetln.c \
@@ -114,6 +113,18 @@ libbsd_la_SOURCES = \
        vis.c \
        # EOL
 
+if NEED_ERR
+libbsd_la_SOURCES += \
+       err.c \
+       # EOL
+endif
+
+if NEED_ERRC
+libbsd_la_SOURCES += \
+       errc.c \
+       # EOL
+endif
+
 if NEED_PROGNAME
 libbsd_la_SOURCES += \
        progname.c \
index 8f09972e96d67ea039353d34b16424c2387969dc..44359e89df3601b59045491775fcfeaef34bc0be 100644 (file)
--- a/src/err.c
+++ b/src/err.c
@@ -1,6 +1,5 @@
 /*
- * Copyright © 2006 Robert Millan
- * Copyright © 2011, 2019 Guillem Jover <guillem@hadrons.org>
+ * Copyright © 2019 Guillem Jover <guillem@hadrons.org>
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
  */
 
 #include <err.h>
-#ifdef LIBBSD_NEED_ERR_H_FUNCS
 #include <errno.h>
-#endif
 #include <string.h>
 #include <stdarg.h>
 #include <stdlib.h>
 #include <stdio.h>
 
-void
-vwarnc(int code, const char *format, va_list ap)
-{
-       fprintf(stderr, "%s: ", getprogname());
-       if (format) {
-               vfprintf(stderr, format, ap);
-               fprintf(stderr, ": ");
-       }
-       fprintf(stderr, "%s\n", strerror(code));
-}
-
-void
-warnc(int code, const char *format, ...)
-{
-       va_list ap;
-
-       va_start(ap, format);
-       vwarnc(code, format, ap);
-       va_end(ap);
-}
-
-void
-verrc(int status, int code, const char *format, va_list ap)
-{
-       fprintf(stderr, "%s: ", getprogname());
-       if (format) {
-               vfprintf(stderr, format, ap);
-               fprintf(stderr, ": ");
-       }
-       fprintf(stderr, "%s\n", strerror(code));
-       exit(status);
-}
-
-void
-errc(int status, int code, const char *format, ...)
-{
-       va_list ap;
-
-       va_start(ap, format);
-       verrc(status, code, format, ap);
-       va_end(ap);
-}
-
-#ifdef LIBBSD_NEED_ERR_H_FUNCS
 void
 vwarn(const char *format, va_list ap)
 {
@@ -148,4 +101,3 @@ errx(int eval, const char *format, ...)
        verrx(eval, format, ap);
        va_end(ap);
 }
-#endif
diff --git a/src/errc.c b/src/errc.c
new file mode 100644 (file)
index 0000000..45f1b61
--- /dev/null
@@ -0,0 +1,75 @@
+/*
+ * Copyright © 2006 Robert Millan
+ * Copyright © 2011, 2019 Guillem Jover <guillem@hadrons.org>
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ * 3. The name of the author may not be used to endorse or promote products
+ *    derived from this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
+ * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
+ * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL
+ * THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+ * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+ * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
+ * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+ * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
+ * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#include <err.h>
+#include <string.h>
+#include <stdarg.h>
+#include <stdlib.h>
+#include <stdio.h>
+
+void
+vwarnc(int code, const char *format, va_list ap)
+{
+       fprintf(stderr, "%s: ", getprogname());
+       if (format) {
+               vfprintf(stderr, format, ap);
+               fprintf(stderr, ": ");
+       }
+       fprintf(stderr, "%s\n", strerror(code));
+}
+
+void
+warnc(int code, const char *format, ...)
+{
+       va_list ap;
+
+       va_start(ap, format);
+       vwarnc(code, format, ap);
+       va_end(ap);
+}
+
+void
+verrc(int status, int code, const char *format, va_list ap)
+{
+       fprintf(stderr, "%s: ", getprogname());
+       if (format) {
+               vfprintf(stderr, format, ap);
+               fprintf(stderr, ": ");
+       }
+       fprintf(stderr, "%s\n", strerror(code));
+       exit(status);
+}
+
+void
+errc(int status, int code, const char *format, ...)
+{
+       va_list ap;
+
+       va_start(ap, format);
+       verrc(status, code, format, ap);
+       va_end(ap);
+}