]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - socket/Makefile
Allow for unpriviledged nested containers
[thirdparty/glibc.git] / socket / Makefile
index 6be5ec78f72c1cd37d3d537e43f4e2a904b59ae7..156eec6c85b5c62267b84ee59cc744766eb89933 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 1991-2016 Free Software Foundation, Inc.
+# Copyright (C) 1991-2022 Free Software Foundation, Inc.
 # This file is part of the GNU C Library.
 
 # The GNU C Library is free software; you can redistribute it and/or
@@ -13,7 +13,7 @@
 
 # You should have received a copy of the GNU Lesser General Public
 # License along with the GNU C Library; if not, see
-# <http://www.gnu.org/licenses/>.
+# <https://www.gnu.org/licenses/>.
 
 #
 #      Sub-makefile for socket portion of the library.
@@ -29,8 +29,30 @@ headers      := sys/socket.h sys/un.h bits/sockaddr.h bits/socket.h \
 routines := accept bind connect getpeername getsockname getsockopt     \
            listen recv recvfrom recvmsg send sendmsg sendto            \
            setsockopt shutdown socket socketpair isfdtype opensock     \
-           sockatmark accept4 recvmmsg sendmmsg
+           sockatmark accept4 recvmmsg sendmmsg sockaddr_un_set
 
-aux     := have_sock_cloexec sa_len
+tests := \
+  tst-accept4 \
+  tst-sockopt \
+  # tests
+
+tests-internal := \
+  tst-sockaddr_un_set \
+  # tests-internal
+
+tests-time64 := \
+  tst-sockopt-time64 \
+  # tests
+
+aux     := sa_len
 
 include ../Rules
+
+CFLAGS-recv.c += -fexceptions -fasynchronous-unwind-tables
+CFLAGS-recvfrom.c += -fexceptions -fasynchronous-unwind-tables
+CFLAGS-sendto.c += -fexceptions -fasynchronous-unwind-tables
+CFLAGS-recvmsg.c += -fexceptions -fasynchronous-unwind-tables
+CFLAGS-sendmsg.c += -fexceptions -fasynchronous-unwind-tables
+CFLAGS-send.c += -fexceptions -fasynchronous-unwind-tables
+CFLAGS-connect.c += -fexceptions -fasynchronous-unwind-tables
+CFLAGS-accept.c += -fexceptions -fasynchronous-unwind-tables