From owner-freebsd-ports@FreeBSD.ORG Mon Aug 26 18:58:19 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 7F3EEE4 for ; Mon, 26 Aug 2013 18:58:19 +0000 (UTC) (envelope-from mueller6724@bellsouth.net) Received: from nm20-vm1.access.bullet.mail.gq1.yahoo.com (nm20-vm1.access.bullet.mail.gq1.yahoo.com [216.39.63.18]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 355F42818 for ; Mon, 26 Aug 2013 18:58:18 +0000 (UTC) Received: from [216.39.60.175] by nm20.access.bullet.mail.gq1.yahoo.com with NNFMP; 26 Aug 2013 18:58:12 -0000 Received: from [67.195.14.95] by tm11.access.bullet.mail.gq1.yahoo.com with NNFMP; 26 Aug 2013 18:58:12 -0000 Received: from [127.0.0.1] by smtp110.sbc.mail.gq1.yahoo.com with NNFMP; 26 Aug 2013 18:58:12 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bellsouth.net; s=s1024; t=1377543492; bh=l0fxaxloIAeQRymLoyFSG4pwnJHc06TBHySYOfevDCo=; h=X-Yahoo-Newman-Id:Message-ID:Date:X-Yahoo-Newman-Property:X-YMail-OSG:X-Yahoo-SMTP:X-Rocket-Received:From:To:CC:Subject; b=Cd1qsQV8YY/Hyj/6dtjWEzrfjAq6C0qTzi+1wFL/VbcKsWD76phtvrlZc/+xnf8o+BxEw4WwfShuRcZ1nZVSUEudYkDGOT6LC28DWSJN5L2wggPTzY1686fhyxy4dgPg5wBbQ3Hep7yfzPoEfheOS2zVOZVSNq1ZvV14VdWrQVk= X-Yahoo-Newman-Id: 441234.68950.bm@smtp110.sbc.mail.gq1.yahoo.com Message-ID: <441234.68950.bm@smtp110.sbc.mail.gq1.yahoo.com> Date: Mon, 26 Aug 2013 11:58:12 -0700 (PDT) X-Yahoo-Newman-Property: ymail-3 X-YMail-OSG: .HCwzPEVM1nQN0iE5v.drxzljwZ8vDRmxeiH0bsD5mfidbA XCMcZ3FpWVwmUq_GfR1uLHNMCgs12QfN8TiHyTHe1mICRAGHW0pXfmzGfuhK qapBV0cXrOOA5lN6eIQsVGP7oUbVzUQVwgrghJ5u8QJeopk43HIzSmSZak6a Wwea1.RenLknHrYicq_NZzoRggtxMLA5QVp3zLCeg4eTI9RwPURMkexJhTcM 6qvzzLAVImT4pfCeHnxfzLl9KDm7NhTx6d3kvlIeVSYBewOG3bmjiuYIlE33 E0kBxUgWMJlx3NYT8Aoplisp_q5.3neFRP29V9_et82ixhGv53aLOoyoFjf8 QmgG7UAQmwuuJXVfK6Wj.BUSCjgRoqZP.RlHNW_bnrJZ0.3DLOzkHcUKieus 1q9TFcLpKsU0fonAbVOWHQRA8aIwOI_EiKL9cYgywWQ2f_9_XTt1DRh3n4nx 6DJg2mMOyh9rB4AHnbz9vT2rWHkC1ls0u2SFWnDZcSUyaR5ZJMp84bwrwIdl fGmnZYbvDLp.bdsZnoKySfBuHP34v7AN1W00Tym2APK9Pd.sbc.HfHgiVwsw pHXQssrjszVh72A-- X-Yahoo-SMTP: Kz_aW1.swBBYof3zAD7.RWzXz9ZAQVDMml1VADsbgPT4Kq79LC0- X-Rocket-Received: from localhost (mueller6724@74.130.200.176 with plain) by smtp110.sbc.mail.gq1.yahoo.com with SMTP; 26 Aug 2013 11:58:12 -0700 PDT From: "Thomas Mueller" To: freebsd-ports@freebsd.org Subject: Re: How to start wine? Cc: David Naylor X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Aug 2013 18:58:19 -0000 What are LD_LIBRARY_PATH and LD_32_LIBRARY_PATH supposed to be? I see neither of these environment variables defined. And what about PATH? I am trying #!/bin/sh set PATH=/compat/i386/usr/local/bin:/compat/i386/usr/local/sbin:/compat/i386/usr/bin:/compat/i386/usr/sbin:/compat/i386/bin:/compat/i386/sbin:$PATH export LD_32_LIBRARY_PATH=/compat/i386/usr/local/lib:/compat/i386/usr/lib:/compat/i386/lib:$LD_32_LIBRARY_PATH export LD_LIBRARY_PATH=/compat/i386/usr/local/lib:/compat/i386/usr/lib:/compat/i386/lib:$LD_LIBRARY_PATH but I feel like I'm just thrashing here, will run into trouble trying to execute 32-bit binaries when not appropriate. I see /lib /libexec /usr/lib /usr/lib32 /usr/libdata /usr/libexec /usr/local/lib /usr/local/libdata /usr/local/libexec and then there are some subdirectories of these directories with the FreeBSD i386 installation not mounted. I have seen LD_LIBRARY_PATH before from building packages from source. I thought maybe wineboot would set up the environment, but it looks like I have to set up the environment beforehand. What is the difference between the various wine ports in $PORTSDIR/emulators? I used wine-devel, newer but less tested than wine. Upstream latest release is 1.6 as far as I can see. Building X for FreeBSD i386 before wine would be necessary for running from i386 boot even if not runnable from amd64. My i386 version was/is somewhat behind amd64 version. Tom