Correct files/patch-src:libw32dll:ldt_keeper.c to avoid to fail in Check_FS_Segment().

Submitted by:	deischen
This commit is contained in:
MANTANI Nobutaka 2003-12-12 12:00:36 +00:00
parent 31dd5856fd
commit 687a879f20
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=95655
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@
PORTNAME= xine
PORTVERSION= 1.0.r2
PORTREVISION= 3
PORTREVISION= 4
CATEGORIES= multimedia
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}

View File

@ -34,7 +34,7 @@
+#if defined(__FreeBSD__) && defined(LDT_AUTO_ALLOC)
+ ret = i386_set_ldt(LDT_AUTO_ALLOC, (union descriptor *)d, 1);
+ array.entry_number = ret;
+ teb_sel = ret;
+ teb_sel = LDT_SEL(ret);
+#else
ret = i386_set_ldt(array.entry_number, (union descriptor *)d, 1);
+#endif