From owner-freebsd-emulation@FreeBSD.ORG Sun Nov 27 01:50:17 2005 Return-Path: X-Original-To: freebsd-emulation@freebsd.org Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1B6A816A41F; Sun, 27 Nov 2005 01:50:17 +0000 (GMT) (envelope-from arno@heho.snv.jussieu.fr) Received: from shiva.jussieu.fr (shiva.jussieu.fr [134.157.0.129]) by mx1.FreeBSD.org (Postfix) with ESMTP id 79D1243D5E; Sun, 27 Nov 2005 01:50:16 +0000 (GMT) (envelope-from arno@heho.snv.jussieu.fr) Received: from heho.snv.jussieu.fr (heho.snv.jussieu.fr [134.157.184.22]) by shiva.jussieu.fr (8.13.5/jtpda-5.4) with ESMTP id jAR1oEED078622 ; Sun, 27 Nov 2005 02:50:14 +0100 (CET) X-Ids: 165 Received: from heho.labo (localhost [127.0.0.1]) by heho.snv.jussieu.fr (8.13.3/jtpda-5.2) with ESMTP id jAR1oD4u081808 ; Sun, 27 Nov 2005 02:50:13 +0100 (MET) Received: (from arno@localhost) by heho.labo (8.13.3/8.13.1/Submit) id jAR1oCx0081805; Sun, 27 Nov 2005 02:50:12 +0100 (MET) (envelope-from arno) Sender: arno@heho.snv.jussieu.fr To: amd64@freebsd.org From: "Arno J. Klaassen" Date: 27 Nov 2005 02:50:12 +0100 Message-ID: Lines: 114 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-1.7.2 (shiva.jussieu.fr [134.157.0.165]); Sun, 27 Nov 2005 02:50:14 +0100 (CET) X-Antivirus: scanned by sophie at shiva.jussieu.fr X-Miltered: at shiva.jussieu.fr with ID 438910D6.000 by Joe's j-chkmail (http://j-chkmail.ensmp.fr)! Cc: java@freebsd.org, freebsd-emulation@freebsd.org Subject: quest for help on a linux emul problem (source unknown) X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Nov 2005 01:50:17 -0000 Hello, I try to get a commercial linux32 package to work on amd64; this package includes it's own binary distrib of some linux-jdk1.3.1 and works OK on i386 (RELENG_5 and RELENG_6) but hangs on amd64-RELENG_6 (though it did work on a couple of months old amd64-RELENG-5, but I do not any longer have such a box around ... ). I write this email in the hope someone can put me on the right track to nail down this problem : when I do a ktrace on i386 I get : CALL mincore(0xbfbfc480,0) RET mincore 0 CALL #175(0,0,0xbfbfc2b4,0x8) RET #175 0 CALL #175(0x1,0xbfbfc3b8,0xbfbfc338,0x8) RET #175 0 CALL mincore(0xbfbfc290,0) RET mincore 0 CALL getdomainname(0xbfbfc288,0) RET getdomainname 0 then some dozens of : CALL #175(0x2,0xbfbfc338,0,0x8) RET #175 0 CALL mincore(0xbfbfc480,0) RET mincore 0 CALL #175(0,0,0xbfbfc2b4,0x8) RET #175 0 CALL #175(0x1,0xbfbfc3b8,0xbfbfc338,0x8) RET #175 0 CALL mincore(0xbfbfc290,0) RET mincore 0 CALL getdomainname(0xbfbfc288,0) RET getdomainname 0 and finally : CALL #175(0x2,0xbfbfc338,0,0x8) RET #175 0 CALL write(0xb,0x83189e8,0x18) GIO fd 11 wrote 24 bytes On amd64-RELENG_6 it eternally loops in phase2 and never reaches the 'finally'. Iff I understand correctly (far from sure!) and correct for different syscall-numbers, I get : ask-for-initing-something { gettimeofday() sigprocmask(SIG_BLOCK,..) sigprocmask(SIG_UNBLOCK,..) gettimeofday() nanosleep() } while-not-OK { sigprocmask(SIG_SETMASK,..) gettimeofday() sigprocmask(SIG_BLOCK,..) sigprocmask(SIG_UNBLOCK,..) gettimeofday() nanosleep() } OK! { sigprocmask(SIG_SETMASK,..) continue() } Since the program works OK in terminal mode, the problem very probably is in the jdk-execution. I re-downloaded the jdk13 sources and found that only at two places sigprocmask() is called with SIG_UNBLOCK as argument, and one of them only seems to serve the purpose of a work-around : * a workaround for the preemptive-close * problem on Linux (bug #4344135); A thread currently waiting in * a I/O operation will not wake up if one the file involved * is actually closed (last close - the file is no longer accessible, * but the thread is still waiting in the kernel). NB, this is a linux-jdk-1.3.0 problem, solved in linux-jdk-1.3.1, so "an sich" not involved in my problem, but the idea of a thread not waking up or signal not getting correctly delivered seems plausible to my simple end-user mind. once again, if this kind of pseudo-code sounds familiar to someone, please give me some hints which way to go to write a simple test-program to pinpoint the problem. Thank you very much for your time anyway. Regards, Arno -- Arno J. Klaassen SCITO S.A. 8 rue des Haies F-75020 Paris, France http://scito.com From owner-freebsd-emulation@FreeBSD.ORG Sun Nov 27 23:44:28 2005 Return-Path: X-Original-To: freebsd-emulation@hub.freebsd.org Delivered-To: freebsd-emulation@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 648B216A41F; Sun, 27 Nov 2005 23:44:28 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 67FA943D53; Sun, 27 Nov 2005 23:44:21 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id jARNi8JP090243; Sun, 27 Nov 2005 23:44:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id jARNi8Le090239; Sun, 27 Nov 2005 23:44:08 GMT (envelope-from edwin) Date: Sun, 27 Nov 2005 23:44:08 GMT From: Edwin Groothuis Message-Id: <200511272344.jARNi8Le090239@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-emulation@FreeBSD.org Cc: Subject: Re: ports/89647: Broken link X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Nov 2005 23:44:28 -0000 Synopsis: Broken link Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-emulation Responsible-Changed-By: edwin Responsible-Changed-When: Sun Nov 27 23:44:08 GMT 2005 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=89647 From owner-freebsd-emulation@FreeBSD.ORG Mon Nov 28 08:24:08 2005 Return-Path: X-Original-To: freebsd-emulation@FreeBSD.org Delivered-To: freebsd-emulation@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B63816A41F for ; Mon, 28 Nov 2005 08:24:08 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id C4DE743D6A for ; Mon, 28 Nov 2005 08:24:07 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id 985EF1A3C2F for ; Mon, 28 Nov 2005 00:24:07 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id B3D8B5158D; Mon, 28 Nov 2005 03:24:06 -0500 (EST) Date: Mon, 28 Nov 2005 03:24:06 -0500 From: Kris Kennaway To: freebsd-emulation@FreeBSD.org Message-ID: <20051128082406.GA14563@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="17pEHd4RhPHOinZp" Content-Disposition: inline User-Agent: Mutt/1.4.2.1i Cc: Subject: [ports-i386@pointyhat.freebsd.org: linux-glib2-2.4.8 pkg-plist errors on i386 4] X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Nov 2005 08:24:08 -0000 --17pEHd4RhPHOinZp Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Dear port maintainer, The following port has an incomplete pkg-plist, or other errors in the files installed by the port. This may mean that the package is incomplete or non-functional; at the very least, your port does not leave the filesystem in the same state it was before the port was installed. Can you please investigate? Thanks, Kris "Ports Janitor" Kennaway ----- Forwarded message from User Ports-i386 ----- X-Original-To: kkenn@localhost Delivered-To: kkenn@localhost.obsecurity.org X-Original-To: kris@FreeBSD.org Delivered-To: kris@FreeBSD.org Date: Sun, 27 Nov 2005 06:54:08 GMT From: User Ports-i386 To: krion@FreeBSD.org, kris@FreeBSD.org Subject: linux-glib2-2.4.8 pkg-plist errors on i386 4 X-UIDL: 6V6"!Kp^"!PSL!![~""! X-Bogosity: Ham, tests=3Dbogofilter, spamicity=3D0.000000, version=3D0.96.6 building linux-glib2-2.4.8 on gohan39.freebsd.org in directory /x/tmp/4/chroot/86711 maintained by: freebsd-emulation@FreeBSD.org port directory: /usr/ports/devel/linux-glib2 For the full build log, see http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/a.4.2005092302/linu= x-glib2-2.4.8.log list of extra files and directories in / (not present before this port was = installed but present after it was deinstalled) 181570 16 drwxr-xr-x 3 root wheel 512 Nov = 27 06:53 compat/linux/usr/share/locale/bs 181571 16 drwxr-xr-x 2 root wheel 512 Nov = 27 06:53 compat/linux/usr/share/locale/bs/LC_MESSAGES 181572 32 -rw-r--r-- 1 root wheel 12797 Dec = 6 2004 compat/linux/usr/share/locale/bs/LC_MESSAGES/glib20.mo 181661 16 drwxr-xr-x 3 root wheel 512 Nov = 27 06:53 compat/linux/usr/share/locale/sr@ije 181662 16 drwxr-xr-x 2 root wheel 512 Nov = 27 06:53 compat/linux/usr/share/locale/sr@ije/LC_MESSAGES =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D build of /usr/ports/devel/linux-glib2 ended at Sun Nov 27 06:53:51 GMT 2005 ----- End forwarded message ----- --17pEHd4RhPHOinZp Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDir6mWry0BWjoQKURAiz1AJ0f/O2gXO00wss3IFrwGWAvKMseLQCgilPE u4gYaaawwLhCZs70Jt/O4F0= =SMV+ -----END PGP SIGNATURE----- --17pEHd4RhPHOinZp-- From owner-freebsd-emulation@FreeBSD.ORG Mon Nov 28 11:02:22 2005 Return-Path: X-Original-To: freebsd-emulation@freebsd.org Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D871516A422 for ; Mon, 28 Nov 2005 11:02:22 +0000 (GMT) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B14343D9C for ; Mon, 28 Nov 2005 11:02:01 +0000 (GMT) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (peter@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id jASB1x8i088102 for ; Mon, 28 Nov 2005 11:01:59 GMT (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id jASB1w7a088095 for freebsd-emulation@freebsd.org; Mon, 28 Nov 2005 11:01:58 GMT (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 28 Nov 2005 11:01:58 GMT Message-Id: <200511281101.jASB1w7a088095@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: freebsd-emulation@FreeBSD.org Cc: Subject: Current problem reports assigned to you X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Nov 2005 11:02:23 -0000 Current FreeBSD problem reports Critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2003/06/28] kern/53874 emulation [linux] /usr/ports/emulators/linux_base i 1 problem total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2000/09/22] kern/21463 emulation Linux compatability mode should not allow o [2001/03/28] kern/26171 emulation [linux] not work Linux-emulator, but hi i o [2002/11/07] kern/45023 emulation [linux] [patch] flexlm does not run with o [2003/09/24] kern/57192 emulation [linux] [hang] linux-ibm-java1.4 freeze o [2004/06/20] kern/68131 emulation [linux] [hang] java/linux-ibm-jdk14: linu o [2004/10/28] kern/73224 emulation [ndis] [patch] Lock order reversal in nto o [2005/01/25] ports/76644 emulation FreeBSD 5.3 will freeze or crash when run o [2005/02/19] kern/77710 emulation [linux] Linux page fault sigcontext infor s [2005/05/05] ports/80679 emulation emulators/linux_base-8: Use ${MACHINE_ARC o [2005/05/12] ports/80926 emulation running $PREFIX/etc/rc.d/vmware.sh return o [2005/10/16] ports/87546 emulation [patch] emulators/rtc: broken if sizeof(i 11 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1999/04/16] kern/11165 emulation [ibcs2] IBCS2 doesn't work correctly with s [2000/12/15] kern/23561 emulation [linux] feature request: Linux compatibil o [2001/08/14] kern/29698 emulation [linux] [patch] linux ipcs doesn'work o [2002/06/12] kern/39201 emulation [linux] [patch] ptrace(2) and rfork(RFLIN o [2002/08/11] kern/41543 emulation [patch] feature request: easier wine/w23 s [2002/09/06] kern/42466 emulation [linux] linux: 'ipc' typ=258 not implemen o [2003/08/21] kern/55835 emulation [linux] [patch] Linux IPC emulation missi o [2004/10/19] ports/72865 emulation emulators/vmware3 crashes on 5.3-STABLE o [2004/10/20] kern/72920 emulation [linux]: path "prefixing" is not done on o [2004/11/08] kern/73663 emulation [ibcs2] module_register_init: MOD_LOAD (i o [2004/11/10] kern/73777 emulation [linux] [patch] linux emulation: root dir o [2004/11/15] kern/73978 emulation [ibcs2] an error message appears during l o [2005/02/08] kern/77253 emulation [linux] meminfo in linprocfs returns bad o [2005/06/08] kern/82026 emulation [ibcs2] module_register_init: MOD_LOAD (i s [2005/07/01] ports/82853 emulation [wish] working linux_base port for alpha o [2005/08/21] kern/85175 emulation [linux] [patch] linux emulation layer wit o [2005/10/20] ports/87745 emulation [patch] x11-toolkits/linux-openmotif: add o [2005/11/27] ports/89647 emulation Broken link 18 problems total. From owner-freebsd-emulation@FreeBSD.ORG Mon Nov 28 13:58:30 2005 Return-Path: X-Original-To: freebsd-emulation@freebsd.org Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D5A2316A41F for ; Mon, 28 Nov 2005 13:58:30 +0000 (GMT) (envelope-from jaro@proxy.coop-voz.sk) Received: from proxy.coop-voz.sk (ttxb58.ttx-net.sk [193.110.187.58]) by mx1.FreeBSD.org (Postfix) with ESMTP id 730AB43D46 for ; Mon, 28 Nov 2005 13:58:29 +0000 (GMT) (envelope-from jaro@proxy.coop-voz.sk) Received: from proxy.coop-voz.sk (localhost [127.0.0.1]) by nod32.coop (Postfix) with ESMTP id D0930B3DC5; Mon, 28 Nov 2005 14:58:26 +0100 (CET) X-Virus-Scanner: This message was checked by NOD32 Antivirus system NOD32 for Linux Mail Server. For more information on NOD32 Antivirus System, please, visit our website: http://www.nod32.com/. Received: by proxy.coop-voz.sk (Postfix, from userid 1050) id B2266B3DC3; Mon, 28 Nov 2005 14:58:26 +0100 (CET) Date: Mon, 28 Nov 2005 14:58:26 +0100 From: Jaroslav Drzik To: freebsd-emulation@freebsd.org Message-ID: <20051128135826.GA1068@linux.coop> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="/04w6evG8XlLl3ft" Content-Disposition: inline User-Agent: Mutt/1.5.8i Subject: [PATCH] linux TCFLSH ioctl X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Nov 2005 13:58:31 -0000 --/04w6evG8XlLl3ft Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi In FreeBSD-6.0-RELEASE is a problem in linux emulation layer with emulation of linux ioctl TCFLSH. In Linux kernel parameter to ioctl is passed as value. In FreeBSD kernel parameter is passed as reference to value. The emulation layer was passing parameter to Freebsd ioctl through value and thus was not working. Attached patch is against 6.0-RELEASE Jaro --/04w6evG8XlLl3ft Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="linux-ioctl.patch" --- compat/linux/linux_ioctl.c.orig Fri Sep 2 05:52:28 2005 +++ compat/linux/linux_ioctl.c Thu Nov 24 20:56:25 2005 @@ -806,22 +806,22 @@ } case LINUX_TCFLSH: { - args->cmd = TIOCFLUSH; + int val; switch (args->arg) { case LINUX_TCIFLUSH: - args->arg = FREAD; + val = FREAD; break; case LINUX_TCOFLUSH: - args->arg = FWRITE; + val = FWRITE; break; case LINUX_TCIOFLUSH: - args->arg = FREAD | FWRITE; + val = FREAD | FWRITE; break; default: fdrop(fp, td); return (EINVAL); } - error = (ioctl(td, (struct ioctl_args *)args)); + error = (fo_ioctl(fp,TIOCFLUSH,(caddr_t)&val,td->td_ucred,td)); break; } --/04w6evG8XlLl3ft-- From owner-freebsd-emulation@FreeBSD.ORG Mon Nov 28 17:04:16 2005 Return-Path: X-Original-To: freebsd-emulation@freebsd.org Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1609416A427; Mon, 28 Nov 2005 17:04:16 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from speedfactory.net (mail6.speedfactory.net [66.23.216.219]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E69F43D79; Mon, 28 Nov 2005 17:04:14 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (unverified [66.23.211.162]) by speedfactory.net (SurgeMail 3.5b3) with ESMTP id 2741931 for multiple; Mon, 28 Nov 2005 12:04:25 -0500 Received: from localhost (john@localhost [127.0.0.1]) by server.baldwin.cx (8.13.1/8.13.1) with ESMTP id jASH3rCN058457; Mon, 28 Nov 2005 12:04:11 -0500 (EST) (envelope-from jhb@freebsd.org) From: John Baldwin To: freebsd-amd64@freebsd.org Date: Mon, 28 Nov 2005 11:48:47 -0500 User-Agent: KMail/1.8.2 References: In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200511281148.49017.jhb@freebsd.org> X-Spam-Status: No, score=-2.8 required=4.2 tests=ALL_TRUSTED autolearn=failed version=3.0.2 X-Spam-Checker-Version: SpamAssassin 3.0.2 (2004-11-16) on server.baldwin.cx X-Server: High Performance Mail Server - http://surgemail.com r=1653887525 Cc: amd64@freebsd.org, java@freebsd.org, freebsd-emulation@freebsd.org Subject: Re: quest for help on a linux emul problem (source unknown) X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Nov 2005 17:04:16 -0000 On Saturday 26 November 2005 08:50 pm, Arno J. Klaassen wrote: > Hello, > > > I try to get a commercial linux32 package to work on amd64; > this package includes it's own binary distrib of some > linux-jdk1.3.1 and works OK on i386 (RELENG_5 and RELENG_6) but > hangs on amd64-RELENG_6 (though it did work on a couple > of months old amd64-RELENG-5, but I do not any longer have such > a box around ... ). > > I write this email in the hope someone can put me on the right > track to nail down this problem : > > when I do a ktrace on i386 I get : > > CALL mincore(0xbfbfc480,0) > RET mincore 0 > CALL #175(0,0,0xbfbfc2b4,0x8) > RET #175 0 > CALL #175(0x1,0xbfbfc3b8,0xbfbfc338,0x8) > RET #175 0 > CALL mincore(0xbfbfc290,0) > RET mincore 0 > CALL getdomainname(0xbfbfc288,0) > RET getdomainname 0 > > then some dozens of : > > CALL #175(0x2,0xbfbfc338,0,0x8) > RET #175 0 > CALL mincore(0xbfbfc480,0) > RET mincore 0 > CALL #175(0,0,0xbfbfc2b4,0x8) > RET #175 0 > CALL #175(0x1,0xbfbfc3b8,0xbfbfc338,0x8) > RET #175 0 > CALL mincore(0xbfbfc290,0) > RET mincore 0 > CALL getdomainname(0xbfbfc288,0) > RET getdomainname 0 > > > and finally : > > CALL #175(0x2,0xbfbfc338,0,0x8) > RET #175 0 > CALL write(0xb,0x83189e8,0x18) > GIO fd 11 wrote 24 bytes FYI, there is a 'linux-kdump' in ports that parses the syscalls from a ktrace on a linux binary. You can use that to make sure your mapping of 175 to sigprocmask() is correct. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-freebsd-emulation@FreeBSD.ORG Mon Nov 28 19:33:22 2005 Return-Path: X-Original-To: freebsd-emulation@hub.freebsd.org Delivered-To: freebsd-emulation@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4BA5D16A41F; Mon, 28 Nov 2005 19:33:22 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id F375A43D5D; Mon, 28 Nov 2005 19:33:20 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id jASJXFKq073232; Mon, 28 Nov 2005 19:33:15 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id jASJXF0i073228; Mon, 28 Nov 2005 19:33:15 GMT (envelope-from edwin) Date: Mon, 28 Nov 2005 19:33:15 GMT From: Edwin Groothuis Message-Id: <200511281933.jASJXF0i073228@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-emulation@FreeBSD.org Cc: Subject: Re: ports/89678: [tiny patch] devel/linux-glib2: fix pkg-plist file X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Nov 2005 19:33:22 -0000 Synopsis: [tiny patch] devel/linux-glib2: fix pkg-plist file Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-emulation Responsible-Changed-By: edwin Responsible-Changed-When: Mon Nov 28 19:33:15 GMT 2005 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=89678 From owner-freebsd-emulation@FreeBSD.ORG Mon Nov 28 19:34:56 2005 Return-Path: X-Original-To: freebsd-emulation@FreeBSD.org Delivered-To: freebsd-emulation@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E6B8716A41F for ; Mon, 28 Nov 2005 19:34:56 +0000 (GMT) (envelope-from bsam@ns.kfs.ru) Received: from ns.kfs.ru (kfs.kfs.ru [62.183.117.194]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9040543D7F for ; Mon, 28 Nov 2005 19:34:54 +0000 (GMT) (envelope-from bsam@ns.kfs.ru) Received: from bsam by ns.kfs.ru with local (Exim 4.54 (FreeBSD)) id 1Egolx-00021s-Ka; Mon, 28 Nov 2005 22:34:45 +0300 To: Kris Kennaway References: <20051128082406.GA14563@xor.obsecurity.org> From: Boris Samorodov Date: Mon, 28 Nov 2005 22:34:45 +0300 In-Reply-To: <20051128082406.GA14563@xor.obsecurity.org> (Kris Kennaway's message of "Mon, 28 Nov 2005 03:24:06 -0500") Message-ID: <85963626@serv3.int.kfs.ru> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: "Boris B. Samorodov" Cc: freebsd-emulation@FreeBSD.org Subject: Re: [ports-i386@pointyhat.freebsd.org: linux-glib2-2.4.8 pkg-plist errors on i386 4] X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Nov 2005 19:34:57 -0000 On Mon, 28 Nov 2005 03:24:06 -0500 Kris Kennaway wrote: > http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/a.4.2005092302/linux-glib2-2.4.8.log > list of extra files and directories in / (not present before this port was installed but present after it was deinstalled) > 181570 16 drwxr-xr-x 3 root wheel 512 Nov 27 06:53 compat/linux/usr/share/locale/bs > 181571 16 drwxr-xr-x 2 root wheel 512 Nov 27 06:53 compat/linux/usr/share/locale/bs/LC_MESSAGES > 181572 32 -rw-r--r-- 1 root wheel 12797 Dec 6 2004 compat/linux/usr/share/locale/bs/LC_MESSAGES/glib20.mo > 181661 16 drwxr-xr-x 3 root wheel 512 Nov 27 06:53 compat/linux/usr/share/locale/sr@ije > 181662 16 drwxr-xr-x 2 root wheel 512 Nov 27 06:53 compat/linux/usr/share/locale/sr@ije/LC_MESSAGES > ================================================================ > build of /usr/ports/devel/linux-glib2 ended at Sun Nov 27 06:53:51 GMT 2005 This should be fixed by: http://www.freebsd.org/cgi/query-pr.cgi?pr=89678 WBR -- Boris B. Samorodov, Research Engineer InPharmTech Co, http://www.ipt.ru Telephone & Internet Service Provider From owner-freebsd-emulation@FreeBSD.ORG Mon Nov 28 19:51:30 2005 Return-Path: X-Original-To: freebsd-emulation@hub.freebsd.org Delivered-To: freebsd-emulation@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ECBE716A41F; Mon, 28 Nov 2005 19:51:30 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E7A343D5C; Mon, 28 Nov 2005 19:51:30 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id jASJpU1a074216; Mon, 28 Nov 2005 19:51:30 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id jASJpU2p074212; Mon, 28 Nov 2005 19:51:30 GMT (envelope-from edwin) Date: Mon, 28 Nov 2005 19:51:30 GMT From: Edwin Groothuis Message-Id: <200511281951.jASJpU2p074212@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-emulation@FreeBSD.org Cc: Subject: Re: ports/89682: [tiny patch] accessibility/linux-atk: fix pkg-plist file X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Nov 2005 19:51:31 -0000 Synopsis: [tiny patch] accessibility/linux-atk: fix pkg-plist file Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-emulation Responsible-Changed-By: edwin Responsible-Changed-When: Mon Nov 28 19:51:29 GMT 2005 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=89682 From owner-freebsd-emulation@FreeBSD.ORG Mon Nov 28 20:00:47 2005 Return-Path: X-Original-To: freebsd-emulation@FreeBSD.org Delivered-To: freebsd-emulation@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2B5BB16A41F for ; Mon, 28 Nov 2005 20:00:47 +0000 (GMT) (envelope-from bsam@ns.kfs.ru) Received: from ns.kfs.ru (kfs.kfs.ru [62.183.117.194]) by mx1.FreeBSD.org (Postfix) with ESMTP id B396443D8A for ; Mon, 28 Nov 2005 20:00:34 +0000 (GMT) (envelope-from bsam@ns.kfs.ru) Received: from bsam by ns.kfs.ru with local (Exim 4.54 (FreeBSD)) id 1EgpAv-0002BV-ER; Mon, 28 Nov 2005 23:00:33 +0300 To: Kris Kennaway References: <20051124214410.GA30527@xor.obsecurity.org> From: Boris Samorodov Date: Mon, 28 Nov 2005 23:00:33 +0300 In-Reply-To: <20051124214410.GA30527@xor.obsecurity.org> (Kris Kennaway's message of "Thu, 24 Nov 2005 16:44:10 -0500") Message-ID: <19882078@serv3.int.kfs.ru> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: "Boris B. Samorodov" Cc: freebsd-emulation@FreeBSD.org Subject: Re: [ports-i386@pointyhat.freebsd.org: linux-atk-1.8.0 pkg-plist errors on i386 4] X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Nov 2005 20:00:47 -0000 On Thu, 24 Nov 2005 16:44:10 -0500 Kris Kennaway wrote: > http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/a.4.2005092302/linux-atk-1.8.0.log > list of extra files and directories in / (not present before this port was installed but present after it was deinstalled) > 11137 16 -rw-r--r-- 1 root wheel 1837 Oct 12 2004 compat/linux/usr/share/locale/bn/LC_MESSAGES/atk10.mo > ================================================================ > build of /usr/ports/accessibility/linux-atk ended at Tue Nov 22 12:55:34 GMT 2005 This should be fixed by: http://www.freebsd.org/cgi/query-pr.cgi?pr=89682 WBR -- Boris B. Samorodov, Research Engineer InPharmTech Co, http://www.ipt.ru Telephone & Internet Service Provider From owner-freebsd-emulation@FreeBSD.ORG Mon Nov 28 20:20:30 2005 Return-Path: X-Original-To: freebsd-emulation@FreeBSD.org Delivered-To: freebsd-emulation@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D5AD916A41F; Mon, 28 Nov 2005 20:20:30 +0000 (GMT) (envelope-from bsam@ns.kfs.ru) Received: from ns.kfs.ru (kfs.kfs.ru [62.183.117.194]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5FD6443D5E; Mon, 28 Nov 2005 20:20:30 +0000 (GMT) (envelope-from bsam@ns.kfs.ru) Received: from bsam by ns.kfs.ru with local (Exim 4.54 (FreeBSD)) id 1EgpUF-0002ID-1s; Mon, 28 Nov 2005 23:20:31 +0300 To: bug-followup@FreeBSD.org,joao_francisco_borges@yahoo.com.br From: Boris Samorodov Date: Mon, 28 Nov 2005 23:20:31 +0300 Message-ID: <53800880@serv3.int.kfs.ru> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: "Boris B. Samorodov" Cc: freebsd-emulation@FreeBSD.org Subject: Re: ports/89647: Broken link X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Nov 2005 20:20:31 -0000 Joao Francisco, seems that your ports are outdated. Current version of x11-toolkits/linux-gtk2 is 2.4.14-4 and is fetchable: ===== /usr/ports/x11-toolkits/linux-gtk2 > make fetch ===> Vulnerability check disabled, database not found => gtk2-2.4.14-4.fc3.i386.rpm doesn't seem to exist in /usr/ports/distfiles/rpm. => Attempting to fetch from ftp://limestone.uoregon.edu/fedora/updates/3/i386/. gtk2-2.4.14-4.fc3.i386.rpm 100% of 4484 kB 266 kBps 00m00s ===== Please, update your ports and try again. PS. You may ask quiestions like this at freebsd-emulation@ and/or freebsd-ports@ MLs before sending a PR. WBR -- Boris B. Samorodov, Research Engineer InPharmTech Co, http://www.ipt.ru Telephone & Internet Service Provider From owner-freebsd-emulation@FreeBSD.ORG Mon Nov 28 20:30:09 2005 Return-Path: X-Original-To: freebsd-emulation@hub.freebsd.org Delivered-To: freebsd-emulation@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5EC8C16A41F for ; Mon, 28 Nov 2005 20:30:09 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 12B1043D64 for ; Mon, 28 Nov 2005 20:30:09 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id jASKU8qt080741 for ; Mon, 28 Nov 2005 20:30:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id jASKU8TX080740; Mon, 28 Nov 2005 20:30:08 GMT (envelope-from gnats) Date: Mon, 28 Nov 2005 20:30:08 GMT Message-Id: <200511282030.jASKU8TX080740@freefall.freebsd.org> To: freebsd-emulation@FreeBSD.org From: Boris Samorodov Cc: Subject: Re: ports/89647: Broken link X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Boris Samorodov List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Nov 2005 20:30:09 -0000 The following reply was made to PR ports/89647; it has been noted by GNATS. From: Boris Samorodov To: bug-followup@FreeBSD.org,joao_francisco_borges@yahoo.com.br Cc: freebsd-emulation@FreeBSD.org Subject: Re: ports/89647: Broken link Date: Mon, 28 Nov 2005 23:20:31 +0300 Joao Francisco, seems that your ports are outdated. Current version of x11-toolkits/linux-gtk2 is 2.4.14-4 and is fetchable: ===== /usr/ports/x11-toolkits/linux-gtk2 > make fetch ===> Vulnerability check disabled, database not found => gtk2-2.4.14-4.fc3.i386.rpm doesn't seem to exist in /usr/ports/distfiles/rpm. => Attempting to fetch from ftp://limestone.uoregon.edu/fedora/updates/3/i386/. gtk2-2.4.14-4.fc3.i386.rpm 100% of 4484 kB 266 kBps 00m00s ===== Please, update your ports and try again. PS. You may ask quiestions like this at freebsd-emulation@ and/or freebsd-ports@ MLs before sending a PR. WBR -- Boris B. Samorodov, Research Engineer InPharmTech Co, http://www.ipt.ru Telephone & Internet Service Provider From owner-freebsd-emulation@FreeBSD.ORG Tue Nov 29 06:56:18 2005 Return-Path: X-Original-To: freebsd-emulation@freebsd.org Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2D0F816A41F for ; Tue, 29 Nov 2005 06:56:18 +0000 (GMT) (envelope-from it-nadeem@moh.gov.om) Received: from moh-mail-srv.moh.gov.om (mail.moh.gov.om [212.72.22.77]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E61343D64 for ; Tue, 29 Nov 2005 06:56:12 +0000 (GMT) (envelope-from it-nadeem@moh.gov.om) Received: from (192.168.2.4) by MOHWEBSHIELD.moh.gov.om via smtp id 2e60_4fe84aa6_60a4_11da_83d8_0030482971de; Tue, 29 Nov 2005 06:49:41 +0000 Received: by moh-mail-srv.moh.gov.om (Postfix, from userid 65534) id 4517C2A8096; Tue, 29 Nov 2005 10:31:08 +0400 (GST) Received: from dgitnadeem (unknown [172.17.17.169]) by moh-mail-srv.moh.gov.om (Postfix) with SMTP id CF4EC2A8095 for ; Tue, 29 Nov 2005 10:31:07 +0400 (GST) Received: from (172.17.17.169) by MOHWEBSHIELD.moh.gov.om via smtp id 2df2_4abfd7e2_60a4_11da_8650_0030482971de; Tue, 29 Nov 2005 06:49:30 +0000 Message-ID: <000a01c5f4b1$da4dfce0$a91111ac@HQ.MOH> From: "nadeem" To: Date: Tue, 29 Nov 2005 10:52:46 +0400 MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on moh-mail-srv.moh.gov.om X-Spam-Level: X-Spam-Status: No, hits=0.7 required=5.0 tests=AWL,HTML_30_40,HTML_MESSAGE autolearn=no version=2.64 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: PHP with Oracle 8i ? X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Nov 2005 06:56:18 -0000 Hi Dear, This is nadeem kazmi. Sorry for distrubing you but i need a help from u. I have to migrate iis to apache webserver under linux 7(Red Hat) with = the migration of database also. Our database is oracle 8i.=20 Actually,I have a experience of IIS only and i m new under linux = platform. So i need ur help if u can regarding the configuration of PHP with = apache connection with oracle. Right now apache is instaaled and webserver is working fine when i m = executing any php file. The problem with me is the interaction of php with oracle and its OCI = setting. Could u plz help me. Thanx & Regards Nadeem Athar Kazmi Software Engineer=20 Directorate General of IT MOH,Muscat, Sultanate of Oman. Phone : 24604770 - 1829(Ext.) GSM : (+968) - 92203494 From owner-freebsd-emulation@FreeBSD.ORG Tue Nov 29 09:51:03 2005 Return-Path: X-Original-To: freebsd-emulation@freebsd.org Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 39C4216A420 for ; Tue, 29 Nov 2005 09:51:03 +0000 (GMT) (envelope-from Alexander@Leidinger.net) Received: from www.ebusiness-leidinger.de (jojo.ms-net.de [84.16.236.246]) by mx1.FreeBSD.org (Postfix) with ESMTP id 545D643D4C for ; Tue, 29 Nov 2005 09:51:01 +0000 (GMT) (envelope-from Alexander@Leidinger.net) Received: from Andro-Beta.Leidinger.net (p54A5F198.dip.t-dialin.net [84.165.241.152]) (authenticated bits=0) by www.ebusiness-leidinger.de (8.13.1/8.13.1) with ESMTP id jAT9Ob0H097996; Tue, 29 Nov 2005 10:24:37 +0100 (CET) (envelope-from Alexander@Leidinger.net) Received: from localhost (localhost [127.0.0.1]) by Andro-Beta.Leidinger.net (8.13.3/8.13.3) with ESMTP id jAT9otWr051444; Tue, 29 Nov 2005 10:50:55 +0100 (CET) (envelope-from Alexander@Leidinger.net) Received: from pslux.cec.eu.int (pslux.cec.eu.int [158.169.9.14]) by webmail.leidinger.net (Horde MIME library) with HTTP; Tue, 29 Nov 2005 10:50:55 +0100 Message-ID: <20051129105055.rukxqmi7j4gccokc@netchild.homeip.net> X-Priority: 3 (Normal) Date: Tue, 29 Nov 2005 10:50:55 +0100 From: Alexander Leidinger To: Boris Samorodov References: <20051128082406.GA14563@xor.obsecurity.org> <85963626@serv3.int.kfs.ru> In-Reply-To: <85963626@serv3.int.kfs.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: 7bit User-Agent: Internet Messaging Program (IMP) H3 (4.0.3) / FreeBSD-4.11 X-Virus-Scanned: by amavisd-new Cc: freebsd-emulation@freebsd.org, Kris Kennaway Subject: Re: [ports-i386@pointyhat.freebsd.org: linux-glib2-2.4.8 pkg-plist errors on i386 4] X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Nov 2005 09:51:03 -0000 Boris Samorodov wrote: > This should be fixed by: > http://www.freebsd.org/cgi/query-pr.cgi?pr=89678 Yes, and I have the same fix and a fix for atk already in my tree since ... Saturday evening I think. But I hadn't time to commit it yet. Maybe today in the evening. Bye, Alexander. P.S. FYI: the patch is missing a portrevision bump. -- http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID = B0063FE7 http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID = 72077137 Old soldiers never die. Young ones do. From owner-freebsd-emulation@FreeBSD.ORG Tue Nov 29 10:17:12 2005 Return-Path: X-Original-To: freebsd-emulation@FreeBSD.org Delivered-To: freebsd-emulation@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6DCDA16A420 for ; Tue, 29 Nov 2005 10:17:12 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from host-212-68-244-220.brutele.be (host-212-68-244-220.brutele.be [212.68.244.220]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7BAA743D5C for ; Tue, 29 Nov 2005 10:17:08 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from jsite.lefort.net (jsite.lefort.net [192.168.1.2]) by gateway.lefort.net (Postfix) with ESMTP id E115A550B for ; Tue, 29 Nov 2005 11:17:06 +0100 (CET) Received: from jsite.lefort.net (localhost [127.0.0.1]) by jsite.lefort.net (Postfix) with SMTP id 85CEBC108 for ; Tue, 29 Nov 2005 11:17:06 +0100 (CET) Date: Tue, 29 Nov 2005 11:17:06 +0100 From: Jean-Yves Lefort To: freebsd-emulation@FreeBSD.org Message-Id: <20051129111706.18638aa4.jylefort@FreeBSD.org> X-Mailer: Sylpheed running on FreeBSD Mime-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg="PGP-SHA1"; boundary="Signature=_Tue__29_Nov_2005_11_17_06_+0100_sP/k3WozEhySqw4c" Cc: Subject: linux ports on amd64 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Nov 2005 10:17:12 -0000 --Signature=_Tue__29_Nov_2005_11_17_06_+0100_sP/k3WozEhySqw4c Content-Type: text/plain; charset=US-ASCII Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi, Shouldn't amd64 be added to the ONLY_FOR_ARCHS variable of all the linux ports which ship i386 executables? --=20 Jean-Yves Lefort jylefort@FreeBSD.org http://lefort.be.eu.org/ --Signature=_Tue__29_Nov_2005_11_17_06_+0100_sP/k3WozEhySqw4c Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDjCqiyzD7UaO4AGoRAivjAJ0cWRrhD1y6Taj+ir79p4/tmRcjGgCdFbKc ti22wJAAyy7BmhspOy0uOms= =BeGk -----END PGP SIGNATURE----- --Signature=_Tue__29_Nov_2005_11_17_06_+0100_sP/k3WozEhySqw4c-- From owner-freebsd-emulation@FreeBSD.ORG Tue Nov 29 12:51:57 2005 Return-Path: X-Original-To: freebsd-emulation@freebsd.org Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 06BF316A5A3 for ; Tue, 29 Nov 2005 12:51:46 +0000 (GMT) (envelope-from bsam@ns.kfs.ru) Received: from ns.kfs.ru (kfs.kfs.ru [62.183.117.194]) by mx1.FreeBSD.org (Postfix) with ESMTP id 61A764403E for ; Tue, 29 Nov 2005 12:22:59 +0000 (GMT) (envelope-from bsam@ns.kfs.ru) Received: from bsam by ns.kfs.ru with local (Exim 4.54 (FreeBSD)) id 1Eh4VT-0009gx-98; Tue, 29 Nov 2005 15:22:47 +0300 To: Alexander Leidinger References: <20051128082406.GA14563@xor.obsecurity.org> <85963626@serv3.int.kfs.ru> <20051129105055.rukxqmi7j4gccokc@netchild.homeip.net> From: Boris Samorodov Date: Tue, 29 Nov 2005 15:22:47 +0300 In-Reply-To: <20051129105055.rukxqmi7j4gccokc@netchild.homeip.net> (Alexander Leidinger's message of "Tue, 29 Nov 2005 10:50:55 +0100") Message-ID: <60999752@serv3.int.kfs.ru> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: "Boris B. Samorodov" Cc: freebsd-emulation@freebsd.org Subject: Re: [ports-i386@pointyhat.freebsd.org: linux-glib2-2.4.8 pkg-plist errors on i386 4] X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Nov 2005 12:51:58 -0000 On Tue, 29 Nov 2005 10:50:55 +0100 Alexander Leidinger wrote: > Boris Samorodov wrote: > > This should be fixed by: > > http://www.freebsd.org/cgi/query-pr.cgi?pr=89678 > Yes, and I have the same fix and a fix for atk already in my tree since ... > Saturday evening I think. But I hadn't time to commit it yet. Maybe today in > the evening. OK. > P.S. FYI: the patch is missing a portrevision bump. At one of my previous PRs with small patches I wrote that I'm not sure if a portrevision should be bumpted. You didn't comment on it. Bit now I know. Thanks. WBR -- Boris B. Samorodov, Research Engineer InPharmTech Co, http://www.ipt.ru Telephone & Internet Service Provider From owner-freebsd-emulation@FreeBSD.ORG Tue Nov 29 14:30:06 2005 Return-Path: X-Original-To: freebsd-emulation@hub.freebsd.org Delivered-To: freebsd-emulation@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7DAA916A422; Tue, 29 Nov 2005 14:30:06 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D4E9043D76; Tue, 29 Nov 2005 14:30:01 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (flz@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id jATETxwl045020; Tue, 29 Nov 2005 14:29:59 GMT (envelope-from flz@freefall.freebsd.org) Received: (from flz@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id jATETwjO045016; Tue, 29 Nov 2005 14:29:58 GMT (envelope-from flz) Date: Tue, 29 Nov 2005 14:29:58 GMT From: Florent Thoumie Message-Id: <200511291429.jATETwjO045016@freefall.freebsd.org> To: bsam@ipt.ru, flz@FreeBSD.org, freebsd-emulation@FreeBSD.org Cc: Subject: Re: ports/89682: [tiny patch] accessibility/linux-atk: fix pkg-plist file X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Nov 2005 14:30:06 -0000 Synopsis: [tiny patch] accessibility/linux-atk: fix pkg-plist file State-Changed-From-To: open->closed State-Changed-By: flz State-Changed-When: Tue Nov 29 14:29:58 GMT 2005 State-Changed-Why: Committed. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=89682 From owner-freebsd-emulation@FreeBSD.ORG Tue Nov 29 14:30:30 2005 Return-Path: X-Original-To: freebsd-emulation@hub.freebsd.org Delivered-To: freebsd-emulation@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 213A816A420; Tue, 29 Nov 2005 14:30:30 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7386143D60; Tue, 29 Nov 2005 14:30:26 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (flz@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id jATEUPLv046246; Tue, 29 Nov 2005 14:30:25 GMT (envelope-from flz@freefall.freebsd.org) Received: (from flz@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id jATEUP61046242; Tue, 29 Nov 2005 14:30:25 GMT (envelope-from flz) Date: Tue, 29 Nov 2005 14:30:25 GMT From: Florent Thoumie Message-Id: <200511291430.jATEUP61046242@freefall.freebsd.org> To: bsam@ipt.ru, flz@FreeBSD.org, freebsd-emulation@FreeBSD.org Cc: Subject: Re: ports/89678: [tiny patch] devel/linux-glib2: fix pkg-plist file X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Nov 2005 14:30:30 -0000 Synopsis: [tiny patch] devel/linux-glib2: fix pkg-plist file State-Changed-From-To: open->closed State-Changed-By: flz State-Changed-When: Tue Nov 29 14:30:25 GMT 2005 State-Changed-Why: Committed. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=89678 From owner-freebsd-emulation@FreeBSD.ORG Tue Nov 29 14:32:03 2005 Return-Path: X-Original-To: freebsd-emulation@hub.freebsd.org Delivered-To: freebsd-emulation@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 192E916A420; Tue, 29 Nov 2005 14:32:03 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B5AD43D72; Tue, 29 Nov 2005 14:31:45 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (flz@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id jATEVfBo046569; Tue, 29 Nov 2005 14:31:41 GMT (envelope-from flz@freefall.freebsd.org) Received: (from flz@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id jATEVfpK046565; Tue, 29 Nov 2005 14:31:41 GMT (envelope-from flz) Date: Tue, 29 Nov 2005 14:31:41 GMT From: Florent Thoumie Message-Id: <200511291431.jATEVfpK046565@freefall.freebsd.org> To: joao_francisco_borges@yahoo.com.br, flz@FreeBSD.org, freebsd-emulation@FreeBSD.org Cc: Subject: Re: ports/89647: Broken link X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Nov 2005 14:32:03 -0000 Synopsis: Broken link State-Changed-From-To: open->closed State-Changed-By: flz State-Changed-When: Tue Nov 29 14:31:27 GMT 2005 State-Changed-Why: Submitter had an old ports tree. http://www.freebsd.org/cgi/query-pr.cgi?pr=89647 From owner-freebsd-emulation@FreeBSD.ORG Tue Nov 29 14:50:24 2005 Return-Path: X-Original-To: freebsd-emulation@freebsd.org Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E4E9716A420 for ; Tue, 29 Nov 2005 14:50:24 +0000 (GMT) (envelope-from shildret@scotth.emsphone.com) Received: from scotth.emsphone.com (scotth.emsphone.com [199.67.51.179]) by mx1.FreeBSD.org (Postfix) with ESMTP id 380CA43D46 for ; Tue, 29 Nov 2005 14:50:18 +0000 (GMT) (envelope-from shildret@scotth.emsphone.com) Received: from scotth.emsphone.com (localhost [127.0.0.1]) by scotth.emsphone.com (8.13.3/8.13.3) with ESMTP id jATEoDuw079053; Tue, 29 Nov 2005 08:50:13 -0600 (CST) (envelope-from shildret@scotth.emsphone.com) Received: (from shildret@localhost) by scotth.emsphone.com (8.13.3/8.13.3/Submit) id jATEoCNe079052; Tue, 29 Nov 2005 08:50:12 -0600 (CST) (envelope-from shildret@scotth.emsphone.com) From: "Scott T. Hildreth" To: nadeem In-Reply-To: <000a01c5f4b1$da4dfce0$a91111ac@HQ.MOH> References: <000a01c5f4b1$da4dfce0$a91111ac@HQ.MOH> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Tue, 29 Nov 2005 08:50:12 -0600 Message-Id: <1133275812.24249.202.camel@scotth.emsphone.com> Mime-Version: 1.0 X-Mailer: Evolution 2.2.2 FreeBSD GNOME Team Port Cc: freebsd-emulation@freebsd.org Subject: Re: PHP with Oracle 8i ? X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: shildreth@allantgroup.com List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Nov 2005 14:50:25 -0000 On Tue, 2005-11-29 at 10:52 +0400, nadeem wrote: > Hi Dear, > This is nadeem kazmi. Sorry for distrubing you but i need a help from u. > I have to migrate iis to apache webserver under linux 7(Red Hat) with the migration of database also. > Our database is oracle 8i. > Actually,I have a experience of IIS only and i m new under linux platform. > So i need ur help if u can regarding the configuration of PHP with apache connection with oracle. > Right now apache is instaaled and webserver is working fine when i m executing any php file. > The problem with me is the interaction of php with oracle and its OCI setting. This is not a Linux list or a PHP list. You need to post this to a PHP list. > > Could u plz help me. > > > Thanx & Regards > > Nadeem Athar Kazmi > Software Engineer > Directorate General of IT > MOH,Muscat, Sultanate of Oman. > Phone : 24604770 - 1829(Ext.) > GSM : (+968) - 92203494 > > _______________________________________________ > freebsd-emulation@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-emulation > To unsubscribe, send any mail to "freebsd-emulation-unsubscribe@freebsd.org" > -- Scott T. Hildreth From owner-freebsd-emulation@FreeBSD.ORG Tue Nov 29 15:23:03 2005 Return-Path: X-Original-To: freebsd-emulation@freebsd.org Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 05D5216A422 for ; Tue, 29 Nov 2005 15:23:03 +0000 (GMT) (envelope-from Alexander@Leidinger.net) Received: from www.ebusiness-leidinger.de (jojo.ms-net.de [84.16.236.246]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2BD8943D6B for ; Tue, 29 Nov 2005 15:22:57 +0000 (GMT) (envelope-from Alexander@Leidinger.net) Received: from Andro-Beta.Leidinger.net (p54A5F198.dip.t-dialin.net [84.165.241.152]) (authenticated bits=0) by www.ebusiness-leidinger.de (8.13.1/8.13.1) with ESMTP id jATEuVBe000319; Tue, 29 Nov 2005 15:56:32 +0100 (CET) (envelope-from Alexander@Leidinger.net) Received: from localhost (localhost [127.0.0.1]) by Andro-Beta.Leidinger.net (8.13.3/8.13.3) with ESMTP id jATFMqqX013241; Tue, 29 Nov 2005 16:22:52 +0100 (CET) (envelope-from Alexander@Leidinger.net) Received: from pslux.cec.eu.int (pslux.cec.eu.int [158.169.9.14]) by webmail.leidinger.net (Horde MIME library) with HTTP; Tue, 29 Nov 2005 16:22:52 +0100 Message-ID: <20051129162252.7wlqb6ly8g4wgko8@netchild.homeip.net> X-Priority: 3 (Normal) Date: Tue, 29 Nov 2005 16:22:52 +0100 From: Alexander Leidinger To: Boris Samorodov References: <20051128082406.GA14563@xor.obsecurity.org> <85963626@serv3.int.kfs.ru> <20051129105055.rukxqmi7j4gccokc@netchild.homeip.net> <60999752@serv3.int.kfs.ru> In-Reply-To: <60999752@serv3.int.kfs.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: 7bit User-Agent: Internet Messaging Program (IMP) H3 (4.0.3) / FreeBSD-4.11 X-Virus-Scanned: by amavisd-new Cc: freebsd-emulation@freebsd.org Subject: Re: [ports-i386@pointyhat.freebsd.org: linux-glib2-2.4.8 pkg-plist errors on i386 4] X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Nov 2005 15:23:03 -0000 Boris Samorodov wrote: >> P.S. FYI: the patch is missing a portrevision bump. > > At one of my previous PRs with small patches I wrote that I'm not sure > if a portrevision should be bumpted. You didn't comment on it. Bit now > I know. Thanks. Oh, sorry. The rule is: if the package changes (which is the case with a plist change), we have to bump the version number (since the original software doesn't change, but the port changes, we have to bump PORTREVISION). Bye, Alexander. -- http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID = B0063FE7 http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID = 72077137 A truly great man will neither trample on a worm nor sneak to an emperor. -- B. Franklin From owner-freebsd-emulation@FreeBSD.ORG Tue Nov 29 15:44:41 2005 Return-Path: X-Original-To: freebsd-emulation@hub.freebsd.org Delivered-To: freebsd-emulation@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0DDAB16A423; Tue, 29 Nov 2005 15:44:40 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 21FFA43E07; Tue, 29 Nov 2005 15:43:58 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (flz@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id jATFhrNW055580; Tue, 29 Nov 2005 15:43:53 GMT (envelope-from flz@freefall.freebsd.org) Received: (from flz@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id jATFhrrC055576; Tue, 29 Nov 2005 15:43:53 GMT (envelope-from flz) Date: Tue, 29 Nov 2005 15:43:53 GMT From: Florent Thoumie Message-Id: <200511291543.jATFhrrC055576@freefall.freebsd.org> To: numisemis@yahoo.com, flz@FreeBSD.org, freebsd-emulation@FreeBSD.org Cc: Subject: Re: ports/87546: [patch] emulators/rtc: broken if sizeof(int)!=sizeof(long) X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Nov 2005 15:44:41 -0000 Synopsis: [patch] emulators/rtc: broken if sizeof(int)!=sizeof(long) State-Changed-From-To: open->closed State-Changed-By: flz State-Changed-When: Tue Nov 29 15:43:53 GMT 2005 State-Changed-Why: Committed. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=87546 From owner-freebsd-emulation@FreeBSD.ORG Wed Nov 30 15:42:41 2005 Return-Path: X-Original-To: freebsd-emulation@hub.freebsd.org Delivered-To: freebsd-emulation@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9A71516A423; Wed, 30 Nov 2005 15:42:41 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 41DD243D5C; Wed, 30 Nov 2005 15:42:41 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from freefall.freebsd.org (flz@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id jAUFgfZX005838; Wed, 30 Nov 2005 15:42:41 GMT (envelope-from flz@freefall.freebsd.org) Received: (from flz@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id jAUFgfGt005834; Wed, 30 Nov 2005 15:42:41 GMT (envelope-from flz) Date: Wed, 30 Nov 2005 15:42:41 GMT From: Florent Thoumie Message-Id: <200511301542.jAUFgfGt005834@freefall.freebsd.org> To: numisemis@yahoo.com, flz@FreeBSD.org, freebsd-emulation@FreeBSD.org Cc: Subject: Re: ports/87745: [patch] x11-toolkits/linux-openmotif: add support from amd64 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Nov 2005 15:42:41 -0000 Synopsis: [patch] x11-toolkits/linux-openmotif: add support from amd64 State-Changed-From-To: open->closed State-Changed-By: flz State-Changed-When: Wed Nov 30 15:42:40 GMT 2005 State-Changed-Why: Committed. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=87745 From owner-freebsd-emulation@FreeBSD.ORG Wed Nov 30 20:17:46 2005 Return-Path: X-Original-To: freebsd-emulation@FreeBSD.org Delivered-To: freebsd-emulation@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1D1D816A422; Wed, 30 Nov 2005 20:17:46 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1EC0043D58; Wed, 30 Nov 2005 20:17:41 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id 4AEFC1A3C25; Wed, 30 Nov 2005 12:17:40 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id B46FB51314; Wed, 30 Nov 2005 15:17:39 -0500 (EST) Date: Wed, 30 Nov 2005 15:17:39 -0500 From: Kris Kennaway To: Jean-Yves Lefort Message-ID: <20051130201739.GA77059@xor.obsecurity.org> References: <20051129111706.18638aa4.jylefort@FreeBSD.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="pf9I7BMVVzbSWLtt" Content-Disposition: inline In-Reply-To: <20051129111706.18638aa4.jylefort@FreeBSD.org> User-Agent: Mutt/1.4.2.1i Cc: freebsd-emulation@FreeBSD.org Subject: Re: linux ports on amd64 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Nov 2005 20:17:46 -0000 --pf9I7BMVVzbSWLtt Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Nov 29, 2005 at 11:17:06AM +0100, Jean-Yves Lefort wrote: > Hi, >=20 > Shouldn't amd64 be added to the ONLY_FOR_ARCHS variable of all the > linux ports which ship i386 executables? Ideally you should test them, because the i386 emulation may not yet allow them to work. Kris --pf9I7BMVVzbSWLtt Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDjgjjWry0BWjoQKURApH6AKDgAe/eyDUcFciTQuNZklPWVFScJQCfaaaY REMnCFRsmSyvwO5wqmh4vbE= =aU9Z -----END PGP SIGNATURE----- --pf9I7BMVVzbSWLtt-- From owner-freebsd-emulation@FreeBSD.ORG Thu Dec 1 01:28:46 2005 Return-Path: X-Original-To: freebsd-emulation@freebsd.org Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9C7E216A41F; Thu, 1 Dec 2005 01:28:46 +0000 (GMT) (envelope-from mv@roq.com) Received: from vault.mel.jumbuck.com (ppp166-27.static.internode.on.net [150.101.166.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id 10A9E43D46; Thu, 1 Dec 2005 01:28:45 +0000 (GMT) (envelope-from mv@roq.com) Received: from vault.mel.jumbuck.com (localhost [127.0.0.1]) by vault.mel.jumbuck.com (Postfix) with ESMTP id 469F18A00D; Thu, 1 Dec 2005 12:28:31 +1100 (EST) Received: from [192.168.46.52] (unknown [192.168.46.250]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by vault.mel.jumbuck.com (Postfix) with ESMTP id 2A1178A00A; Thu, 1 Dec 2005 12:28:31 +1100 (EST) Message-ID: <438E51CC.1090807@roq.com> Date: Thu, 01 Dec 2005 12:28:44 +1100 From: Michael Vince User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.7.12) Gecko/20051127 X-Accept-Language: en-us, en MIME-Version: 1.0 To: "Arno J. Klaassen" References: In-Reply-To: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP Cc: amd64@freebsd.org, java@freebsd.org, freebsd-emulation@freebsd.org Subject: Re: quest for help on a linux emul problem (source unknown) X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Dec 2005 01:28:47 -0000 Which linux port are you using? I have had beta versions of OpenOffice2 for linux lock up my FreeBSD amd64 desktop, but once I started using OO2 release for linux the lockups went away. I also started using the Suse port. /usr/ports/emulators/linux_base-suse-9.2/ OVERRIDE_LINUX_BASE_PORT=suse-9.2 in make.conf Arno J. Klaassen wrote: >Hello, > > >I try to get a commercial linux32 package to work on amd64; >this package includes it's own binary distrib of some >linux-jdk1.3.1 and works OK on i386 (RELENG_5 and RELENG_6) but >hangs on amd64-RELENG_6 (though it did work on a couple >of months old amd64-RELENG-5, but I do not any longer have such >a box around ... ). > >I write this email in the hope someone can put me on the right >track to nail down this problem : > >when I do a ktrace on i386 I get : > > CALL mincore(0xbfbfc480,0) > RET mincore 0 > CALL #175(0,0,0xbfbfc2b4,0x8) > RET #175 0 > CALL #175(0x1,0xbfbfc3b8,0xbfbfc338,0x8) > RET #175 0 > CALL mincore(0xbfbfc290,0) > RET mincore 0 > CALL getdomainname(0xbfbfc288,0) > RET getdomainname 0 > >then some dozens of : > > CALL #175(0x2,0xbfbfc338,0,0x8) > RET #175 0 > CALL mincore(0xbfbfc480,0) > RET mincore 0 > CALL #175(0,0,0xbfbfc2b4,0x8) > RET #175 0 > CALL #175(0x1,0xbfbfc3b8,0xbfbfc338,0x8) > RET #175 0 > CALL mincore(0xbfbfc290,0) > RET mincore 0 > CALL getdomainname(0xbfbfc288,0) > RET getdomainname 0 > > >and finally : > > CALL #175(0x2,0xbfbfc338,0,0x8) > RET #175 0 > CALL write(0xb,0x83189e8,0x18) > GIO fd 11 wrote 24 bytes > > >On amd64-RELENG_6 it eternally loops in phase2 and never >reaches the 'finally'. > >Iff I understand correctly (far from sure!) and correct >for different syscall-numbers, I get : > >ask-for-initing-something { > gettimeofday() > sigprocmask(SIG_BLOCK,..) > sigprocmask(SIG_UNBLOCK,..) > gettimeofday() > nanosleep() >} > >while-not-OK { > sigprocmask(SIG_SETMASK,..) > gettimeofday() > sigprocmask(SIG_BLOCK,..) > sigprocmask(SIG_UNBLOCK,..) > gettimeofday() > nanosleep() >} > >OK! { > sigprocmask(SIG_SETMASK,..) > continue() >} > > >Since the program works OK in terminal mode, the problem >very probably is in the jdk-execution. I re-downloaded the >jdk13 sources and found that only at two places sigprocmask() is >called with SIG_UNBLOCK as argument, and one of them only >seems to serve the purpose of a work-around : > > * a workaround for the preemptive-close > * problem on Linux (bug #4344135); A thread currently waiting in > * a I/O operation will not wake up if one the file involved > * is actually closed (last close - the file is no longer accessible, > * but the thread is still waiting in the kernel). > >NB, this is a linux-jdk-1.3.0 problem, solved in linux-jdk-1.3.1, >so "an sich" not involved in my problem, but the idea of a thread >not waking up or signal not getting correctly delivered seems >plausible to my simple end-user mind. > >once again, if this kind of pseudo-code sounds familiar to someone, please >give me some hints which way to go to write a simple test-program >to pinpoint the problem. >Thank you very much for your time anyway. > >Regards, Arno > > > > From owner-freebsd-emulation@FreeBSD.ORG Thu Dec 1 06:35:28 2005 Return-Path: X-Original-To: freebsd-emulation@freebsd.org Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9F90016A41F for ; Thu, 1 Dec 2005 06:35:28 +0000 (GMT) (envelope-from k-narita@ab.jp.nec.com) Received: from tyo202.gate.nec.co.jp (TYO202.gate.nec.co.jp [210.143.35.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id 097B343D4C for ; Thu, 1 Dec 2005 06:35:27 +0000 (GMT) (envelope-from k-narita@ab.jp.nec.com) Received: from mailgate3.nec.co.jp (mailgate53.nec.co.jp [10.7.69.192]) by tyo202.gate.nec.co.jp (8.11.7/3.7W01080315) with ESMTP id jB16ZQb21987 for ; Thu, 1 Dec 2005 15:35:26 +0900 (JST) Received: (from root@localhost) by mailgate3.nec.co.jp (8.11.7/3.7W-MAILGATE-NEC) id jB16ZQZ20508 for freebsd-emulation@freebsd.org; Thu, 1 Dec 2005 15:35:26 +0900 (JST) Received: from komachi.jp.nec.com (komachi.jp.nec.com [10.26.220.10]) by mailsv.nec.co.jp (8.11.7/3.7W-MAILSV-NEC) with ESMTP id jB16ZQV19844 for ; Thu, 1 Dec 2005 15:35:26 +0900 (JST) Received: from narit ([10.56.170.179] [10.56.170.179]) by mail.jp.nec.com with ESMTP; Thu, 1 Dec 2005 15:35:26 +0900 To: freebsd-emulation@freebsd.org Message-Id: <20051201153355k-narita@mail.jp.nec.com> X-Mailer: WeMail32[2.51] ID:1A6358 From: Narit Date: Thu, 1 Dec 2005 15:33:55 +0900 Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: Maple10 on FreeBSD 5.x(6.0) X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Dec 2005 06:35:28 -0000 Hi, When I tried to run a latest linux software -Maple10- on FreeBSD 5.x(6.0), the following error massage was displayed and it does not work. linux: pid 91881 (mserver): syscall rt_sigpending not implemented It seems to me that the kernel should be changed, but I am not expert. Any comments or advice would be appreciated. Maple is a famous commercial mathematics program and its install method is described even in the FreeBSD Handbook. The previous version of Maple9.5 runs on FreeBSD 5.x(6.0) in linux emulation mode without any problems. Narit From owner-freebsd-emulation@FreeBSD.ORG Thu Dec 1 14:20:45 2005 Return-Path: X-Original-To: emulation@freebsd.org Delivered-To: freebsd-emulation@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D116616A41F; Thu, 1 Dec 2005 14:20:45 +0000 (GMT) (envelope-from Alexander@Leidinger.net) Received: from www.ebusiness-leidinger.de (jojo.ms-net.de [84.16.236.246]) by mx1.FreeBSD.org (Postfix) with ESMTP id 974E043D81; Thu, 1 Dec 2005 14:20:37 +0000 (GMT) (envelope-from Alexander@Leidinger.net) Received: from Andro-Beta.Leidinger.net (p54A5F67A.dip.t-dialin.net [84.165.246.122]) (authenticated bits=0) by www.ebusiness-leidinger.de (8.13.1/8.13.1) with ESMTP id jB1Drhtu023225; Thu, 1 Dec 2005 14:53:49 +0100 (CET) (envelope-from Alexander@Leidinger.net) Received: from localhost (localhost [127.0.0.1]) by Andro-Beta.Leidinger.net (8.13.3/8.13.3) with ESMTP id jB1EKQ4H033888; Thu, 1 Dec 2005 15:20:26 +0100 (CET) (envelope-from Alexander@Leidinger.net) Received: from pslux.cec.eu.int (pslux.cec.eu.int [158.169.9.14]) by webmail.leidinger.net (Horde MIME library) with HTTP; Thu, 01 Dec 2005 15:20:26 +0100 Message-ID: <20051201152026.lxwvpjokc0sw0okc@netchild.homeip.net> X-Priority: 3 (Normal) Date: Thu, 01 Dec 2005 15:20:26 +0100 From: Alexander Leidinger To: Jean-Yves Lefort References: <200511261918.jAQJIp91001719@repoman.freebsd.org> In-Reply-To: <200511261918.jAQJIp91001719@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: 7bit User-Agent: Internet Messaging Program (IMP) H3 (4.0.3) / FreeBSD-4.11 X-Virus-Scanned: by amavisd-new Cc: emulation@freebsd.org Subject: Re: cvs commit: ports/audio/linux-openal bsd.linux.mk X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Dec 2005 14:20:46 -0000 Jean-Yves Lefort wrote: [moving to emulation@] I have a backlog of cvs-all mails... I'm slowly catching up and noticed this one without further looking if someone wrote some comments (but I looked at rev 1.2 of the file). > jylefort 2005-11-26 19:18:51 UTC > > FreeBSD ports repository > > Added files: > audio/linux-openal bsd.linux.mk > Log: > Add my RPM support infrastructure. ^^ Isn't this a little bit selfish? ;-) Ok, more serious comments (*constructive* critic): - that's the wrong name for this file, bsd.rpm.mk or bsd.linuxrpm.mk would be better, since it does not contain all linux related mk-fu - install-time generated plists are evil (as per discussion on ports@ a while ago (and as of very recent experience with the linux ports), so the pre-install target should be removed and a real plist should be generated), have a look at the linux-gtk Makefile for a target which generates an initial plist (needs to be modified a little bit afterwards) - it should be installed into PORTSDIR/Mk, so that other port can use it - does the ppc have a linuxolator? - why do you use different ways of specifying the paths in DESCR and MD5_FILE? - why do you specify DESCR at all? - INSTALLS_LINUX_SHLIB should be removed, fix the FreeBSD one instead to not do anything in the USE_LINUX case and reuse the name of the FreeBSD one (-> more consistent and easy description on the porters handbook) In general it's nice to see someone working on this. And I like the idea to use rpm2cpio instead of rpm. We could get rid of the rpm-db in the linux base ports this way (this removes some of those annoying warnings on pkg_deinstall). Bye, Alexander. -- http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID = B0063FE7 http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID = 72077137 Insanity is the final defense. It's hard to get a refund when the salesman is sniffing your crotch and baying at the moon. From owner-freebsd-emulation@FreeBSD.ORG Thu Dec 1 21:31:23 2005 Return-Path: X-Original-To: freebsd-emulation@freebsd.org Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AA24116A41F for ; Thu, 1 Dec 2005 21:31:23 +0000 (GMT) (envelope-from q@galgenberg.net) Received: from wrzx28.rz.uni-wuerzburg.de (wrzx28.rz.uni-wuerzburg.de [132.187.3.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB55643D5A for ; Thu, 1 Dec 2005 21:31:21 +0000 (GMT) (envelope-from q@galgenberg.net) Received: from wrzx30.rz.uni-wuerzburg.de (wrzx30.rz.uni-wuerzburg.de [132.187.1.30]) by wrzx28.rz.uni-wuerzburg.de (Postfix) with ESMTP id D11FB13F9DD; Thu, 1 Dec 2005 22:31:19 +0100 (CET) Received: from virusscan (localhost [127.0.0.1]) by wrzx30.rz.uni-wuerzburg.de (Postfix) with ESMTP id B80399F4E5; Thu, 1 Dec 2005 22:31:19 +0100 (CET) Received: from wrzx28.rz.uni-wuerzburg.de (wrzx28.rz.uni-wuerzburg.de [132.187.3.28]) by wrzx30.rz.uni-wuerzburg.de (Postfix) with ESMTP id 8E63A863AA; Thu, 1 Dec 2005 22:31:19 +0100 (CET) Received: from frodo.galgenberg.net (wwsx14.win-screen.uni-wuerzburg.de [132.187.253.14]) by wrzx28.rz.uni-wuerzburg.de (Postfix) with ESMTP id 4668513F9DD; Thu, 1 Dec 2005 22:31:19 +0100 (CET) Received: from coyote.q.local (gb-21-237.galgenberg.net [172.16.21.237]) by frodo.galgenberg.net (8.13.1/8.13.1) with ESMTP id jB1LVIEX099433; Thu, 1 Dec 2005 22:31:19 +0100 (CET) (envelope-from q@galgenberg.net) Received: from roadrunner.q.local (roadrunner.q.local [192.168.0.148]) by coyote.q.local (8.13.4/8.13.4) with ESMTP id jB1LVI7x029594; Thu, 1 Dec 2005 22:31:18 +0100 (CET) (envelope-from q@galgenberg.net) Received: from roadrunner.q.local (localhost [127.0.0.1]) by roadrunner.q.local (8.13.4/8.13.4) with ESMTP id jB1LVIaD084462; Thu, 1 Dec 2005 22:31:18 +0100 (CET) (envelope-from q@galgenberg.net) Received: (from q@localhost) by roadrunner.q.local (8.13.4/8.13.4/Submit) id jB1LVHeY084461; Thu, 1 Dec 2005 22:31:17 +0100 (CET) (envelope-from q@galgenberg.net) Date: Thu, 1 Dec 2005 22:31:17 +0100 From: Ulrich Spoerlein To: Alexander Leidinger Message-ID: <20051201213117.GC1083@galgenberg.net> Mail-Followup-To: Alexander Leidinger , freebsd-emulation@freebsd.org References: <17284.32307.784247.207350@jerusalem.litteratus.org> <20051124105440.cqdu7ydpc084kgsc@netchild.homeip.net> <20051124125951.GD1054@galgenberg.net> <20051124180627.665225aa@Magellan.Leidinger.net> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="4f28nU6agdXSinmL" Content-Disposition: inline In-Reply-To: <20051124180627.665225aa@Magellan.Leidinger.net> X-Virus-Scanned: by amavisd-new (Rechenzentrum Universitaet Wuerzburg) Cc: freebsd-emulation@freebsd.org Subject: Patch for emulators/linux_base-8 (was Re: warning) X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Dec 2005 21:31:23 -0000 --4f28nU6agdXSinmL Content-Type: multipart/mixed; boundary="UnaWdueM1EBWVRzC" Content-Disposition: inline --UnaWdueM1EBWVRzC Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Alexander Leidinger wrote: > > The fix is, to tell /compat/linux/etc/nsswitch.conf to look at NIS too. >=20 > Besides the fact that I don't use NIS and that UID 0 is in my passwd > file: feel free to send a patch which takes /etc/nsswitch.conf and > generates an appropriate /compat/linux one. I don't know enough about nsswitch to take all side effects into account, therefore I settled for the cheap solution ... > > It's a minor inconvenience, that nsswitch.conf gets clobbered every time > > linux_base is reinstalled (and thereby breaking acroread7 for me). > Bug noted... but feel free to send a PR and/or patches which fixes this. I just knew you would answer like that :) Today I felt like fixing this, and this is the patch I came up with. Now that the second most annoying bug in Ports is fixed, I can take a stab at fixing *the* most annoying bug. Ulrich Spoerlein --=20 PGP Key ID: F0DB9F44 Encrypted mail welcome! Fingerprint: F1CE D062 0CA9 ADE3 349B 2FE8 980A C6B5 F0DB 9F44 Ok, which part of "Ph'nglui mglw'nafh Cthulhu R'lyeh wgah'nagl fhtagn." didn't you understand? --UnaWdueM1EBWVRzC Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="linux_base-8.patch" Content-Transfer-Encoding: quoted-printable Index: Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/emulators/linux_base-8/Makefile,v retrieving revision 1.110 diff -u -p -r1.110 Makefile --- Makefile 11 Nov 2005 19:54:16 -0000 1.110 +++ Makefile 1 Dec 2005 21:27:26 -0000 @@ -8,7 +8,7 @@ =20 PORTNAME=3D linux_base-8 PORTVERSION=3D 8.0 -PORTREVISION=3D 9 +PORTREVISION=3D 10 CATEGORIES=3D emulators linux MASTER_SITES=3D ${MASTER_SITE_REDHAT_LINUX} \ ${MASTER_SITE_REDHAT_LINUX:S/$/:new/} \ @@ -92,6 +92,9 @@ FALLBACK_ELF_MIB=3D kern.fallback_elf_bran LINUX_ELF=3D 3 PREVIOUS_ELF!=3D /sbin/sysctl -n ${FALLBACK_ELF_MIB} =20 +# FIXME. This will result in a file at /compat/linux/etcnsswitch.conf.dist= (sic!) +RPMFLAGS+=3D --relocate /etc/nsswitch.conf=3D/etc/nsswitch.conf.dist --bad= reloc + do-install: # # Handle the loading of the linux loadable kernel module if required. @@ -109,6 +112,9 @@ do-install: ${ECHO} $$R; \ ${RPM} -U ${RPMFLAGS} ${RPMDIR}/$$R; \ done + @${MV} ${PREFIX}/etcnsswitch.conf.dist ${PREFIX}/etc/nsswitch.conf.dist + @test -f ${PREFIX}/etc/nsswitch.conf || cp ${PREFIX}/etc/nsswitch.conf.di= st \ + ${PREFIX}/etc/nsswitch.conf @${FIND} ${PREFIX}/bin ${PREFIX}/sbin/ ${PREFIX}/usr/bin \ ${PREFIX}/usr/sbin -type f -print0 | ${XARGS} -0 file \ | ${GREP} ELF | ${CUT} -d : -f 1 \ Index: pkg-plist =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/emulators/linux_base-8/pkg-plist,v retrieving revision 1.3 diff -u -p -r1.3 pkg-plist --- pkg-plist 11 Nov 2005 19:54:16 -0000 1.3 +++ pkg-plist 1 Dec 2005 21:27:28 -0000 @@ -51,7 +51,9 @@ etc/ld.so.cache etc/ld.so.conf etc/logrotate.d/rpm etc/mtab -etc/nsswitch.conf +@unexec if cmp -s %D/etc/nsswitch.conf.dist %D/etc/nsswitch.conf; then rm = -f %D/etc/nsswitch.conf; fi +etc/nsswitch.conf.dist +@exec [ -f %D/etc/nsswitch.conf ] || cp %D/etc/nsswitch.conf.dist %D/etc/n= sswitch.conf etc/pam.d/su etc/profile etc/profile.d/colorls.csh --UnaWdueM1EBWVRzC-- --4f28nU6agdXSinmL Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDj2ulmArGtfDbn0QRAqNNAKC94d1vDInUb7lUS4O6URW/BUK/tgCg5Zgc D/6R4ZKBo/izKH4j7haXUyk= =MReg -----END PGP SIGNATURE----- --4f28nU6agdXSinmL-- From owner-freebsd-emulation@FreeBSD.ORG Thu Dec 1 22:01:12 2005 Return-Path: X-Original-To: freebsd-emulation@freebsd.org Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5CDED16A41F for ; Thu, 1 Dec 2005 22:01:12 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 957E843D53 for ; Thu, 1 Dec 2005 22:01:11 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id 7849A1A3C2D; Thu, 1 Dec 2005 14:01:11 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id DFEE051494; Thu, 1 Dec 2005 17:01:10 -0500 (EST) Date: Thu, 1 Dec 2005 17:01:10 -0500 From: Kris Kennaway To: Narit Message-ID: <20051201220110.GA7629@xor.obsecurity.org> References: <20051201153355k-narita@mail.jp.nec.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="RnlQjJ0d97Da+TV1" Content-Disposition: inline In-Reply-To: <20051201153355k-narita@mail.jp.nec.com> User-Agent: Mutt/1.4.2.1i Cc: freebsd-emulation@freebsd.org Subject: Re: Maple10 on FreeBSD 5.x(6.0) X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Dec 2005 22:01:12 -0000 --RnlQjJ0d97Da+TV1 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Dec 01, 2005 at 03:33:55PM +0900, Narit wrote: >=20 > Hi, >=20 > When I tried to run a latest linux software -Maple10- on FreeBSD 5.x(6.0), > the following error massage was displayed and it does not work.=20 >=20 > linux: pid 91881 (mserver): syscall rt_sigpending not implemented >=20 > It seems to me that the kernel should be changed, but I am not expert. > Any comments or advice would be appreciated. >=20 > Maple is a famous commercial mathematics program and its install method > is described even in the FreeBSD Handbook. The previous version of Maple9= .5 > runs on FreeBSD 5.x(6.0) in linux emulation mode without any problems. Since this will require a developer to implement the missing syscall, you don't really have many options unless you're willing to pay someone. Kris --RnlQjJ0d97Da+TV1 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDj3KmWry0BWjoQKURAvkgAJ95hl8wEb9oYqNtNit8yTIW2AA78wCgyL61 IVsZe0gblxCXfixc2Q/SuGk= =BEdV -----END PGP SIGNATURE----- --RnlQjJ0d97Da+TV1-- From owner-freebsd-emulation@FreeBSD.ORG Fri Dec 2 06:23:31 2005 Return-Path: X-Original-To: emulation@hub.freebsd.org Delivered-To: freebsd-emulation@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0CB0516A41F for ; Fri, 2 Dec 2005 06:23:31 +0000 (GMT) (envelope-from fenner@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1209A43D5C for ; Fri, 2 Dec 2005 06:23:30 +0000 (GMT) (envelope-from fenner@FreeBSD.org) Received: from freefall.freebsd.org (fenner@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id jB26NT9h065553 for ; Fri, 2 Dec 2005 06:23:29 GMT (envelope-from fenner@freefall.freebsd.org) Received: (from fenner@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id jB26NTle065552 for emulation; Fri, 2 Dec 2005 06:23:29 GMT (envelope-from fenner) Date: Fri, 2 Dec 2005 06:23:29 GMT From: Bill Fenner Message-Id: <200512020623.jB26NTle065552@freefall.freebsd.org> To: emulation@FreeBSD.org Cc: Subject: Update request: linux-XFree86-libs X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Dec 2005 06:23:31 -0000 Hi, linux-XFree86-libs has the dubious honor of having the #3 most unfetchable file: File: XFree86-libs-4.3.99.902-43.35.3.i586.rpm has 90 possible URLs: 6 OK, 82 bad, 2 skipped This is because most of the sites have XFree86-libs-4.3.99.902-43.42.5.i586.rpm instead. When I try looking for that file instead, I get File XFree86-libs-4.3.99.902-43.42.5.i586.rpm has 90 possible URLs: 79 ok, 9 bad, 2 skipped The distfile survey doesn't flag this, because the port is technically fetchable - you just have to wait through ~30 fetch failures before you hit a site that has the file. Bill From owner-freebsd-emulation@FreeBSD.ORG Fri Dec 2 10:46:54 2005 Return-Path: X-Original-To: freebsd-emulation@freebsd.org Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AB98A16A41F for ; Fri, 2 Dec 2005 10:46:54 +0000 (GMT) (envelope-from Alexander@Leidinger.net) Received: from www.ebusiness-leidinger.de (jojo.ms-net.de [84.16.236.246]) by mx1.FreeBSD.org (Postfix) with ESMTP id E961543D4C for ; Fri, 2 Dec 2005 10:46:53 +0000 (GMT) (envelope-from Alexander@Leidinger.net) Received: from Andro-Beta.Leidinger.net (p54A5F66F.dip.t-dialin.net [84.165.246.111]) (authenticated bits=0) by www.ebusiness-leidinger.de (8.13.1/8.13.1) with ESMTP id jB2AJuj4033423; Fri, 2 Dec 2005 11:19:56 +0100 (CET) (envelope-from Alexander@Leidinger.net) Received: from localhost (localhost [127.0.0.1]) by Andro-Beta.Leidinger.net (8.13.3/8.13.3) with ESMTP id jB2AkoC0060116; Fri, 2 Dec 2005 11:46:50 +0100 (CET) (envelope-from Alexander@Leidinger.net) Received: from pslux.cec.eu.int (pslux.cec.eu.int [158.169.9.14]) by webmail.leidinger.net (Horde MIME library) with HTTP; Fri, 02 Dec 2005 11:46:50 +0100 Message-ID: <20051202114650.qg08meypusws0cw8@netchild.homeip.net> X-Priority: 3 (Normal) Date: Fri, 02 Dec 2005 11:46:50 +0100 From: Alexander Leidinger To: Ulrich Spoerlein References: <17284.32307.784247.207350@jerusalem.litteratus.org> <20051124105440.cqdu7ydpc084kgsc@netchild.homeip.net> <20051124125951.GD1054@galgenberg.net> <20051124180627.665225aa@Magellan.Leidinger.net> <20051201213117.GC1083@galgenberg.net> In-Reply-To: <20051201213117.GC1083@galgenberg.net> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: 7bit User-Agent: Internet Messaging Program (IMP) H3 (4.0.3) / FreeBSD-4.11 X-Virus-Scanned: by amavisd-new Cc: freebsd-emulation@freebsd.org Subject: Re: Patch for emulators/linux_base-8 (was Re: warning) X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Dec 2005 10:46:54 -0000 Ulrich Spoerlein wrote: > Alexander Leidinger wrote: >> > The fix is, to tell /compat/linux/etc/nsswitch.conf to look at NIS too. >> >> Besides the fact that I don't use NIS and that UID 0 is in my passwd >> file: feel free to send a patch which takes /etc/nsswitch.conf and >> generates an appropriate /compat/linux one. > > I don't know enough about nsswitch to take all side effects into > account, therefore I settled for the cheap solution ... It's better than the current way. >> > It's a minor inconvenience, that nsswitch.conf gets clobbered every time >> > linux_base is reinstalled (and thereby breaking acroread7 for me). >> Bug noted... but feel free to send a PR and/or patches which fixes this. > > I just knew you would answer like that :) :-) > Today I felt like fixing this, and this is the patch I came up with. Now Thanks, looks ok. I try to get time at the WE. If another committer is listening: feel free to commit it. > that the second most annoying bug in Ports is fixed, I can take a stab > at fixing *the* most annoying bug. Linuxolator related? Bye, Alexander. -- http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID = B0063FE7 http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID = 72077137 Where there's no emotion, there's no motive for violence. -- Spock, "Dagger of the Mind", stardate 2715.1 From owner-freebsd-emulation@FreeBSD.ORG Fri Dec 2 11:15:37 2005 Return-Path: X-Original-To: emulation@freebsd.org Delivered-To: freebsd-emulation@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7152E16A41F for ; Fri, 2 Dec 2005 11:15:37 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from host-212-68-242-42.brutele.be (host-212-68-242-42.brutele.be [212.68.242.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E3B843D5F for ; Fri, 2 Dec 2005 11:15:36 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from jsite.lefort.net (jsite.lefort.net [192.168.1.2]) by gateway.lefort.net (Postfix) with ESMTP id 49B7D54F0; Fri, 2 Dec 2005 12:15:35 +0100 (CET) Received: from jsite.lefort.net (localhost [127.0.0.1]) by jsite.lefort.net (Postfix) with SMTP id D22ECC10B; Fri, 2 Dec 2005 12:15:34 +0100 (CET) Date: Fri, 2 Dec 2005 12:15:34 +0100 From: Jean-Yves Lefort To: Alexander Leidinger Message-Id: <20051202121534.44c2c7be.jylefort@FreeBSD.org> In-Reply-To: <20051201152026.lxwvpjokc0sw0okc@netchild.homeip.net> References: <200511261918.jAQJIp91001719@repoman.freebsd.org> <20051201152026.lxwvpjokc0sw0okc@netchild.homeip.net> X-Mailer: Sylpheed running on FreeBSD Mime-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg="PGP-SHA1"; boundary="Signature=_Fri__2_Dec_2005_12_15_34_+0100_LMQfKe5SCA/9DT0/" Cc: emulation@freebsd.org Subject: Re: cvs commit: ports/audio/linux-openal bsd.linux.mk X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Dec 2005 11:15:37 -0000 --Signature=_Fri__2_Dec_2005_12_15_34_+0100_LMQfKe5SCA/9DT0/ Content-Type: text/plain; charset=US-ASCII Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, 01 Dec 2005 15:20:26 +0100 Alexander Leidinger wrote: > Jean-Yves Lefort wrote: >=20 > [moving to emulation@] >=20 > I have a backlog of cvs-all mails... I'm slowly catching up and noticed t= his > one without further looking if someone wrote some comments (but I looked = at > rev 1.2 of the file). >=20 > > jylefort 2005-11-26 19:18:51 UTC > > > > FreeBSD ports repository > > > > Added files: > > audio/linux-openal bsd.linux.mk > > Log: > > Add my RPM support infrastructure. > ^^ > Isn't this a little bit selfish? ;-) >=20 > Ok, more serious comments (*constructive* critic): > - that's the wrong name for this file, bsd.rpm.mk or > bsd.linuxrpm.mk would be better, since it does not contain > all linux related mk-fu Agreed. > - install-time generated plists are evil (as per discussion on > ports@ a while ago (and as of very recent experience with the > linux ports), so the pre-install target should be removed and > a real plist should be generated), have a look at the linux-gtk > Makefile for a target which generates an initial plist (needs > to be modified a little bit afterwards) So we still don't agree on this. I guess we never will. :( > - it should be installed into PORTSDIR/Mk, so that other port can > use it I agree, but I don't think that I have the right to (nor that it is good to) add files to Mk/ without portmgr reviewal. I had planned to contact emulation@ and discuss the steps needed to move the file to Mk/ and have it pulled in from bsd.port.mk (via a USE_LINUX_RPM knob, or something). Glad to see that you read cvs-ports. :) > - does the ppc have a linuxolator? I'm not sure (I guess not). I'll remove the powerpc stuff if someone confirms that there's no linux emulation on powerpc. > - why do you use different ways of specifying the paths in DESCR > and MD5_FILE? > - why do you specify DESCR at all? The idea is to use the FreeBSD native port's pkg-descr. > - INSTALLS_LINUX_SHLIB should be removed, fix the FreeBSD one > instead to not do anything in the USE_LINUX case and reuse the > name of the FreeBSD one (-> more consistent and easy > description on the porters handbook) Agreed. > In general it's nice to see someone working on this. And I like the idea = to > use rpm2cpio instead of rpm. We could get rid of the rpm-db in the linux > base ports this way (this removes some of those annoying warnings on > pkg_deinstall). And it allows to modify the contents before installing, which is not possible when installing with rpm. I don't know what to do next. I can file a PR for inclusion in Mk/, but it'd feature my own plist generator. Directions are welcome. --=20 Jean-Yves Lefort jylefort@FreeBSD.org http://lefort.be.eu.org/ --Signature=_Fri__2_Dec_2005_12_15_34_+0100_LMQfKe5SCA/9DT0/ Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDkCzWyzD7UaO4AGoRAua/AJ9whezEAPTgitSFUzNV7kWhzdB05wCfSLbO NDb8ZEMMVdMdt33EeVeO0jk= =wWwz -----END PGP SIGNATURE----- --Signature=_Fri__2_Dec_2005_12_15_34_+0100_LMQfKe5SCA/9DT0/-- From owner-freebsd-emulation@FreeBSD.ORG Fri Dec 2 11:16:33 2005 Return-Path: X-Original-To: freebsd-emulation@freebsd.org Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B839616A420 for ; Fri, 2 Dec 2005 11:16:33 +0000 (GMT) (envelope-from q@galgenberg.net) Received: from wrzx28.rz.uni-wuerzburg.de (wrzx28.rz.uni-wuerzburg.de [132.187.3.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id 42B4D43D5D for ; Fri, 2 Dec 2005 11:16:30 +0000 (GMT) (envelope-from q@galgenberg.net) Received: from wrzx30.rz.uni-wuerzburg.de (wrzx30.rz.uni-wuerzburg.de [132.187.1.30]) by wrzx28.rz.uni-wuerzburg.de (Postfix) with ESMTP id 04BEF13FB32; Fri, 2 Dec 2005 12:16:30 +0100 (CET) Received: from virusscan (localhost [127.0.0.1]) by wrzx30.rz.uni-wuerzburg.de (Postfix) with ESMTP id DD3239F4F5; Fri, 2 Dec 2005 12:16:29 +0100 (CET) Received: from wrzx28.rz.uni-wuerzburg.de (wrzx28.rz.uni-wuerzburg.de [132.187.3.28]) by wrzx30.rz.uni-wuerzburg.de (Postfix) with ESMTP id C50529F46C; Fri, 2 Dec 2005 12:16:29 +0100 (CET) Received: from frodo.galgenberg.net (wwsx14.win-screen.uni-wuerzburg.de [132.187.253.14]) by wrzx28.rz.uni-wuerzburg.de (Postfix) with ESMTP id A808713FB32; Fri, 2 Dec 2005 12:16:29 +0100 (CET) Received: from coyote.q.local (gb-21-237.galgenberg.net [172.16.21.237]) by frodo.galgenberg.net (8.13.1/8.13.1) with ESMTP id jB2BGTRn095497; Fri, 2 Dec 2005 12:16:29 +0100 (CET) (envelope-from q@galgenberg.net) Received: from roadrunner.q.local (roadrunner.q.local [192.168.0.148]) by coyote.q.local (8.13.4/8.13.4) with ESMTP id jB2BGTHN037124; Fri, 2 Dec 2005 12:16:29 +0100 (CET) (envelope-from q@galgenberg.net) Received: from roadrunner.q.local (localhost [127.0.0.1]) by roadrunner.q.local (8.13.4/8.13.4) with ESMTP id jB2BGTGY001987; Fri, 2 Dec 2005 12:16:29 +0100 (CET) (envelope-from q@galgenberg.net) Received: (from q@localhost) by roadrunner.q.local (8.13.4/8.13.4/Submit) id jB2BGSnL001986; Fri, 2 Dec 2005 12:16:28 +0100 (CET) (envelope-from q@galgenberg.net) Date: Fri, 2 Dec 2005 12:16:28 +0100 From: Ulrich Spoerlein To: Alexander Leidinger Message-ID: <20051202111628.GA1100@galgenberg.net> Mail-Followup-To: Alexander Leidinger , freebsd-emulation@freebsd.org References: <17284.32307.784247.207350@jerusalem.litteratus.org> <20051124105440.cqdu7ydpc084kgsc@netchild.homeip.net> <20051124125951.GD1054@galgenberg.net> <20051124180627.665225aa@Magellan.Leidinger.net> <20051201213117.GC1083@galgenberg.net> <20051202114650.qg08meypusws0cw8@netchild.homeip.net> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="qMm9M+Fa2AknHoGS" Content-Disposition: inline In-Reply-To: <20051202114650.qg08meypusws0cw8@netchild.homeip.net> X-Virus-Scanned: by amavisd-new (Rechenzentrum Universitaet Wuerzburg) Cc: freebsd-emulation@freebsd.org Subject: Re: Patch for emulators/linux_base-8 (was Re: warning) X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Dec 2005 11:16:33 -0000 --qMm9M+Fa2AknHoGS Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Alexander Leidinger wrote: > >that the second most annoying bug in Ports is fixed, I can take a stab > >at fixing *the* most annoying bug. >=20 > Linuxolator related? No. It has to do with pkgdep which blindly takes the path/port defined in the Makefile, even if the binary/lib is coming from a port with a different origin. Most prominent example is ghostscript. If you happen to install ghostscript-afpl and then install something like epstools, it will depend on ghostscript-gnu, not -afpl. Therefore portversion/portupgrade will bail, because the dependancy tree is incomplete and you have to run pkgdb -F manually ... every single time you update a gs-related port ... grrrr. A simple "pkg_info -qo `pkg_info -qW gs`" could fix this ... I think. Ulrich Spoerlein --=20 PGP Key ID: F0DB9F44 Encrypted mail welcome! Fingerprint: F1CE D062 0CA9 ADE3 349B 2FE8 980A C6B5 F0DB 9F44 Ok, which part of "Ph'nglui mglw'nafh Cthulhu R'lyeh wgah'nagl fhtagn." didn't you understand? --qMm9M+Fa2AknHoGS Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDkC0MmArGtfDbn0QRAtEVAJ0XKxqV8pBW8dGDLVssReK+pGpbjACgjqPm D4qeYwkugCVoJImH8RYq62A= =WmcS -----END PGP SIGNATURE----- --qMm9M+Fa2AknHoGS-- From owner-freebsd-emulation@FreeBSD.ORG Fri Dec 2 13:28:32 2005 Return-Path: X-Original-To: emulation@FreeBSD.org Delivered-To: freebsd-emulation@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F0FCD16A41F; Fri, 2 Dec 2005 13:28:32 +0000 (GMT) (envelope-from Alexander@Leidinger.net) Received: from www.ebusiness-leidinger.de (jojo.ms-net.de [84.16.236.246]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2F2A643D66; Fri, 2 Dec 2005 13:28:31 +0000 (GMT) (envelope-from Alexander@Leidinger.net) Received: from Andro-Beta.Leidinger.net (p54A5F66F.dip.t-dialin.net [84.165.246.111]) (authenticated bits=0) by www.ebusiness-leidinger.de (8.13.1/8.13.1) with ESMTP id jB2D1VeK034102; Fri, 2 Dec 2005 14:01:32 +0100 (CET) (envelope-from Alexander@Leidinger.net) Received: from localhost (localhost [127.0.0.1]) by Andro-Beta.Leidinger.net (8.13.3/8.13.3) with ESMTP id jB2DSRPZ090108; Fri, 2 Dec 2005 14:28:27 +0100 (CET) (envelope-from Alexander@Leidinger.net) Received: from pslux.cec.eu.int (pslux.cec.eu.int [158.169.9.14]) by webmail.leidinger.net (Horde MIME library) with HTTP; Fri, 02 Dec 2005 14:28:27 +0100 Message-ID: <20051202142827.2s3y42ss8w0o0g0o@netchild.homeip.net> X-Priority: 3 (Normal) Date: Fri, 02 Dec 2005 14:28:27 +0100 From: Alexander Leidinger To: Jean-Yves Lefort References: <200511261918.jAQJIp91001719@repoman.freebsd.org> <20051201152026.lxwvpjokc0sw0okc@netchild.homeip.net> <20051202121534.44c2c7be.jylefort@FreeBSD.org> In-Reply-To: <20051202121534.44c2c7be.jylefort@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: 7bit User-Agent: Internet Messaging Program (IMP) H3 (4.0.3) / FreeBSD-4.11 X-Virus-Scanned: by amavisd-new Cc: emulation@FreeBSD.org Subject: Re: cvs commit: ports/audio/linux-openal bsd.linux.mk X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Dec 2005 13:28:33 -0000 Jean-Yves Lefort wrote: >> - install-time generated plists are evil (as per discussion on >> ports@ a while ago (and as of very recent experience with the >> linux ports), so the pre-install target should be removed and >> a real plist should be generated), have a look at the linux-gtk >> Makefile for a target which generates an initial plist (needs >> to be modified a little bit afterwards) > > So we still don't agree on this. I guess we never will. :( I don't object to autogenerated lists, I object to not commit the plist to the ports tree. Add a target, e.g. "new-plist", which generates a new plist in the directory of the port, and I don't object (have a look at x11-toolkits/linux-gtk/Makefile). We have several linux ports which contain empty directories. If port A and the dependency port B both contain the same empty directory in the RPM, both plists will contain a "@dirrm" for this. This is wrong and pointyhat will complain. You also need a "@exec mkdir" for such an empty directory, else the package will not generate it. While it doesn't matter for pointyhat if the second mkdir is there or not, ideally the directory should only be crated once. From my pragmatic point of view: I don't care for the superflous mkdir, but I care about the rmdir. I don't want to get bombarded with YAPHR mails again for those errors. Another class of errors are the locale directories. Not every locale directoy is created by linux_base. linux-glib2 has to create some of them. linux-gtk2 uses some of those newly created ones. Those directories should not be removed by linux-gtk2. Some other ports may use those directories too, but some of them may not depend upon linx-glib2. The current workaround ist to remove the locale directories if they are empty in every port. It works (the pragmatic solution) without YAPHR mails, but it's not clean. The linux-gtk2 port should not contain the "rmdir || true" parts for them. >> - it should be installed into PORTSDIR/Mk, so that other port can >> use it > > I agree, but I don't think that I have the right to (nor that it is > good to) add files to Mk/ without portmgr reviewal. > > I had planned to contact emulation@ and discuss the steps needed to > move the file to Mk/ and have it pulled in from bsd.port.mk (via a > USE_LINUX_RPM knob, or something). Glad to see that you read > cvs-ports. :) I suggest: - ask portmgr if it is ok to commit the .mk file (not included by bsd.port.mk) - commit it if approved - convert some ports to use it - be happe when everything works - write a patch for bsd.port.mk (USE_LINUX_RPM) and let portmgr run an experimental ports build - when portmgr committed the patch convert some ports to use it - be happy when everything works - convert the rest - sit back and enjoy^w^w^w^wtackle another problem >> - does the ppc have a linuxolator? > > I'm not sure (I guess not). I'll remove the powerpc stuff if someone > confirms that there's no linux emulation on powerpc. AFAIK ony amd64, alpha and i386 have a linuxolator. I suggest to let the .mk part intact, maybe it motivates someone to write some code for those other architectures. Just remove the already committed .ppc files in the ports tree. >> - why do you use different ways of specifying the paths in DESCR >> and MD5_FILE? >> - why do you specify DESCR at all? > > The idea is to use the FreeBSD native port's pkg-descr. I don't think this is good. I think the descr should mention that the ports provide the linux versions of the port. > I don't know what to do next. I can file a PR for inclusion in Mk/, An suggestion is already above. > but it'd feature my own plist generator. Directions are welcome. I hope we can meet in the middle and agree on the semi-automatic plist generator. A new-plist target allows you to be lazy (since a maintainer is supposed to test the port anyway, I don't think it's to much work to type "make new-plist"... or "make new-plist && mv pkg-plist.new pkg-plist", see linux-gtk/Makefile), while it allows those people which don't trust the automatic plist generator to write their own plists. It also allows to look up the contents of the port without a need to install it. And we're able to answer questions like "which port installs file X". So we get the good features of both worlds, don't you think? Bye, Alexander. -- http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID = B0063FE7 http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID = 72077137 Let the worthy citizens of Chicago get their liquor the best way they can. I'm sick of the job. It's a thankless one and full of grief. -- Capone From owner-freebsd-emulation@FreeBSD.ORG Fri Dec 2 13:35:21 2005 Return-Path: X-Original-To: freebsd-emulation@freebsd.org Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7D0D516A41F for ; Fri, 2 Dec 2005 13:35:21 +0000 (GMT) (envelope-from Alexander@Leidinger.net) Received: from www.ebusiness-leidinger.de (jojo.ms-net.de [84.16.236.246]) by mx1.FreeBSD.org (Postfix) with ESMTP id E1A2A43D7F for ; Fri, 2 Dec 2005 13:35:09 +0000 (GMT) (envelope-from Alexander@Leidinger.net) Received: from Andro-Beta.Leidinger.net (p54A5F66F.dip.t-dialin.net [84.165.246.111]) (authenticated bits=0) by www.ebusiness-leidinger.de (8.13.1/8.13.1) with ESMTP id jB2D8AKw034124; Fri, 2 Dec 2005 14:08:11 +0100 (CET) (envelope-from Alexander@Leidinger.net) Received: from localhost (localhost [127.0.0.1]) by Andro-Beta.Leidinger.net (8.13.3/8.13.3) with ESMTP id jB2DZ5SO091382; Fri, 2 Dec 2005 14:35:05 +0100 (CET) (envelope-from Alexander@Leidinger.net) Received: from pslux.cec.eu.int (pslux.cec.eu.int [158.169.9.14]) by webmail.leidinger.net (Horde MIME library) with HTTP; Fri, 02 Dec 2005 14:35:05 +0100 Message-ID: <20051202143505.rk3edpic800cww40@netchild.homeip.net> X-Priority: 3 (Normal) Date: Fri, 02 Dec 2005 14:35:05 +0100 From: Alexander Leidinger To: Ulrich Spoerlein References: <17284.32307.784247.207350@jerusalem.litteratus.org> <20051124105440.cqdu7ydpc084kgsc@netchild.homeip.net> <20051124125951.GD1054@galgenberg.net> <20051124180627.665225aa@Magellan.Leidinger.net> <20051201213117.GC1083@galgenberg.net> <20051202114650.qg08meypusws0cw8@netchild.homeip.net> <20051202111628.GA1100@galgenberg.net> In-Reply-To: <20051202111628.GA1100@galgenberg.net> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: 7bit User-Agent: Internet Messaging Program (IMP) H3 (4.0.3) / FreeBSD-4.11 X-Virus-Scanned: by amavisd-new Cc: freebsd-emulation@freebsd.org Subject: Re: Patch for emulators/linux_base-8 (was Re: warning) X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Dec 2005 13:35:21 -0000 Ulrich Spoerlein wrote: > Alexander Leidinger wrote: >> >that the second most annoying bug in Ports is fixed, I can take a stab >> >at fixing *the* most annoying bug. >> >> Linuxolator related? > > No. It has to do with pkgdep which blindly takes the path/port defined > in the Makefile, even if the binary/lib is coming from a port with a > different origin. > > Most prominent example is ghostscript. If you happen to install > ghostscript-afpl and then install something like epstools, it will > depend on ghostscript-gnu, not -afpl. We have a switch for the ghostscript ports... but I agree with you. Bye, Alexander. -- http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID = B0063FE7 http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID = 72077137 Real programmers don't write in Fortran. Fortran is for pipe stress freaks and crystallography weenies. From owner-freebsd-emulation@FreeBSD.ORG Fri Dec 2 13:56:53 2005 Return-Path: X-Original-To: freebsd-emulation@freebsd.org Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D337416A41F for ; Fri, 2 Dec 2005 13:56:53 +0000 (GMT) (envelope-from q@galgenberg.net) Received: from wrzx28.rz.uni-wuerzburg.de (wrzx28.rz.uni-wuerzburg.de [132.187.3.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id 35F5C43D8B for ; Fri, 2 Dec 2005 13:56:25 +0000 (GMT) (envelope-from q@galgenberg.net) Received: from wrzx30.rz.uni-wuerzburg.de (wrzx30.rz.uni-wuerzburg.de [132.187.1.30]) by wrzx28.rz.uni-wuerzburg.de (Postfix) with ESMTP id 6B23613FB10; Fri, 2 Dec 2005 14:56:22 +0100 (CET) Received: from virusscan (localhost [127.0.0.1]) by wrzx30.rz.uni-wuerzburg.de (Postfix) with ESMTP id 52ABD9F4FB; Fri, 2 Dec 2005 14:56:22 +0100 (CET) Received: from wrzx28.rz.uni-wuerzburg.de (wrzx28.rz.uni-wuerzburg.de [132.187.3.28]) by wrzx30.rz.uni-wuerzburg.de (Postfix) with ESMTP id 3ABA09F4EA; Fri, 2 Dec 2005 14:56:22 +0100 (CET) Received: from frodo.galgenberg.net (wwsx14.win-screen.uni-wuerzburg.de [132.187.253.14]) by wrzx28.rz.uni-wuerzburg.de (Postfix) with ESMTP id E9C9213FB10; Fri, 2 Dec 2005 14:56:21 +0100 (CET) Received: from coyote.q.local (gb-21-237.galgenberg.net [172.16.21.237]) by frodo.galgenberg.net (8.13.1/8.13.1) with ESMTP id jB2DuLoM053794; Fri, 2 Dec 2005 14:56:21 +0100 (CET) (envelope-from q@galgenberg.net) Received: from roadrunner.q.local (roadrunner.q.local [192.168.0.148]) by coyote.q.local (8.13.4/8.13.4) with ESMTP id jB2DuLwW037813; Fri, 2 Dec 2005 14:56:21 +0100 (CET) (envelope-from q@galgenberg.net) Received: from roadrunner.q.local (localhost [127.0.0.1]) by roadrunner.q.local (8.13.4/8.13.4) with ESMTP id jB2DuKiP082237; Fri, 2 Dec 2005 14:56:21 +0100 (CET) (envelope-from q@galgenberg.net) Received: (from q@localhost) by roadrunner.q.local (8.13.4/8.13.4/Submit) id jB2DuKLM082236; Fri, 2 Dec 2005 14:56:20 +0100 (CET) (envelope-from q@galgenberg.net) Date: Fri, 2 Dec 2005 14:56:20 +0100 From: Ulrich Spoerlein To: Alexander Leidinger Message-ID: <20051202135620.GC1100@galgenberg.net> Mail-Followup-To: Alexander Leidinger , freebsd-emulation@freebsd.org References: <17284.32307.784247.207350@jerusalem.litteratus.org> <20051124105440.cqdu7ydpc084kgsc@netchild.homeip.net> <20051124125951.GD1054@galgenberg.net> <20051124180627.665225aa@Magellan.Leidinger.net> <20051201213117.GC1083@galgenberg.net> <20051202114650.qg08meypusws0cw8@netchild.homeip.net> <20051202111628.GA1100@galgenberg.net> <20051202143505.rk3edpic800cww40@netchild.homeip.net> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="XvKFcGCOAo53UbWW" Content-Disposition: inline In-Reply-To: <20051202143505.rk3edpic800cww40@netchild.homeip.net> X-Virus-Scanned: by amavisd-new (Rechenzentrum Universitaet Wuerzburg) Cc: freebsd-emulation@freebsd.org Subject: Re: Patch for emulators/linux_base-8 (was Re: warning) X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Dec 2005 13:56:54 -0000 --XvKFcGCOAo53UbWW Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Alexander Leidinger wrote: > >No. It has to do with pkgdep which blindly takes the path/port defined > >in the Makefile, even if the binary/lib is coming from a port with a > >different origin. > > > >Most prominent example is ghostscript. If you happen to install > >ghostscript-afpl and then install something like epstools, it will > >depend on ghostscript-gnu, not -afpl. >=20 > We have a switch for the ghostscript ports... but I agree with you. If you're talking about WITH_GHOSTSCRIPT_AFPL, then it's not working as you might think. % cd /usr/ports/graphics/epstool % make -V WITH_GHOSTSCRIPT_AFPL -V RUN_DEPENDS true gs:/usr/ports/print/ghostscript-gnu =2E.. reading bsd.port.mk ... AAAAAAAAAAAAAARRRGGHH, since when are we checking explicitly for defined(foo) && foo =3D=3D yes? I usually set my vars to "true", not "yes". But anyway, the same problem exists with lynx vs lynx-ssl for example. And: We have a ghostscript-gpl port too, which isn't even mentioned in bsd.port.mk. Ulrich Spoerlein --=20 PGP Key ID: F0DB9F44 Encrypted mail welcome! Fingerprint: F1CE D062 0CA9 ADE3 349B 2FE8 980A C6B5 F0DB 9F44 Ok, which part of "Ph'nglui mglw'nafh Cthulhu R'lyeh wgah'nagl fhtagn." didn't you understand? --XvKFcGCOAo53UbWW Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDkFKEmArGtfDbn0QRAjEqAKCUS94SegnQEUN/+dRpaNX8FyJClACg6M8N 6orFx83tfAyfiVlsMG3ED78= =SD3N -----END PGP SIGNATURE----- --XvKFcGCOAo53UbWW-- From owner-freebsd-emulation@FreeBSD.ORG Fri Dec 2 15:37:52 2005 Return-Path: X-Original-To: emulation@FreeBSD.org Delivered-To: freebsd-emulation@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8A22716A41F for ; Fri, 2 Dec 2005 15:37:52 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from host-212-68-242-42.brutele.be (host-212-68-242-42.brutele.be [212.68.242.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9A4C443D5A for ; Fri, 2 Dec 2005 15:37:36 +0000 (GMT) (envelope-from jylefort@FreeBSD.org) Received: from jsite.lefort.net (jsite.lefort.net [192.168.1.2]) by gateway.lefort.net (Postfix) with ESMTP id 3ECCF54F0; Fri, 2 Dec 2005 16:37:35 +0100 (CET) Received: from jsite.lefort.net (localhost [127.0.0.1]) by jsite.lefort.net (Postfix) with SMTP id D9B36C0DB; Fri, 2 Dec 2005 16:37:34 +0100 (CET) Date: Fri, 2 Dec 2005 16:37:34 +0100 From: Jean-Yves Lefort To: Alexander Leidinger Message-Id: <20051202163734.23814a2f.jylefort@FreeBSD.org> In-Reply-To: <20051202142827.2s3y42ss8w0o0g0o@netchild.homeip.net> References: <200511261918.jAQJIp91001719@repoman.freebsd.org> <20051201152026.lxwvpjokc0sw0okc@netchild.homeip.net> <20051202121534.44c2c7be.jylefort@FreeBSD.org> <20051202142827.2s3y42ss8w0o0g0o@netchild.homeip.net> X-Mailer: Sylpheed running on FreeBSD Mime-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg="PGP-SHA1"; boundary="Signature=_Fri__2_Dec_2005_16_37_34_+0100_Fu2vS5M.Xgt7sLJi" Cc: emulation@FreeBSD.org Subject: Re: cvs commit: ports/audio/linux-openal bsd.linux.mk X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Dec 2005 15:37:52 -0000 --Signature=_Fri__2_Dec_2005_16_37_34_+0100_Fu2vS5M.Xgt7sLJi Content-Type: multipart/mixed; boundary="Multipart=_Fri__2_Dec_2005_16_37_34_+0100_fhSp1jdguMFSR4dJ" --Multipart=_Fri__2_Dec_2005_16_37_34_+0100_fhSp1jdguMFSR4dJ Content-Type: text/plain; charset=US-ASCII Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, 02 Dec 2005 14:28:27 +0100 Alexander Leidinger wrote: > Jean-Yves Lefort wrote: >=20 > >> - install-time generated plists are evil (as per discussion on > >> ports@ a while ago (and as of very recent experience with the > >> linux ports), so the pre-install target should be removed and > >> a real plist should be generated), have a look at the linux-gtk > >> Makefile for a target which generates an initial plist (needs > >> to be modified a little bit afterwards) > > > > So we still don't agree on this. I guess we never will. :( >=20 > I don't object to autogenerated lists, I object to not commit the plist to > the ports tree. Add a target, e.g. "new-plist", which generates a new pli= st > in the directory of the port, and I don't object (have a look at > x11-toolkits/linux-gtk/Makefile). >=20 > We have several linux ports which contain empty directories. If port A and > the dependency port B both contain the same empty directory in the RPM, b= oth > plists will contain a "@dirrm" for this. This is wrong and pointyhat will > complain. You also need a "@exec mkdir" for such an empty directory, else > the package will not generate it. While it doesn't matter for pointyhat if > the second mkdir is there or not, ideally the directory should only be > crated once. From my pragmatic point of view: I don't care for the > superflous mkdir, but I care about the rmdir. I don't want to get bombard= ed > with YAPHR mails again for those errors. >=20 > Another class of errors are the locale directories. Not every locale dire= ctoy > is created by linux_base. linux-glib2 has to create some of them. linux-g= tk2 > uses some of those newly created ones. Those directories should not be > removed by linux-gtk2. Some other ports may use those directories too, but > some of them may not depend upon linx-glib2. The current workaround ist to > remove the locale directories if they are empty in every port. It works (= the > pragmatic solution) without YAPHR mails, but it's not clean. The linux-gt= k2 > port should not contain the "rmdir || true" parts for them. I am aware of these peculiarities. Ports for which the auto plist generator is not smart enough (they are a minority) can perfectly bypass it. As an example, see my own linux ports: audio/linux-alsa-lib, audio/linux-arts, audio/linux-libogg, audio/linux-libvorbis, audio/linux-openal and lang/linux-libgcc use the auto plist. x11-themes/linux-gtk-bluecurve-theme is affected by some of the issues you mention, and therefore builds its own plist in pre-install. > >> - it should be installed into PORTSDIR/Mk, so that other port can > >> use it > > > > I agree, but I don't think that I have the right to (nor that it is > > good to) add files to Mk/ without portmgr reviewal. > > > > I had planned to contact emulation@ and discuss the steps needed to > > move the file to Mk/ and have it pulled in from bsd.port.mk (via a > > USE_LINUX_RPM knob, or something). Glad to see that you read > > cvs-ports. :) >=20 > I suggest: > - ask portmgr if it is ok to commit the .mk file (not included by > bsd.port.mk) > - commit it if approved > - convert some ports to use it > - be happe when everything works > - write a patch for bsd.port.mk (USE_LINUX_RPM) and let portmgr > run an experimental ports build > - when portmgr committed the patch convert some ports to use it > - be happy when everything works > - convert the rest > - sit back and enjoy^w^w^w^wtackle another problem Good idea. I'm going to ask portmgr if I can commit the attached file, unless you have more comments. Major changes: - allow to easily disable auto plist by defining NO_AUTOMATIC_PLIST - added new-plist target inspired by linux-gtk - useful default for MASTER_SITE_SUBDIR (Fedora Core 3) - use run-ldconfig target and mimic native output Note that INSTALLS_SHLIB requires a bsd.port.mk patch, so I still have to use INSTALLS_LINUX_SHLIB. > >> - does the ppc have a linuxolator? > > > > I'm not sure (I guess not). I'll remove the powerpc stuff if someone > > confirms that there's no linux emulation on powerpc. >=20 > AFAIK ony amd64, alpha and i386 have a linuxolator. >=20 > I suggest to let the .mk part intact, maybe it motivates someone to write > some code for those other architectures. Just remove the already committed > .ppc files in the ports tree. That's what I did. > >> - why do you use different ways of specifying the paths in DESCR > >> and MD5_FILE? > >> - why do you specify DESCR at all? > > > > The idea is to use the FreeBSD native port's pkg-descr. >=20 > I don't think this is good. I think the descr should mention that the por= ts > provide the linux versions of the port. It's obvious from the package name and comment. But once again, people are free to bypass this helper if they don't like it. > > I don't know what to do next. I can file a PR for inclusion in Mk/, >=20 > An suggestion is already above. >=20 > > but it'd feature my own plist generator. Directions are welcome. >=20 > I hope we can meet in the middle and agree on the semi-automatic plist > generator. A new-plist target allows you to be lazy (since a maintainer is > supposed to test the port anyway, I don't think it's to much work to type > "make new-plist"... or "make new-plist && mv pkg-plist.new pkg-plist", see > linux-gtk/Makefile), while it allows those people which don't trust the > automatic plist generator to write their own plists. It also allows to lo= ok > up the contents of the port without a need to install it. And we're able = to > answer questions like "which port installs file X". So we get the good > features of both worlds, don't you think? I've added new-plist and NO_AUTOMATIC_PLIST for auto plist haters. --=20 Jean-Yves Lefort jylefort@FreeBSD.org http://lefort.be.eu.org/ --Multipart=_Fri__2_Dec_2005_16_37_34_+0100_fhSp1jdguMFSR4dJ Content-Type: text/plain; name="bsd.linux-rpm.mk" Content-Disposition: attachment; filename="bsd.linux-rpm.mk" Content-Transfer-Encoding: base64 IyBic2QubGludXgtcnBtLm1rIC0gc3VwcG9ydCBmb3IgUlBNIHBhY2thZ2VzIHdoaWNoIGluc3Rh bGwgaW4gJHtMSU5VWEJBU0V9DQojDQojIE1haW50YWluZXI6IEplYW4tWXZlcyBMZWZvcnQgPGp5 bGVmb3J0QEZyZWVCU0Qub3JnPg0KIw0KIyAkRnJlZUJTRCQNCiMNCg0KTUFTVEVSX1NJVEVTPz0J JHtNQVNURVJfU0lURV9GRURPUkFfTElOVVh9DQpNQVNURVJfU0lURV9TVUJESVI/PQkzLyR7TElO VVhfQVJDSH0vb3MvRmVkb3JhL1JQTVMvDQpQS0dOQU1FUFJFRklYPz0JbGludXgtDQpFWFRSQUNU X1NVRlg/PQkuJHtMSU5VWF9BUkNIfS5ycG0NCg0KRVhUUkFDVF9ERVBFTkRTKz0JcnBtMmNwaW86 JHtQT1JUU0RJUn0vYXJjaGl2ZXJzL3JwbQ0KDQpFWFRSQUNUX0NNRD89CXJwbTJjcGlvDQpFWFRS QUNUX0JFRk9SRV9BUkdTPz0NCkVYVFJBQ1RfQUZURVJfQVJHUz89CXwgJHtDUElPfSAtaWQgLS1x dWlldA0KDQpVU0VfTElOVVg9CXllcw0KVVNFX0xJTlVYX1BSRUZJWD0JeWVzDQoNCk5PX1dSS1NV QkRJUj0JeWVzDQpOT19CVUlMRD0JeWVzDQoNCkRFU0NSPz0JCSR7LkNVUkRJUn0vLi4vJHtQT1JU TkFNRX0vcGtnLWRlc2NyDQpNRDVfRklMRT89CSR7TUFTVEVSRElSfS9kaXN0aW5mby4ke0xJTlVY X0FSQ0h9DQoNCkxJTlVYX0xEQ09ORklHPz0JJHtMSU5VWEJBU0V9L3NiaW4vbGRjb25maWcNCg0K LmlmICFkZWZpbmVkKE5PX0FVVE9NQVRJQ19QTElTVCkNClBMSVNUPz0JCSR7V1JLRElSfS8uUExJ U1QubGludXgtcnBtDQoNCnByZS1pbnN0YWxsOiBsaW51eC1ycG0tZ2VuZXJhdGUtcGxpc3QNCg0K bGludXgtcnBtLWdlbmVyYXRlLXBsaXN0Og0KCUAke1JNfSAtZiAke1BMSVNUfQ0KCUBjZCAke1dS S1NSQ30gJiYgXA0KCSR7RklORH0gKiAhIC10eXBlIGQgfCAke1NPUlR9ID4+ICR7UExJU1R9ICYm IFwNCgkke0ZJTkR9IC1kICogLXR5cGUgZCBcDQoJCXwgJHtHUkVQfSAtRXYgJ14oZXRjfGxpYnx1 c3J8dXNyL2Jpbnx1c3IvbGlifHVzci9zYmlufHVzci9zaGFyZXx1c3Ivc2hhcmUvZG9jfHVzci9z aGFyZS9pbmZvfHVzci9zaGFyZS9tYW58dXNyL3NoYXJlL21hbi9tYW5bMS05bl0pJCQnIFwNCgkJ fCAke1NFRH0gLWUgJ3N8XnxAZGlycm0gfCcgPj4gJHtQTElTVH0NCi5lbmRpZg0KDQouaWYgIXRh cmdldChkby1pbnN0YWxsKQ0KZG8taW5zdGFsbDoNCgljZCAke1dSS1NSQ30gJiYgJHtGSU5EfSAq IC10eXBlIGQgLWV4ZWMgJHtNS0RJUn0gIiR7UFJFRklYfS97fSIgXDsNCgljZCAke1dSS1NSQ30g JiYgJHtGSU5EfSAqICEgLXR5cGUgZCB8ICR7Q1BJT30gLXBtIC1SIHJvb3Q6d2hlZWwgJHtQUkVG SVh9DQouZW5kaWYNCg0KLmlmIGRlZmluZWQoSU5TVEFMTFNfTElOVVhfU0hMSUIpDQpwb3N0LWlu c3RhbGw6IGxpbnV4LXJwbS1wb3N0LWluc3RhbGwNCg0KbGludXgtcnBtLXBvc3QtaW5zdGFsbDoN CglAJHtFQ0hPX0NNRH0gJ0BleGVjICR7TElOVVhfTERDT05GSUd9IDI+L2Rldi9udWxsIHx8ICR7 VFJVRX0nID4+ICR7VE1QUExJU1R9DQoJQCR7RUNIT19DTUR9ICdAdW5leGVjICR7TElOVVhfTERD T05GSUd9IDI+L2Rldi9udWxsIHx8ICR7VFJVRX0nID4+ICR7VE1QUExJU1R9DQouZW5kaWYNCg0K LmlmICF0YXJnZXQocnVuLWxkY29uZmlnKQ0KcnVuLWxkY29uZmlnOg0KLiAgaWYgZGVmaW5lZChJ TlNUQUxMU19MSU5VWF9TSExJQikNCi4gICAgaWYgIWRlZmluZWQoSU5TVEFMTF9BU19VU0VSKQ0K CUAke0VDSE9fTVNHfSAiPT09PiAgIFJ1bm5pbmcgJHtMSU5VWF9MRENPTkZJR30iDQoJJHtMSU5V WF9MRENPTkZJR30NCi4gICAgZWxzZQ0KCUAke0VDSE9fTVNHfSAiPT09PiAgIFJ1bm5pbmcgJHtM SU5VWF9MRENPTkZJR30gKGVycm9ycyBhcmUgaWdub3JlZCkiDQoJLSR7TElOVVhfTERDT05GSUd9 DQouICAgIGVuZGlmDQouICBlbHNlDQoJQCR7RE9fTkFEQX0NCi4gIGVuZGlmDQouZW5kaWYNCg0K bmV3LXBsaXN0Og0KCUAke1JNfSAtcmYgJHtXUktESVJ9Ly5uZXctcGxpc3QNCglAJHtNS0RJUn0g JHtXUktESVJ9Ly5uZXctcGxpc3QNCglAY2QgJHtXUktESVJ9Ly5uZXctcGxpc3QgJiYgXA0KCWZv ciBmIGluICR7RElTVEZJTEVTfTsgZG8gXA0KCQlycG0yY3BpbyAke19ESVNURElSfS8kJGYgfCAk e0NQSU99IC1pZCAtLXF1aWV0OyBcDQoJCSR7RklORH0gKiAhIHR5cGUgZCB8ICR7U09SVH0gPiAk e1BMSVNUfS5uZXc7IFwNCgkJJHtGSU5EfSAtZCAqIC10eXBlIGQgfCAke1NFRH0gLWUgJ3N8XnxA ZGlycm0gfCcgPj4gJHtQTElTVH0ubmV3OyBcDQoJZG9uZQ0KDQouaW5jbHVkZSA8YnNkLnBvcnQu cHJlLm1rPg0KDQouaWYgJHtBUkNIfSA9PSAiYW1kNjQiDQpMSU5VWF9BUkNIPz0JaTM4NgkjIHRo ZSBsaW51eHVsYXRvciBkb2VzIG5vdCB5ZXQgc3VwcG9ydCBhbWQ2NCBjb2RlDQouZWxpZiAke0FS Q0h9ID09ICJwb3dlcnBjIg0KTElOVVhfQVJDSD89CXBwYw0KLmVsc2UNCkxJTlVYX0FSQ0g/PQkk e0FSQ0h9DQouZW5kaWYNCg0KLmluY2x1ZGUgPGJzZC5wb3J0LnBvc3QubWs+DQo= --Multipart=_Fri__2_Dec_2005_16_37_34_+0100_fhSp1jdguMFSR4dJ-- --Signature=_Fri__2_Dec_2005_16_37_34_+0100_Fu2vS5M.Xgt7sLJi Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDkGo+yzD7UaO4AGoRAviyAJ9ykLD8qisViHR1mLtw1kN6Rp9WJwCeLMxp RaJ+V+EkPZqB9KB7tUC4Rl8= =7lsU -----END PGP SIGNATURE----- --Signature=_Fri__2_Dec_2005_16_37_34_+0100_Fu2vS5M.Xgt7sLJi-- From owner-freebsd-emulation@FreeBSD.ORG Fri Dec 2 23:46:41 2005 Return-Path: X-Original-To: freebsd-emulation@freebsd.org Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DAF5116A41F for ; Fri, 2 Dec 2005 23:46:41 +0000 (GMT) (envelope-from cajfox@mail.bg) Received: from mx1.mail.bg (mx1.mail.bg [193.201.172.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 193B843D78 for ; Fri, 2 Dec 2005 23:46:35 +0000 (GMT) (envelope-from cajfox@mail.bg) Received: from localhost (web1.mail.bg [193.201.172.98]) by mx1.mail.bg (Postfix) with ESMTP id 1BB1A9000458 for ; Sat, 3 Dec 2005 01:46:34 +0200 (EET) Received: from 117-17-228-83.btc-net.bg (117-17-228-83.btc-net.bg [83.228.17.117]) by mail.bg (mail.bG Webmail 4.0.1) with HTTP for ; Sat, 03 Dec 2005 01:46:33 +0200 Message-ID: <1133567193.697507caa64e8@mail.bg> Date: Sat, 03 Dec 2005 01:46:33 +0200 From: cajfox@mail.bg To: freebsd-emulation@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1251" Content-Disposition: inline Content-Transfer-Encoding: quoted-printable User-Agent: mail.bG Webmail 4.0-cvs X-Originating-IP: 83.228.17.117 Subject: FreeBSD VMWare X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Dec 2005 23:46:42 -0000 I have VMWare for Linux - VMware-workstation-4.0.0-4460.tar.gz. So I have installed the /usr/ports/linux_base port. All was fine with the running of the instllation but at the point where it asks me to input the directory, where "insmod" was and then (as this article says: http://lists.freebsd.org/pipermail/freebsd-emulation/2005-February/000808.ht= ml), where "modprobe" was I can't go any further. What are "insmod" and "modproble"? Everything else with the installation seems fine, until this point. I did the same that the article said, but I can't find "insmod" and "modprobe". Stefan Gerganov, Bulgaria ----------------------------- CBox.biz =CF=F0=EE=EC=EE=F6=E8=FF =CF=EE=F0=FA=F7=E0=E9 =F5=EE=F1=F2=E8=ED=E3 =E8 =F1=EF=E5=F7=E5=EB=E8 1GB Fl= ash Drive =E7=E0 =CA=EE=EB=E5=E4=E0! http://cbox.biz/m1/ From owner-freebsd-emulation@FreeBSD.ORG Fri Dec 2 17:07:34 2005 Return-Path: X-Original-To: emulation@freebsd.org Delivered-To: freebsd-emulation@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 31A9716A425; Fri, 2 Dec 2005 17:07:34 +0000 (GMT) (envelope-from Alexander@Leidinger.net) Received: from www.ebusiness-leidinger.de (jojo.ms-net.de [84.16.236.246]) by mx1.FreeBSD.org (Postfix) with ESMTP id 92B8C43DD1; Fri, 2 Dec 2005 17:06:19 +0000 (GMT) (envelope-from Alexander@Leidinger.net) Received: from Andro-Beta.Leidinger.net (p54A5F66F.dip.t-dialin.net [84.165.246.111]) (authenticated bits=0) by www.ebusiness-leidinger.de (8.13.1/8.13.1) with ESMTP id jB2GdBCe035045; Fri, 2 Dec 2005 17:39:11 +0100 (CET) (envelope-from Alexander@Leidinger.net) Received: from localhost (localhost [127.0.0.1]) by Andro-Beta.Leidinger.net (8.13.3/8.13.3) with ESMTP id jB2H6861030879; Fri, 2 Dec 2005 18:06:08 +0100 (CET) (envelope-from Alexander@Leidinger.net) Received: from pslux.cec.eu.int (pslux.cec.eu.int [158.169.9.14]) by webmail.leidinger.net (Horde MIME library) with HTTP; Fri, 02 Dec 2005 18:06:08 +0100 Message-ID: <20051202180608.nvo7zkvp1wswkcs0@netchild.homeip.net> X-Priority: 3 (Normal) Date: Fri, 02 Dec 2005 18:06:08 +0100 From: Alexander Leidinger To: Jean-Yves Lefort References: <200511261918.jAQJIp91001719@repoman.freebsd.org> <20051201152026.lxwvpjokc0sw0okc@netchild.homeip.net> <20051202121534.44c2c7be.jylefort@FreeBSD.org> <20051202142827.2s3y42ss8w0o0g0o@netchild.homeip.net> <20051202163734.23814a2f.jylefort@FreeBSD.org> In-Reply-To: <20051202163734.23814a2f.jylefort@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: quoted-printable User-Agent: Internet Messaging Program (IMP) H3 (4.0.3) / FreeBSD-4.11 X-Virus-Scanned: by amavisd-new X-Mailman-Approved-At: Sat, 03 Dec 2005 04:29:34 +0000 Cc: ports@freebsd.org Subject: autoamtic plists (was: Re: cvs commit: ports/audio/linux-openal bsd.linux.mk) X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Dec 2005 17:07:34 -0000 Jean-Yves Lefort wrote: Moving to ports, since it's mostly about the generic topic of plist generation at install time. Note for the ports crowth: Jean-Yves is proposing an complete automatic approach for the plist generation (at install time) for a framework for the linux ports (so only static files, no %%FOOBAR%% fodder in the plist). I don't object to the automatic generation of the plist, but I want so see th= e generated plist committed to the ports tree. Discussion below, feel free to chime in. > I am aware of these peculiarities. Ports for which the auto plist > generator is not smart enough (they are a minority) can perfectly > bypass it. As an example, see my own linux ports: Ok, but this doesn't address one of the major concerns which was discussed = on ports@, namely that we can't see which files get installed without downloading the distfile and installing it. See below. >> I suggest: >> - ask portmgr if it is ok to commit the .mk file (not included by >> bsd.port.mk) >> - commit it if approved >> - convert some ports to use it >> - be happe when everything works >> - write a patch for bsd.port.mk (USE_LINUX_RPM) and let portmgr >> run an experimental ports build >> - when portmgr committed the patch convert some ports to use it >> - be happy when everything works >> - convert the rest >> - sit back and enjoy^w^w^w^wtackle another problem > > Good idea. I'm going to ask portmgr if I can commit the attached file, > unless you have more comments. Yes, I have some, so please let's not rush here. > Major changes: > - allow to easily disable auto plist by defining NO_AUTOMATIC_PLIST Can we have it the other way around? Defining AUTOMATIC_PLIST to enable it? The majority (not only the linux ones) of ports still has a plist and havin= g it this way suggests that an automatic plist is the blessed way of the FreeBSD project. But this is not the case (or I'm not aware of recent changes to the porters handbook). See below. > - added new-plist target inspired by linux-gtk > - useful default for MASTER_SITE_SUBDIR (Fedora Core 3) > - use run-ldconfig target and mimic native output > > Note that INSTALLS_SHLIB requires a bsd.port.mk patch, so I still have > to use INSTALLS_LINUX_SHLIB. Ok. >> >> - why do you use different ways of specifying the paths in DESCR >> >> and MD5_FILE? >> >> - why do you specify DESCR at all? >> > >> > The idea is to use the FreeBSD native port's pkg-descr. >> >> I don't think this is good. I think the descr should mention that the po= rts >> provide the linux versions of the port. > > It's obvious from the package name and comment. But once again, people > are free to bypass this helper if they don't like it. It may be obvious for us, but not obvious for others. I like it to be unambiguos. Let's do it the other way around (POLA): If someone want's to override it, he can set it to the FreeBSD port description in the port itself. >> automatic plist generator to write their own plists. It also allows to l= ook >> up the contents of the port without a need to install it. And we're able= to >> answer questions like "which port installs file X". So we get the good >> features of both worlds, don't you think? > > I've added new-plist and NO_AUTOMATIC_PLIST for auto plist haters. This doesn't address the "lookup" and "will-be-installed-by" parts above (o= k, they are the same, but...). These are major topics. You can read on ports@ from this week about someone who tries to write an application which does something like this but has problems because of the automatic plists. Havin= g the static plists (auto-generated or by hand) in the tree, also helps in support requests, since someone with experience just can tell "install port X" to a newbie, even if he doesn't know anything about the port in question himself. So there's demand, and we mostly can satisfy it, but when we go the "all automatic" way, we can't anymore. I can understand that with a really good automatic mechanism, there will be less errors in the plist (specially some like those I produced in the last two weeks), but we can have the good part of this mechanism and the good part of plists in the tree just with the "new-plist" target. Are there any technical arguments which makes it mandatory to use your version of install-time generated plists instead of my proposal to commit the automatically generated plist? Bye, Alexander. -- http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID =3D B0063FE7 http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID =3D 72077137 13: F=C3=BCr Windows optimiert zusammengestellt aus Hardware-Restposten (Kristian K=C3=B6hntopp) From owner-freebsd-emulation@FreeBSD.ORG Sat Dec 3 11:52:53 2005 Return-Path: X-Original-To: freebsd-emulation@freebsd.org Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B1CFB16A41F for ; Sat, 3 Dec 2005 11:52:53 +0000 (GMT) (envelope-from garyj@jennejohn.org) Received: from peedub.jennejohn.org (Jdf01.j.pppool.de [85.74.223.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4CADA43D4C for ; Sat, 3 Dec 2005 11:52:52 +0000 (GMT) (envelope-from garyj@jennejohn.org) Received: from jennejohn.org (localhost [127.0.0.1]) by peedub.jennejohn.org (8.13.4/8.11.6) with ESMTP id jB3BqZus006590; Sat, 3 Dec 2005 12:52:50 +0100 (CET) (envelope-from garyj@jennejohn.org) Message-Id: <200512031152.jB3BqZus006590@peedub.jennejohn.org> X-Mailer: exmh version 2.7.2 01/07/2005 with nmh-1.0.4 To: cajfox@mail.bg In-reply-to: Your message of "Sat, 03 Dec 2005 01:46:33 +0200." <1133567193.697507caa64e8@mail.bg> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sat, 03 Dec 2005 12:52:35 +0100 From: Gary Jennejohn Cc: freebsd-emulation@freebsd.org Subject: Re: FreeBSD VMWare X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Gary Jennejohn List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Dec 2005 11:52:53 -0000 cajfox@mail.bg writes: > I have VMWare for Linux - > VMware-workstation-4.0.0-4460.tar.gz. So I have installed > the /usr/ports/linux_base port. All was fine with the > running of the instllation but at the point where it asks > me to input the directory, where "insmod" was and then (as > this article says: > http://lists.freebsd.org/pipermail/freebsd-emulation/2005-February/000808.html), > where "modprobe" was I can't go any further. What are > "insmod" and "modproble"? Everything else with the > installation seems fine, until this point. I did the same > that the article said, but I can't find "insmod" and > "modprobe". > insmod is like kldload under FreeBSD and tries to install a kernel module. modprobe is a mechanism used by Linux to find a matching module for a specific kernel service. AFAIK FreeBSD does not support running Linux kernel modules so you can forget about trying to run the Linux version of VMWare by just installing it directly. There's a lot of magic involved to get VMWare running under FreeBSD. Currently the latest version supported in the ports tree is VMWare 3 (/usr/ports/emulators/vmware3). However, check out this site: http://www.break.net/orlando/freebsd.html --- Gary Jennejohn / garyjATjennejohnDOTorg gjATfreebsdDOTorg garyjATdenxDOTde From owner-freebsd-emulation@FreeBSD.ORG Sat Dec 3 13:56:03 2005 Return-Path: X-Original-To: freebsd-emulation@freebsd.org Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9A59216A41F for ; Sat, 3 Dec 2005 13:56:03 +0000 (GMT) (envelope-from Alexander@Leidinger.net) Received: from www.ebusiness-leidinger.de (jojo.ms-net.de [84.16.236.246]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2DFC243D5F for ; Sat, 3 Dec 2005 13:56:01 +0000 (GMT) (envelope-from Alexander@Leidinger.net) Received: from Andro-Beta.Leidinger.net (p54A5D9CB.dip.t-dialin.net [84.165.217.203]) (authenticated bits=0) by www.ebusiness-leidinger.de (8.13.1/8.13.1) with ESMTP id jB3DSoRs044541; Sat, 3 Dec 2005 14:28:51 +0100 (CET) (envelope-from Alexander@Leidinger.net) Received: from Magellan.Leidinger.net (Magellan.Leidinger.net [192.168.1.1]) by Andro-Beta.Leidinger.net (8.13.3/8.13.3) with ESMTP id jB3DtuVM004723; Sat, 3 Dec 2005 14:55:56 +0100 (CET) (envelope-from Alexander@Leidinger.net) Date: Sat, 3 Dec 2005 14:55:56 +0100 From: Alexander Leidinger To: Ulrich Spoerlein Message-ID: <20051203145556.36a7b78f@Magellan.Leidinger.net> In-Reply-To: <20051201213117.GC1083@galgenberg.net> References: <17284.32307.784247.207350@jerusalem.litteratus.org> <20051124105440.cqdu7ydpc084kgsc@netchild.homeip.net> <20051124125951.GD1054@galgenberg.net> <20051124180627.665225aa@Magellan.Leidinger.net> <20051201213117.GC1083@galgenberg.net> X-Mailer: Sylpheed-Claws 1.9.100 (GTK+ 2.8.8; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new Cc: freebsd-emulation@freebsd.org Subject: Re: Patch for emulators/linux_base-8 (was Re: warning) X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Dec 2005 13:56:03 -0000 On Thu, 1 Dec 2005 22:31:17 +0100 Ulrich Spoerlein wrote: > Alexander Leidinger wrote: > > > The fix is, to tell /compat/linux/etc/nsswitch.conf to look at NIS too. > > > > Besides the fact that I don't use NIS and that UID 0 is in my passwd > > file: feel free to send a patch which takes /etc/nsswitch.conf and > > generates an appropriate /compat/linux one. > > I don't know enough about nsswitch to take all side effects into > account, therefore I settled for the cheap solution ... Committed. Thanks, Alexander. -- I believe the technical term is "Oops!" http://www.Leidinger.net Alexander @ Leidinger.net GPG fingerprint = C518 BC70 E67F 143F BE91 3365 79E2 9C60 B006 3FE7 From owner-freebsd-emulation@FreeBSD.ORG Sat Dec 3 14:12:42 2005 Return-Path: X-Original-To: emulation@freebsd.org Delivered-To: freebsd-emulation@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B192C16A41F; Sat, 3 Dec 2005 14:12:42 +0000 (GMT) (envelope-from Alexander@Leidinger.net) Received: from www.ebusiness-leidinger.de (jojo.ms-net.de [84.16.236.246]) by mx1.FreeBSD.org (Postfix) with ESMTP id B347243D45; Sat, 3 Dec 2005 14:12:40 +0000 (GMT) (envelope-from Alexander@Leidinger.net) Received: from Andro-Beta.Leidinger.net (p54A5D9CB.dip.t-dialin.net [84.165.217.203]) (authenticated bits=0) by www.ebusiness-leidinger.de (8.13.1/8.13.1) with ESMTP id jB3DjTq1044616; Sat, 3 Dec 2005 14:45:31 +0100 (CET) (envelope-from Alexander@Leidinger.net) Received: from Magellan.Leidinger.net (Magellan.Leidinger.net [192.168.1.1]) by Andro-Beta.Leidinger.net (8.13.3/8.13.3) with ESMTP id jB3ECbaT007956; Sat, 3 Dec 2005 15:12:37 +0100 (CET) (envelope-from Alexander@Leidinger.net) Date: Sat, 3 Dec 2005 15:12:37 +0100 From: Alexander Leidinger To: Bill Fenner Message-ID: <20051203151237.1b4b1efe@Magellan.Leidinger.net> In-Reply-To: <200512020623.jB26NTle065552@freefall.freebsd.org> References: <200512020623.jB26NTle065552@freefall.freebsd.org> X-Mailer: Sylpheed-Claws 1.9.100 (GTK+ 2.8.8; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new Cc: emulation@freebsd.org Subject: Re: Update request: linux-XFree86-libs X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Dec 2005 14:12:42 -0000 On Fri, 2 Dec 2005 06:23:29 GMT Bill Fenner wrote: > linux-XFree86-libs has the dubious honor of having the #3 most > unfetchable file: Done, Alexander. -- Where do you think you're going today? http://www.Leidinger.net Alexander @ Leidinger.net GPG fingerprint = C518 BC70 E67F 143F BE91 3365 79E2 9C60 B006 3FE7