summaryrefslogtreecommitdiff
path: root/regress
diff options
context:
space:
mode:
authorKurt Miller <kurt@cvs.openbsd.org>2007-07-23 17:24:07 +0000
committerKurt Miller <kurt@cvs.openbsd.org>2007-07-23 17:24:07 +0000
commitf8218084082684574f82838e98038055f42d4b78 (patch)
treefa1d6d5262fd3b9240e5dc2ac50dbbba6350b1ee /regress
parent21e8dadb59ba3142105c333defcd4ad560211262 (diff)
- enable thread support in libobjc
- disable thread priorities in libobjc to avoid thread starvation issues - major bump lib due to new link dependency on pthread - link objc regress with -pthread Tested on i386/amd64/powerpc/landisk/vax/sparc64/hppa. okay espie@
Diffstat (limited to 'regress')
-rw-r--r--regress/misc/objc/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/misc/objc/Makefile b/regress/misc/objc/Makefile
index e2bcab43f6a..06513fbd79e 100644
--- a/regress/misc/objc/Makefile
+++ b/regress/misc/objc/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.2 2005/04/18 17:45:46 miod Exp $
+# $OpenBSD: Makefile,v 1.3 2007/07/23 17:24:06 kurt Exp $
.SUFFIXES: .m
@@ -12,6 +12,6 @@ LINK.m?= ${CC} ${CFLAGS} ${CPPFLAGS} ${LDFLAGS}
PROG= main
SRCS= main.m
-LDADD= -lobjc
+LDADD= -lobjc -pthread
.include <bsd.regress.mk>