]> git.ipfire.org Git - thirdparty/dhcpcd.git/commitdiff
Use queue.h from vendor area rather than system supplied
authorRoy Marples <roy@marples.name>
Thu, 30 Oct 2025 11:35:32 +0000 (11:35 +0000)
committerRoy Marples <roy@marples.name>
Thu, 30 Oct 2025 11:35:32 +0000 (11:35 +0000)
It just makes things easier really than working it out all the
time for differing OS's.

compat/queue.h [deleted file]
configure
src/Makefile
src/auth.h
src/dhcpcd.h

diff --git a/compat/queue.h b/compat/queue.h
deleted file mode 100644 (file)
index 99ac6b9..0000000
+++ /dev/null
@@ -1,175 +0,0 @@
-/*     $NetBSD: queue.h,v 1.65 2013/12/25 17:19:34 christos Exp $      */
-
-/*
- * Copyright (c) 1991, 1993
- *     The Regents of the University of California.  All rights reserved.
- *
- * 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. Neither the name of the University nor the names of its contributors
- *    may be used to endorse or promote products derived from this software
- *    without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``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 REGENTS OR CONTRIBUTORS 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.
- *
- *     @(#)queue.h     8.5 (Berkeley) 8/20/94
- */
-
-#ifndef COMPAT_QUEUE_H
-#define COMPAT_QUEUE_H
-
-/*
- * Tail queue definitions.
- */
-#ifndef TAILQ_END
-#define        TAILQ_END(head)                 (NULL)
-#endif
-
-#ifndef TAILQ_HEAD
-#define        _TAILQ_HEAD(name, type, qual)                                   \
-struct name {                                                          \
-       qual type *tqh_first;           /* first element */             \
-       qual type *qual *tqh_last;      /* addr of last next element */ \
-}
-#define TAILQ_HEAD(name, type) _TAILQ_HEAD(name, struct type,)
-
-#define        TAILQ_HEAD_INITIALIZER(head)                                    \
-       { TAILQ_END(head), &(head).tqh_first }
-
-#define        _TAILQ_ENTRY(type, qual)                                        \
-struct {                                                               \
-       qual type *tqe_next;            /* next element */              \
-       qual type *qual *tqe_prev;      /* address of previous next element */\
-}
-#define TAILQ_ENTRY(type)      _TAILQ_ENTRY(struct type,)
-#endif /* !TAILQ_HEAD */
-
-/*
- * Tail queue access methods.
- */
-#ifndef TAILQ_FIRST
-#define        TAILQ_FIRST(head)               ((head)->tqh_first)
-#define        TAILQ_NEXT(elm, field)          ((elm)->field.tqe_next)
-#define        TAILQ_LAST(head, headname) \
-       (*(((struct headname *)((head)->tqh_last))->tqh_last))
-#define        TAILQ_PREV(elm, headname, field) \
-       (*(((struct headname *)((elm)->field.tqe_prev))->tqh_last))
-#define        TAILQ_EMPTY(head)               (TAILQ_FIRST(head) == TAILQ_END(head))
-#endif /* !TAILQ_FIRST */
-
-#ifndef TAILQ_FOREACH
-#define        TAILQ_FOREACH(var, head, field)                                 \
-       for ((var) = ((head)->tqh_first);                               \
-           (var) != TAILQ_END(head);                                   \
-           (var) = ((var)->field.tqe_next))
-
-#define        TAILQ_FOREACH_REVERSE(var, head, headname, field)               \
-       for ((var) = (*(((struct headname *)((head)->tqh_last))->tqh_last));\
-           (var) != TAILQ_END(head);                                   \
-           (var) = (*(((struct headname *)((var)->field.tqe_prev))->tqh_last)))
-#endif /* !TAILQ_FOREACH */
-
-#ifndef TAILQ_INIT
-#define        TAILQ_INIT(head) do {                                           \
-       (head)->tqh_first = TAILQ_END(head);                            \
-       (head)->tqh_last = &(head)->tqh_first;                          \
-} while (/*CONSTCOND*/0)
-
-#define        TAILQ_INSERT_HEAD(head, elm, field) do {                        \
-       if (((elm)->field.tqe_next = (head)->tqh_first) != TAILQ_END(head))\
-               (head)->tqh_first->field.tqe_prev =                     \
-                   &(elm)->field.tqe_next;                             \
-       else                                                            \
-               (head)->tqh_last = &(elm)->field.tqe_next;              \
-       (head)->tqh_first = (elm);                                      \
-       (elm)->field.tqe_prev = &(head)->tqh_first;                     \
-} while (/*CONSTCOND*/0)
-
-#define        TAILQ_INSERT_TAIL(head, elm, field) do {                        \
-       (elm)->field.tqe_next = TAILQ_END(head);                        \
-       (elm)->field.tqe_prev = (head)->tqh_last;                       \
-       *(head)->tqh_last = (elm);                                      \
-       (head)->tqh_last = &(elm)->field.tqe_next;                      \
-} while (/*CONSTCOND*/0)
-
-#define        TAILQ_INSERT_AFTER(head, listelm, elm, field) do {              \
-       if (((elm)->field.tqe_next = (listelm)->field.tqe_next) !=      \
-           TAILQ_END(head))                                            \
-               (elm)->field.tqe_next->field.tqe_prev =                 \
-                   &(elm)->field.tqe_next;                             \
-       else                                                            \
-               (head)->tqh_last = &(elm)->field.tqe_next;              \
-       (listelm)->field.tqe_next = (elm);                              \
-       (elm)->field.tqe_prev = &(listelm)->field.tqe_next;             \
-} while (/*CONSTCOND*/0)
-
-#define        TAILQ_INSERT_BEFORE(listelm, elm, field) do {                   \
-       (elm)->field.tqe_prev = (listelm)->field.tqe_prev;              \
-       (elm)->field.tqe_next = (listelm);                              \
-       *(listelm)->field.tqe_prev = (elm);                             \
-       (listelm)->field.tqe_prev = &(elm)->field.tqe_next;             \
-} while (/*CONSTCOND*/0)
-
-#define        TAILQ_REMOVE(head, elm, field) do {                             \
-       if (((elm)->field.tqe_next) != TAILQ_END(head))                 \
-               (elm)->field.tqe_next->field.tqe_prev =                 \
-                   (elm)->field.tqe_prev;                              \
-       else                                                            \
-               (head)->tqh_last = (elm)->field.tqe_prev;               \
-       *(elm)->field.tqe_prev = (elm)->field.tqe_next;                 \
-} while (/*CONSTCOND*/0)
-#endif /* !TAILQ_INIT */
-
-#ifndef TAILQ_REPLACE
-#define TAILQ_REPLACE(head, elm, elm2, field) do {                      \
-        if (((elm2)->field.tqe_next = (elm)->field.tqe_next) !=                \
-           TAILQ_END(head))                                            \
-                (elm2)->field.tqe_next->field.tqe_prev =                \
-                    &(elm2)->field.tqe_next;                            \
-        else                                                            \
-                (head)->tqh_last = &(elm2)->field.tqe_next;             \
-        (elm2)->field.tqe_prev = (elm)->field.tqe_prev;                 \
-        *(elm2)->field.tqe_prev = (elm2);                               \
-} while (/*CONSTCOND*/0)
-#endif /* !TAILQ_REPLACE */
-
-#ifndef TAILQ_FOREACH_SAFE
-#define        TAILQ_FOREACH_SAFE(var, head, field, next)                      \
-       for ((var) = TAILQ_FIRST(head);                                 \
-           (var) != TAILQ_END(head) &&                                 \
-           ((next) = TAILQ_NEXT(var, field), 1); (var) = (next))
-
-#define        TAILQ_FOREACH_REVERSE_SAFE(var, head, headname, field, prev)    \
-       for ((var) = TAILQ_LAST((head), headname);                      \
-           (var) != TAILQ_END(head) &&                                 \
-           ((prev) = TAILQ_PREV((var), headname, field), 1); (var) = (prev))
-#endif /* !TAILQ_FOREACH_SAFE */
-
-#ifndef TAILQ_CONCAT
-#define        TAILQ_CONCAT(head1, head2, field) do {                          \
-       if (!TAILQ_EMPTY(head2)) {                                      \
-               *(head1)->tqh_last = (head2)->tqh_first;                \
-               (head2)->tqh_first->field.tqe_prev = (head1)->tqh_last; \
-               (head1)->tqh_last = (head2)->tqh_last;                  \
-               TAILQ_INIT((head2));                                    \
-       }                                                               \
-} while (/*CONSTCOND*/0)
-#endif /* !TAILQ_CONCAT */
-
-#endif /* !COMAPT_QUEUE_H */
index 07d68349918ef4bd9129f052b958c1be00d3e4f8..0bbba7ea43ddfe8890804ea521ff46aa49a6720b 100755 (executable)
--- a/configure
+++ b/configure
@@ -1198,106 +1198,6 @@ if [ "$DPRINTF" = no ]; then
        echo "#include                  \"compat/dprintf.h\"" >>$CONFIG_H
 fi
 
-if [ -z "$TAILQ_FOREACH_SAFE" ]; then
-       printf "Testing for TAILQ_FOREACH_SAFE ... "
-       cat <<EOF >_queue.c
-#include <sys/queue.h>
-int main(void) {
-#ifndef TAILQ_FOREACH_SAFE
-#error TAILQ_FOREACH_SAFE
-#endif
-       return 0;
-}
-EOF
-       if $XCC _queue.c -o _queue 2>&3; then
-               TAILQ_FOREACH_SAFE=yes
-               TAILQ_FOREACH=yes
-       else
-               TAILQ_FOREACH_SAFE=no
-       fi
-       echo "$TAILQ_FOREACH_SAFE"
-       rm -f _queue.c _queue
-fi
-if [ "$TAILQ_FOREACH_SAFE" = no ] && [ -z "$TAILQ_FOREACH_MUTABLE" ]; then
-       printf "Testing for TAILQ_FOREACH_MUTABLE ... "
-       cat <<EOF >_queue.c
-#include <sys/queue.h>
-int main(void) {
-#ifndef TAILQ_FOREACH_MUTABLE
-#error TAILQ_FOREACH_MUTABLE
-#endif
-       return 0;
-}
-EOF
-       if $XCC _queue.c -o _queue 2>&3; then
-               TAILQ_FOREACH_MUTABLE=yes
-               TAILQ_FOREACH_SAFE=yes
-               TAILQ_FOREACH=yes
-               echo "#define   TAILQ_FOREACH_SAFE      TAILQ_FOREACH_MUTABLE" \
-                       >> $CONFIG_H
-       else
-               TAILQ_FOREACH_MUTABLE=no
-       fi
-       echo "$TAILQ_FOREACH_MUTABLE"
-       rm -f _queue.c _queue
-fi
-
-
-if [ -z "$TAILQ_CONCAT" ]; then
-       printf "Testing for TAILQ_CONCAT ..."
-       cat <<EOF >_queue.c
-#include <sys/queue.h>
-int main(void) {
-#ifndef TAILQ_CONCAT
-#error TAILQ_CONCAT
-#endif
-       return 0;
-}
-EOF
-       if $XCC _queue.c -o _queue 2>&3; then
-               TAILQ_CONCAT=yes
-               TAILQ_FOREACH=yes
-       else
-               TAILQ_CONCAT=no
-       fi
-       echo "$TAILQ_CONCAT"
-       rm -f _queue.c _queue
-fi
-
-if [ -z "$TAILQ_FOREACH" ]; then
-       printf "Testing for TAILQ_FOREACH ... "
-       cat <<EOF >_queue.c
-#include <sys/queue.h>
-int main(void) {
-#ifndef TAILQ_FOREACH
-#error TAILQ_FOREACH
-#endif
-       return 0;
-}
-EOF
-       if $XCC _queue.c -o _queue 2>&3; then
-               TAILQ_FOREACH=yes
-       else
-               TAILQ_FOREACH=no
-       fi
-       echo "$TAILQ_FOREACH"
-       rm -f _queue.c _queue
-fi
-
-if [ "$TAILQ_FOREACH_SAFE" = no ] || [ "$TAILQ_CONCAT" = no ]; then
-       # If we don't include sys/queue.h then clang analyser finds
-       # too many false positives.
-       # See http://llvm.org/bugs/show_bug.cgi?id=18222
-       # Strictly speaking this isn't needed, but I like it to help
-       # catch any nasties.
-       if [ "$TAILQ_FOREACH" = yes ]; then
-               echo "#include                  <sys/queue.h>">>$CONFIG_H
-       fi
-       echo "#include                  \"compat/queue.h\"">>$CONFIG_H
-else
-       echo "#define   HAVE_SYS_QUEUE_H" >>$CONFIG_H
-fi
-
 if [ -z "$RBTREE" ]; then
        printf "Testing for rb_tree_init ... "
        cat <<EOF >_rbtree.c
index 8027778ffcfd26da154a6c978d224f393acc80d5..8f358d755aab577421a18155e4d96ef6ed5e1b3b 100644 (file)
@@ -13,7 +13,7 @@ include               ${TOP}/iconfig.mk
 
 CSTD?=         c99
 CFLAGS+=       -std=${CSTD}
-CPPFLAGS+=     -I${TOP} -I${TOP}/src -I./crypt
+CPPFLAGS+=     -I${TOP} -I${TOP}/src -I./crypt -I${TOP}/vendor
 
 SRCS+=         ${DHCPCD_SRCS} ${PRIVSEP_SRCS}
 DHCPCD_DEF?=   dhcpcd-definitions.conf
index c5d894344e134652228d0aef29c2432525758e8e..2c0676ff415258a2a29f867629aa4220ae59f47f 100644 (file)
 #ifndef AUTH_H
 #define AUTH_H
 
-#include "config.h"
-
-#ifdef HAVE_SYS_QUEUE_H
-#include <sys/queue.h>
-#endif
+#include "queue.h"
 
 #define DHCPCD_AUTH_SEND       (1 << 0)
 #define DHCPCD_AUTH_REQUIRE    (1 << 1)
index 2c5df6d12a0f3cbd95d8535d523aef38276baae0..c8393a0d86a32e30d6cb442af84d4d1241f4600a 100644 (file)
 #include <stdio.h>
 
 #include "config.h"
-#ifdef HAVE_SYS_QUEUE_H
-#include <sys/queue.h>
-#endif
-
 #include "defs.h"
 #include "control.h"
 #include "if-options.h"
+#include "queue.h"
 
 #define HWADDR_LEN     20
 #define IF_SSIDLEN     32