From owner-freebsd-emulation Sun Nov 5 22:40:40 2000 Delivered-To: freebsd-emulation@freebsd.org Received: from io.dreamscape.com (io.dreamscape.com [206.64.128.6]) by hub.freebsd.org (Postfix) with ESMTP id 4DFF337B4C5 for ; Sun, 5 Nov 2000 22:40:38 -0800 (PST) Received: from dreamscape.com (sA16-p33.dreamscape.com [209.217.195.160]) by io.dreamscape.com (8.9.3/8.8.4) with ESMTP id BAA29923; Mon, 6 Nov 2000 01:38:19 -0500 (EST) X-Dreamscape-Track-A: sA16-p33.dreamscape.com [209.217.195.160] X-Dreamscape-Track-B: Mon, 6 Nov 2000 01:38:19 -0500 (EST) Received: (from krentel@localhost) by dreamscape.com (8.9.3/8.9.3) id BAA00789; Mon, 6 Nov 2000 01:37:27 -0500 (EST) (envelope-from krentel) Date: Mon, 6 Nov 2000 01:37:27 -0500 (EST) From: "Mark W. Krentel" Message-Id: <200011060637.BAA00789@dreamscape.com> To: marcel@cup.hp.com Cc: freebsd-emulation@FreeBSD.ORG Subject: Re: getdents problem resolved Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Marcel Moolenaar wrote: > I just committed a fix for the linux_getdents problem. This problem has > been around for a while, but I simply didn't had the time to fix it... Great! I tried your patch and it seems to work. I was able to run the linux versions of ls, readdir and dired (emacs) on ext2fs and cdrom partitions and see all of the directory entries. These all used to fail (too few entries), and now they all work. The problem didn't affect UFS partitions. I'd like to do a few more tests, but I think this will ultimately fix and close PR kern/19407. I tried the patch in 4.1 (I don't run -current) with linux_base-6.1. But from looking at the patch, that seemed ok. --Mark To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Sun Nov 5 23:14:41 2000 Delivered-To: freebsd-emulation@freebsd.org Received: from palrel1.hp.com (palrel1.hp.com [156.153.255.242]) by hub.freebsd.org (Postfix) with ESMTP id 425CB37B4D7 for ; Sun, 5 Nov 2000 23:14:40 -0800 (PST) Received: from adlmail.cup.hp.com (adlmail.cup.hp.com [15.0.100.30]) by palrel1.hp.com (Postfix) with ESMTP id 779F47F5; Sun, 5 Nov 2000 23:14:39 -0800 (PST) Received: from cup.hp.com (p1000180.nsr.hp.com [15.109.0.180]) by adlmail.cup.hp.com (8.9.3 (PHNE_18546)/8.9.3 SMKit7.02) with ESMTP id XAA04122; Sun, 5 Nov 2000 23:14:37 -0800 (PST) Message-ID: <3A065A5D.67668645@cup.hp.com> Date: Sun, 05 Nov 2000 23:14:37 -0800 From: Marcel Moolenaar Organization: Hewlett-Packard X-Mailer: Mozilla 4.73 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: "Mark W. Krentel" Cc: freebsd-emulation@FreeBSD.ORG Subject: Re: getdents problem resolved References: <200011060637.BAA00789@dreamscape.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org "Mark W. Krentel" wrote: > > Marcel Moolenaar wrote: > > I just committed a fix for the linux_getdents problem. This problem has > > been around for a while, but I simply didn't had the time to fix it... > > Great! I tried your patch and it seems to work. I was able to run > the linux versions of ls, readdir and dired (emacs) on ext2fs and > cdrom partitions and see all of the directory entries. These all used > to fail (too few entries), and now they all work. The problem didn't > affect UFS partitions. I'd like to do a few more tests, but I think > this will ultimately fix and close PR kern/19407. Ok, thanks for the feedback! -- Marcel Moolenaar mail: marcel@cup.hp.com / marcel@FreeBSD.org tel: (408) 447-4222 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Mon Nov 6 4:15:16 2000 Delivered-To: freebsd-emulation@freebsd.org Received: from vexpert.dbai.tuwien.ac.at (vexpert.dbai.tuwien.ac.at [128.130.111.12]) by hub.freebsd.org (Postfix) with ESMTP id 668AE37B479; Mon, 6 Nov 2000 04:15:07 -0800 (PST) Received: from [128.130.111.77] (taygeta [128.130.111.77]) by vexpert.dbai.tuwien.ac.at (8.9.3/8.9.3) with ESMTP id NAA16527; Mon, 6 Nov 2000 13:14:55 +0100 (MET) Date: Mon, 6 Nov 2000 13:14:56 +0100 (CET) From: Gerald Pfeifer To: , Subject: Wine port: How to obtain MAC address? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org For the Wine port I'd need to obtain the MAC address of an ethernet interface, alas it seems that this is not easily possible the way it is done in Linux/Solaris? For Linux, the code in Wine looks as follows: strcpy(ifInfo.ifr_name, ifName); if (ioctl(sock, SIOCGIFHWADDR, &ifInfo) < 0) { ERR ("Error obtaining MAC Address!\n"); close(sock); return (-1); } else { /* FIXME: Is it correct to assume size of 6? */ memcpy(IntInfo->if_physaddr, ifInfo.ifr_hwaddr.sa_data, 6); IntInfo->if_physaddrlen=6; } For FreeBSD I tried the following program, which doesn't really do what I want. If I use SIOCSIFPHYADDR, I get errno=22, and SIOCGIFADDR leads to a crash later on. Any hints? (Most probably I'm tried completely stupid things, but unfortunately, that part of the system is not really documented apart from the include files, so I had to take a guess&check approach. :-( ) -------- cut -------- #include #include #include #include #include #include main() { struct ifreq ifInfo; int sock; int status; if ( (sock = socket (AF_INET, SOCK_DGRAM, 0)) < 0 ) { printf("Error creating socket!\n"); return -1; } memset(&ifInfo,0,sizeof ifInfo); strcpy(ifInfo.ifr_name,"fxp0"); if ( (status = ioctl(sock,/*SIOCSIFPHYADDR*/SIOCGIFADDR,&ifInfo)) < 0) { printf("Error %d obtaining MAC Address!\n",errno); close(sock); return -1; } else { char *p=ifInfo.ifr_data; unsigned u; printf("Pointer=%ld\nMAC Address=",(long int)p); fflush(stdout); for(u=0; u < 6; u++) printf("%d:",(int)*p); } } -------- cut -------- Gerald -- Gerald "Jerry" pfeifer@dbai.tuwien.ac.at http://www.dbai.tuwien.ac.at/~pfeifer/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Mon Nov 6 5:40: 6 2000 Delivered-To: freebsd-emulation@freebsd.org Received: from puck.firepipe.net (mcut-b-167.resnet.purdue.edu [128.211.209.167]) by hub.freebsd.org (Postfix) with ESMTP id 0878637B479 for ; Mon, 6 Nov 2000 05:40:03 -0800 (PST) Received: by puck.firepipe.net (Postfix, from userid 1000) id A7F9E18E0; Mon, 6 Nov 2000 08:40:02 -0500 (EST) Date: Mon, 6 Nov 2000 08:40:02 -0500 From: Will Andrews To: emulation@FreeBSD.org Subject: FW: Re: Wine port: How to obtain MAC address? Message-ID: <20001106084002.K565@puck.firepipe.net> Reply-To: Will Andrews Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-Operating-System: FreeBSD 4.1-STABLE i386 Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Oops, sorry for the wrong address. :-P ----- Forwarded message from Will Andrews ----- Date: Mon, 6 Nov 2000 08:36:44 -0500 Reply-To: Will Andrews From: Will Andrews To: Gerald Pfeifer Cc: ports@FreeBSD.org, emulators@FreeBSD.org Subject: Re: Wine port: How to obtain MAC address? User-Agent: Mutt/1.2.5i On Mon, Nov 06, 2000 at 01:14:56PM +0100, Gerald Pfeifer wrote: > For the Wine port I'd need to obtain the MAC address of an ethernet > interface, alas it seems that this is not easily possible the way it > is done in Linux/Solaris? Well, you could always look at the base system for examples. For example, I'm sure that what you're looking for can be found in src/sbin/ifconfig. -- wca ----- End forwarded message ----- -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Mon Nov 6 9:31:52 2000 Delivered-To: freebsd-emulation@freebsd.org Received: from palrel3.hp.com (palrel3.hp.com [156.153.255.226]) by hub.freebsd.org (Postfix) with ESMTP id BC54B37B4E5 for ; Mon, 6 Nov 2000 09:31:49 -0800 (PST) Received: from adlmail.cup.hp.com (adlmail.cup.hp.com [15.0.100.30]) by palrel3.hp.com (Postfix) with ESMTP id 6B941562; Mon, 6 Nov 2000 09:31:49 -0800 (PST) Received: from cup.hp.com (gauss.cup.hp.com [15.28.97.152]) by adlmail.cup.hp.com (8.9.3 (PHNE_18546)/8.9.3 SMKit7.02) with ESMTP id JAA16736; Mon, 6 Nov 2000 09:31:49 -0800 (PST) Message-ID: <3A06EB05.F908822@cup.hp.com> Date: Mon, 06 Nov 2000 12:31:49 -0500 From: Marcel Moolenaar Organization: Hewlett-Packard X-Mailer: Mozilla 4.73 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Gerald Pfeifer Cc: emulation@FreeBSD.ORG Subject: Re: Wine port: How to obtain MAC address? References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Gerald Pfeifer wrote: > > For the Wine port I'd need to obtain the MAC address of an ethernet > interface, alas it seems that this is not easily possible the way it > is done in Linux/Solaris? > > For Linux, the code in Wine looks as follows: > > strcpy(ifInfo.ifr_name, ifName); > if (ioctl(sock, SIOCGIFHWADDR, &ifInfo) < 0) > { > ERR ("Error obtaining MAC Address!\n"); > close(sock); > return (-1); > } > else > { > /* FIXME: Is it correct to assume size of 6? */ > memcpy(IntInfo->if_physaddr, ifInfo.ifr_hwaddr.sa_data, 6); > IntInfo->if_physaddrlen=6; > } See /sys/compat/linux/linux_ioctl.c:1370 case LINUX_SIOCGIFHWADDR: { int ifn; struct ifnet *ifp; struct ifaddr *ifa; struct sockaddr_dl *sdl; struct linux_ifreq *ifr = (struct linux_ifreq *)args->arg; /* Note that we don't actually respect the name in the ifreq * structure, as Linux interface names are all different. */ for (ifn = 0; ifn < if_index; ifn++) { ifp = ifnet_addrs[ifn]->ifa_ifp; if (ifp->if_type == IFT_ETHER) { ifa = TAILQ_FIRST(&ifp->if_addrhead); while (ifa) { sdl=(struct sockaddr_dl*)ifa->ifa_addr; if (sdl != NULL && (sdl->sdl_family == AF_LINK) && (sdl->sdl_type == IFT_ETHER)) { return (copyout(LLADDR(sdl), &ifr->ifr_hwaddr.sa_data, LINUX_IFHWADDRLEN)); } ifa = TAILQ_NEXT(ifa, ifa_link); } } } return (ENOENT); } This gives you a kernel-space datapoint. With that, you should be able to mimic what ifconfig (as Will suggested) does. HTH, -- Marcel Moolenaar mail: marcel@cup.hp.com / marcel@FreeBSD.org tel: (408) 447-4222 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Mon Nov 6 11: 4:16 2000 Delivered-To: freebsd-emulation@freebsd.org Received: from seven.watermarkgroup.com (seven.watermarkgroup.com [207.202.73.98]) by hub.freebsd.org (Postfix) with ESMTP id 3DE3237B4CF; Mon, 6 Nov 2000 11:04:09 -0800 (PST) Received: (from luoqi@localhost) by seven.watermarkgroup.com (8.9.3/8.9.3) id OAA09537; Mon, 6 Nov 2000 14:04:08 -0500 (EST) (envelope-from luoqi) Date: Mon, 6 Nov 2000 14:04:08 -0500 (EST) From: Luoqi Chen Message-Id: <200011061904.OAA09537@seven.watermarkgroup.com> To: emulation@FreeBSD.ORG, pfeifer@dbai.tuwien.ac.at, ports@FreeBSD.ORG Subject: Re: Wine port: How to obtain MAC address? In-Reply-To: Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > For the Wine port I'd need to obtain the MAC address of an ethernet > interface, alas it seems that this is not easily possible the way it > is done in Linux/Solaris? > > For Linux, the code in Wine looks as follows: > > strcpy(ifInfo.ifr_name, ifName); > if (ioctl(sock, SIOCGIFHWADDR, &ifInfo) < 0) > { > ERR ("Error obtaining MAC Address!\n"); > close(sock); > return (-1); > } > else > { > /* FIXME: Is it correct to assume size of 6? */ > memcpy(IntInfo->if_physaddr, ifInfo.ifr_hwaddr.sa_data, 6); > IntInfo->if_physaddrlen=6; > } > > For FreeBSD I tried the following program, which doesn't really do what > I want. If I use SIOCSIFPHYADDR, I get errno=22, and SIOCGIFADDR leads > to a crash later on. > > Any hints? (Most probably I'm tried completely stupid things, but > unfortunately, that part of the system is not really documented apart > from the include files, so I had to take a guess&check approach. :-( ) > There's no easy way (that I know of) to get the mac address in FreeBSD. (time for a SIOCGIFLLADDR?) You may look at how ifconfig does it, but I think the following method is a little bit easier: #include #include #include #include #include #include #include main() { struct ifconf ifc; struct ifreq *ifr; struct sockaddr_dl *sdl; char buf[4096], *p; int s; s = socket(AF_INET, SOCK_DGRAM, 0); if (s < 0) err(-1, "socket"); ifc.ifc_len = sizeof buf; ifc.ifc_buf = buf; if (ioctl(s, SIOCGIFCONF, &ifc) < 0) err(-1, "ioctl"); close(s); for (p = buf; p < buf + ifc.ifc_len; ) { ifr = (struct ifreq *)p; if (ifr->ifr_addr.sa_family == AF_LINK) { sdl = (struct sockaddr_dl *)&ifr->ifr_addr; if (sdl->sdl_type == IFT_ETHER) { unsigned char *ea = LLADDR(sdl); printf("%s\t%x:%x:%x:%x:%x:%x\n", ifr->ifr_name, ea[0], ea[1], ea[2], ea[3], ea[4], ea[5]); } } p += _SIZEOF_ADDR_IFREQ(*ifr); } } -lq To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Wed Nov 8 11:54: 6 2000 Delivered-To: freebsd-emulation@freebsd.org Received: from zorch.sf-bay.org (zorch.sf-bay.org [192.150.103.17]) by hub.freebsd.org (Postfix) with ESMTP id DAE4237B479 for ; Wed, 8 Nov 2000 11:54:03 -0800 (PST) Received: (from uucp@localhost) by zorch.sf-bay.org (8.9.3/8.8.2) with UUCP id LAA99253 for freebsd-emulation@freebsd.org; Wed, 8 Nov 2000 11:54:03 -0800 (PST) Received: (from scott@localhost) by zorba.sf-bay.org (8.11.1/8.8.8) id eA8Jpe036355 for freebsd-emulation@freebsd.org; Wed, 8 Nov 2000 11:51:40 -0800 (PST) (envelope-from scott) Date: Wed, 8 Nov 2000 11:51:40 -0800 (PST) From: Scott Hazen Mueller Message-Id: <200011081951.eA8Jpe036355@zorba.sf-bay.org> Subject: Re: getdents problem resolved To: freebsd-emulation@freebsd.org X-Envelope-To: freebsd-emulation@freebsd.org Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In the quoted message, 'Marcel Moolenaar ' wrote: >I just committed a fix for the linux_getdents problem. This problem has >been around for a while, but I simply didn't had the time to fix it... My system is on an couple of week old -current, so I had to hand-apply the diff to try it. I don't know if there are dependencies on other recent changes or not, but for now all I did was apply the changes in the last diff to my copy of version 1.41 of linux_file.c. >Let me know if the fix is indeed a fix or if there are still some (other) >issues! Sorry it took so long, It does not seem to resolve the Citrix issue with sharing the client's disk, given the caveat noted above. Let me know if I can supply additional information. \scott To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Wed Nov 8 13:15:10 2000 Delivered-To: freebsd-emulation@freebsd.org Received: from palrel3.hp.com (palrel3.hp.com [156.153.255.226]) by hub.freebsd.org (Postfix) with ESMTP id EE95B37B479 for ; Wed, 8 Nov 2000 13:15:08 -0800 (PST) Received: from adlmail.cup.hp.com (adlmail.cup.hp.com [15.0.100.30]) by palrel3.hp.com (Postfix) with ESMTP id 6F2C090A; Wed, 8 Nov 2000 13:15:00 -0800 (PST) Received: from cup.hp.com (gauss.cup.hp.com [15.28.97.152]) by adlmail.cup.hp.com (8.9.3 (PHNE_18546)/8.9.3 SMKit7.02) with ESMTP id NAA27615; Wed, 8 Nov 2000 13:14:59 -0800 (PST) Message-ID: <3A09C253.69F71B8D@cup.hp.com> Date: Wed, 08 Nov 2000 16:14:59 -0500 From: Marcel Moolenaar Organization: Hewlett-Packard X-Mailer: Mozilla 4.73 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Scott Hazen Mueller Cc: freebsd-emulation@FreeBSD.ORG Subject: getdents and Citrix [was: Re: getdents problem resolved] References: <200011081951.eA8Jpe036355@zorba.sf-bay.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Scott Hazen Mueller wrote: > > In the quoted message, 'Marcel Moolenaar ' wrote: > >I just committed a fix for the linux_getdents problem. This problem has > >been around for a while, but I simply didn't had the time to fix it... > > My system is on an couple of week old -current, so I had to hand-apply the > diff to try it. I don't know if there are dependencies on other recent > changes or not, but for now all I did was apply the changes in the last diff > to my copy of version 1.41 of linux_file.c. There are no dependencies. Hand-applying the diff works for both -current and -stable. In fact, the fix has been merged to -stable and will be in 4.2 > >Let me know if the fix is indeed a fix or if there are still some (other) > >issues! Sorry it took so long, > > It does not seem to resolve the Citrix issue with sharing the client's disk, > given the caveat noted above. Let me know if I can supply additional > information. Yes, please. I can't recall the exact problem with Citrix. -- Marcel Moolenaar mail: marcel@cup.hp.com / marcel@FreeBSD.org tel: (408) 447-4222 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Thu Nov 9 10:29:47 2000 Delivered-To: freebsd-emulation@freebsd.org Received: from avmgroup.ru (gw-srv.avmgroup.ru [194.105.211.253]) by hub.freebsd.org (Postfix) with ESMTP id B9FC337B479 for ; Thu, 9 Nov 2000 10:29:43 -0800 (PST) Received: from lamer (lamer.avmgroup.ru [194.105.211.4]) by avmgroup.ru (8.10.1/8.10.1) with SMTP id eA9ITa623829 for ; Thu, 9 Nov 2000 21:29:36 +0300 (MSK) Message-ID: <000801c04ad7$75b2a580$04d369c2@lamer> From: "Aleksey" To: Subject: alex Date: Thu, 9 Nov 2000 21:31:20 -0800 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0005_01C04A94.66EBF990" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2919.6700 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6700 Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multi-part message in MIME format. ------=_NextPart_000_0005_01C04A94.66EBF990 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: quoted-printable Hi ! please help me ! why doscmd write me - "doscmdrc a boot" ? Thanks ! ------=_NextPart_000_0005_01C04A94.66EBF990 Content-Type: text/html; charset="koi8-r" Content-Transfer-Encoding: quoted-printable
Hi !
 
please help me ! why doscmd write = me -=20 "doscmdrc a boot" ?
 
Thanks = !
------=_NextPart_000_0005_01C04A94.66EBF990-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message From owner-freebsd-emulation Fri Nov 10 16:23:39 2000 Delivered-To: freebsd-emulation@freebsd.org Received: from vexpert.dbai.tuwien.ac.at (vexpert.dbai.tuwien.ac.at [128.130.111.12]) by hub.freebsd.org (Postfix) with ESMTP id 68C9C37B4C5; Fri, 10 Nov 2000 16:23:35 -0800 (PST) Received: from [128.130.111.2] (deneb [128.130.111.2]) by vexpert.dbai.tuwien.ac.at (8.9.3/8.9.3) with ESMTP id BAA00843; Sat, 11 Nov 2000 01:23:30 +0100 (MET) Date: Sat, 11 Nov 2000 01:23:30 +0100 (CET) From: Gerald Pfeifer To: Luoqi Chen Cc: , Subject: Re: Wine port: How to obtain MAC address? In-Reply-To: <200011061904.OAA09537@seven.watermarkgroup.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, 6 Nov 2000, Luoqi Chen wrote: > There's no easy way (that I know of) to get the mac address in FreeBSD. :-( > (time for a SIOCGIFLLADDR?) Yes, Yes, Yes. Please. But perhaps you could mimmick what Linux does? strcpy(ifInfo.ifr_name, ifName); if (ioctl(sock, SIOCGIFHWADDR, &ifInfo) < 0) : (Thanks to all you responded with helpful hints! I'll try to hack the Wine port accordingly.) Gerald -- Gerald "Jerry" pfeifer@dbai.tuwien.ac.at http://www.dbai.tuwien.ac.at/~pfeifer/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message