diff options
author | 2017-04-16 16:01:05 +0000 | |
---|---|---|
committer | 2017-04-16 16:01:05 +0000 | |
commit | be5eda62cadf6785edc6648e71380192331161b9 (patch) | |
tree | e42646a3a00ebd9b3abc4bd75c6f98cc553a7a8b | |
parent | Move comments into a block and uses {} to unconfuse reading. (diff) | |
download | wireguard-openbsd-be5eda62cadf6785edc6648e71380192331161b9.tar.xz wireguard-openbsd-be5eda62cadf6785edc6648e71380192331161b9.zip |
Define DEF_WEAK like we do for ld.so to fix building this with clang.
ok millert@, deraadt@
-rw-r--r-- | regress/lib/libc/regex/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/regress/lib/libc/regex/Makefile b/regress/lib/libc/regex/Makefile index a69432f6823..5b9a0802094 100644 --- a/regress/lib/libc/regex/Makefile +++ b/regress/lib/libc/regex/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.10 2014/12/10 03:12:38 daniel Exp $ +# $OpenBSD: Makefile,v 1.11 2017/04/16 16:01:05 kettenis Exp $ # $NetBSD: Makefile,v 1.2 1995/02/16 19:38:45 cgd Exp $ PROG= re @@ -7,6 +7,7 @@ SRCS= main.c split.c debug.c regcomp.c regerror.c regexec.c regfree.c CLEANFILES += t_exhaust CFLAGS+= -I${.CURDIR}/../../../../lib/libc/regex -DREDEBUG -DPOSIX_MISTAKE +CFLAGS+= -D'DEF_WEAK(x)=asm("")' TESTS= ${.CURDIR}/tests |