summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfgsch <fgsch@openbsd.org>2011-09-18 16:44:21 +0000
committerfgsch <fgsch@openbsd.org>2011-09-18 16:44:21 +0000
commitbe38755c412cc72cb8d40f51ea70c9893196afff (patch)
tree2d7f6c9189335ab0a5f5367eda4430a5bd88a408
parenttest for interrupted connect. (diff)
downloadwireguard-openbsd-be38755c412cc72cb8d40f51ea70c9893196afff.tar.xz
wireguard-openbsd-be38755c412cc72cb8d40f51ea70c9893196afff.zip
add connect and move include to top Makefile.inc
-rw-r--r--regress/lib/libpthread/restart/Makefile4
-rw-r--r--regress/lib/libpthread/restart/Makefile.inc4
-rw-r--r--regress/lib/libpthread/restart/accept/Makefile3
-rw-r--r--regress/lib/libpthread/restart/connect/Makefile3
-rw-r--r--regress/lib/libpthread/restart/kevent/Makefile3
-rw-r--r--regress/lib/libpthread/restart/read/Makefile3
-rw-r--r--regress/lib/libpthread/restart/readv/Makefile3
-rw-r--r--regress/lib/libpthread/restart/recvfrom/Makefile3
-rw-r--r--regress/lib/libpthread/restart/recvmsg/Makefile3
9 files changed, 12 insertions, 17 deletions
diff --git a/regress/lib/libpthread/restart/Makefile b/regress/lib/libpthread/restart/Makefile
index 897199ed8a9..7df9250cb20 100644
--- a/regress/lib/libpthread/restart/Makefile
+++ b/regress/lib/libpthread/restart/Makefile
@@ -1,5 +1,5 @@
-# $OpenBSD: Makefile,v 1.1 2011/09/13 23:50:17 fgsch Exp $
+# $OpenBSD: Makefile,v 1.2 2011/09/18 16:44:21 fgsch Exp $
-SUBDIR = accept kevent read readv recvfrom recvmsg
+SUBDIR = accept connect kevent read readv recvfrom recvmsg
.include <bsd.subdir.mk>
diff --git a/regress/lib/libpthread/restart/Makefile.inc b/regress/lib/libpthread/restart/Makefile.inc
index 5edc38f4269..4562b5bd10c 100644
--- a/regress/lib/libpthread/restart/Makefile.inc
+++ b/regress/lib/libpthread/restart/Makefile.inc
@@ -1,3 +1,5 @@
-# $OpenBSD: Makefile.inc,v 1.1 2011/09/13 23:50:17 fgsch Exp $
+# $OpenBSD: Makefile.inc,v 1.2 2011/09/18 16:44:21 fgsch Exp $
+
+CFLAGS += -I${.CURDIR}/../../include
.include "${.CURDIR}/../../Makefile.inc"
diff --git a/regress/lib/libpthread/restart/accept/Makefile b/regress/lib/libpthread/restart/accept/Makefile
index bc92a099ff1..78871af8ada 100644
--- a/regress/lib/libpthread/restart/accept/Makefile
+++ b/regress/lib/libpthread/restart/accept/Makefile
@@ -1,6 +1,5 @@
-# $OpenBSD: Makefile,v 1.1 2011/09/13 23:50:17 fgsch Exp $
+# $OpenBSD: Makefile,v 1.2 2011/09/18 16:44:21 fgsch Exp $
PROG = accept
-CFLAGS += -I${.CURDIR}/../../include
.include <bsd.regress.mk>
diff --git a/regress/lib/libpthread/restart/connect/Makefile b/regress/lib/libpthread/restart/connect/Makefile
index 4ce856466fc..7d78067f3ca 100644
--- a/regress/lib/libpthread/restart/connect/Makefile
+++ b/regress/lib/libpthread/restart/connect/Makefile
@@ -1,6 +1,5 @@
-# $OpenBSD: Makefile,v 1.1 2011/09/18 16:36:58 fgsch Exp $
+# $OpenBSD: Makefile,v 1.2 2011/09/18 16:44:21 fgsch Exp $
PROG = connect
-CFLAGS += -I${.CURDIR}/../../include
.include <bsd.regress.mk>
diff --git a/regress/lib/libpthread/restart/kevent/Makefile b/regress/lib/libpthread/restart/kevent/Makefile
index d91fb4acc42..5990eef0120 100644
--- a/regress/lib/libpthread/restart/kevent/Makefile
+++ b/regress/lib/libpthread/restart/kevent/Makefile
@@ -1,6 +1,5 @@
-# $OpenBSD: Makefile,v 1.1 2011/09/13 23:50:17 fgsch Exp $
+# $OpenBSD: Makefile,v 1.2 2011/09/18 16:44:21 fgsch Exp $
PROG = kevent
-CFLAGS += -I${.CURDIR}/../../include
.include <bsd.regress.mk>
diff --git a/regress/lib/libpthread/restart/read/Makefile b/regress/lib/libpthread/restart/read/Makefile
index 70b244c9672..3cb3624759a 100644
--- a/regress/lib/libpthread/restart/read/Makefile
+++ b/regress/lib/libpthread/restart/read/Makefile
@@ -1,6 +1,5 @@
-# $OpenBSD: Makefile,v 1.1 2011/09/13 23:50:17 fgsch Exp $
+# $OpenBSD: Makefile,v 1.2 2011/09/18 16:44:21 fgsch Exp $
PROG = read
-CFLAGS += -I${.CURDIR}/../../include
.include <bsd.regress.mk>
diff --git a/regress/lib/libpthread/restart/readv/Makefile b/regress/lib/libpthread/restart/readv/Makefile
index 120603677bb..c82d7a81c3f 100644
--- a/regress/lib/libpthread/restart/readv/Makefile
+++ b/regress/lib/libpthread/restart/readv/Makefile
@@ -1,6 +1,5 @@
-# $OpenBSD: Makefile,v 1.1 2011/09/13 23:50:17 fgsch Exp $
+# $OpenBSD: Makefile,v 1.2 2011/09/18 16:44:21 fgsch Exp $
PROG = readv
-CFLAGS += -I${.CURDIR}/../../include
.include <bsd.regress.mk>
diff --git a/regress/lib/libpthread/restart/recvfrom/Makefile b/regress/lib/libpthread/restart/recvfrom/Makefile
index 8134d80c926..c774a28fb16 100644
--- a/regress/lib/libpthread/restart/recvfrom/Makefile
+++ b/regress/lib/libpthread/restart/recvfrom/Makefile
@@ -1,6 +1,5 @@
-# $OpenBSD: Makefile,v 1.1 2011/09/13 23:50:17 fgsch Exp $
+# $OpenBSD: Makefile,v 1.2 2011/09/18 16:44:21 fgsch Exp $
PROG = recvfrom
-CFLAGS += -I${.CURDIR}/../../include
.include <bsd.regress.mk>
diff --git a/regress/lib/libpthread/restart/recvmsg/Makefile b/regress/lib/libpthread/restart/recvmsg/Makefile
index c8f8335b8bb..cadc8e4dc89 100644
--- a/regress/lib/libpthread/restart/recvmsg/Makefile
+++ b/regress/lib/libpthread/restart/recvmsg/Makefile
@@ -1,6 +1,5 @@
-# $OpenBSD: Makefile,v 1.1 2011/09/13 23:50:17 fgsch Exp $
+# $OpenBSD: Makefile,v 1.2 2011/09/18 16:44:21 fgsch Exp $
PROG = recvmsg
-CFLAGS += -I${.CURDIR}/../../include
.include <bsd.regress.mk>