diff options
author | kib <kib@FreeBSD.org> | 2009-04-01 19:23:46 +0000 |
---|---|---|
committer | kib <kib@FreeBSD.org> | 2009-04-01 19:23:46 +0000 |
commit | e965f0a26dd194aa82e93f27e2493e7c4d0afea2 (patch) | |
tree | bc214c36ee1ffb9088a143c9f52921c2a8fe388c /lib/libc | |
parent | 1fca0aa45488cf02ecb8bbacad7dd637a64c8d59 (diff) | |
download | FreeBSD-src-e965f0a26dd194aa82e93f27e2493e7c4d0afea2.zip FreeBSD-src-e965f0a26dd194aa82e93f27e2493e7c4d0afea2.tar.gz |
Unconditionally build wrappers for i386_get_ioperm(), i386_set_ioperm(),
i386_get_ldt() and i386_set_ldt().
In collaboration with: pho
Reviewed by: jhb
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/i386/sys/Makefile.inc | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/libc/i386/sys/Makefile.inc b/lib/libc/i386/sys/Makefile.inc index 593956b..98a9c9e 100644 --- a/lib/libc/i386/sys/Makefile.inc +++ b/lib/libc/i386/sys/Makefile.inc @@ -2,11 +2,10 @@ # $FreeBSD$ .if !defined(COMPAT_32BIT) -SRCS+= i386_clr_watch.c i386_get_ioperm.c \ - i386_set_ioperm.c i386_set_watch.c i386_vm86.c +SRCS+= i386_clr_watch.c i386_set_watch.c i386_vm86.c .endif -SRCS+= i386_get_fsbase.c i386_get_gsbase.c i386_get_ldt.c \ - i386_set_fsbase.c i386_set_gsbase.c i386_set_ldt.c +SRCS+= i386_get_fsbase.c i386_get_gsbase.c i386_get_ioperm.c i386_get_ldt.c \ + i386_set_fsbase.c i386_set_gsbase.c i386_set_ioperm.c i386_set_ldt.c MDASM= Ovfork.S brk.S cerror.S exect.S getcontext.S pipe.S ptrace.S \ reboot.S sbrk.S setlogin.S sigreturn.S syscall.S |