Date: Wed, 1 Apr 2009 19:23:47 +0000 (UTC) From: Konstantin Belousov <kib@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r190632 - head/lib/libc/i386/sys Message-ID: <200904011923.n31JNlhh040482@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: kib Date: Wed Apr 1 19:23:46 2009 New Revision: 190632 URL: http://svn.freebsd.org/changeset/base/190632 Log: Unconditionally build wrappers for i386_get_ioperm(), i386_set_ioperm(), i386_get_ldt() and i386_set_ldt(). In collaboration with: pho Reviewed by: jhb Modified: head/lib/libc/i386/sys/Makefile.inc Modified: head/lib/libc/i386/sys/Makefile.inc ============================================================================== --- head/lib/libc/i386/sys/Makefile.inc Wed Apr 1 19:23:07 2009 (r190631) +++ head/lib/libc/i386/sys/Makefile.inc Wed Apr 1 19:23:46 2009 (r190632) @@ -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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200904011923.n31JNlhh040482>