diff options
author | 2004-04-02 15:34:48 +0000 | |
---|---|---|
committer | 2004-04-02 15:34:48 +0000 | |
commit | f786ce57e228cedd38691e54db2ec358a59864fc (patch) | |
tree | 92fd00b22cc938dbce5e8e946832aaa7df496d13 /lib/libpthread | |
parent | add `nokeep' to the table to stop an ugly line break; (diff) | |
download | wireguard-openbsd-f786ce57e228cedd38691e54db2ec358a59864fc.tar.xz wireguard-openbsd-f786ce57e228cedd38691e54db2ec358a59864fc.zip |
slow_atomic_lock.c is only used by mips; marc@ ok
Diffstat (limited to 'lib/libpthread')
-rw-r--r-- | lib/libpthread/sys/Makefile.inc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/libpthread/sys/Makefile.inc b/lib/libpthread/sys/Makefile.inc index f39fe7e43a0..3081b701ab8 100644 --- a/lib/libpthread/sys/Makefile.inc +++ b/lib/libpthread/sys/Makefile.inc @@ -1,9 +1,12 @@ -# $OpenBSD: Makefile.inc,v 1.13 2004/02/06 01:52:01 brad Exp $ +# $OpenBSD: Makefile.inc,v 1.14 2004/04/02 15:34:48 mickey Exp $ .PATH: ${SRCDIR}/sys ${SRCDIR}/arch/${MACHINE_ARCH} SRCS+= uthread_error.c + +.if (${MACHINE_ARCH} == "mips") SRCS+= slow_atomic_lock.c +.endif .if exists(${SRCDIR}/arch/${MACHINE_ARCH}/_atomic_lock.c) SRCS+= _atomic_lock.c |