From owner-freebsd-current@FreeBSD.ORG Fri Sep 29 17:26:54 2006 Return-Path: X-Original-To: freebsd-current@freebsd.org Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8333916A47C for ; Fri, 29 Sep 2006 17:26:54 +0000 (UTC) (envelope-from absorbb@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.184]) by mx1.FreeBSD.org (Postfix) with ESMTP id D83CC43D6E for ; Fri, 29 Sep 2006 17:26:50 +0000 (GMT) (envelope-from absorbb@gmail.com) Received: by nf-out-0910.google.com with SMTP id n29so1072415nfc for ; Fri, 29 Sep 2006 10:26:49 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:from:to:subject:date:user-agent:references:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:message-id; b=dyq+7/DoCUWoeAydIj6Muwin7gqe+Ng8FDfQe0P43XZRnMsA7IEEoQrCR0WKEelKmjJJLoYwhAwzxG9zcHp+JDS1BwugxhB4dxr54yp6/9tHrO7z5jaskGyCGp1GZg75qEf3RRX89rrUze82WDuyJmWTEFVEVK8IUQZiRb9B4Eg= Received: by 10.78.201.8 with SMTP id y8mr2596129huf; Fri, 29 Sep 2006 10:26:49 -0700 (PDT) Received: from localhost ( [195.91.168.1]) by mx.gmail.com with ESMTP id 2sm2564891hue.2006.09.29.10.26.48; Fri, 29 Sep 2006 10:26:49 -0700 (PDT) From: =?koi8-r?b?6czYxMHSIO7V0snTzMHNz9c=?= To: freebsd-current@freebsd.org Date: Fri, 29 Sep 2006 21:26:17 +0400 User-Agent: KMail/1.9.4 References: <1159546633.1883.4.camel@wbemfkaa.net.xtra-net.be> <451D4B4A.7090602@inode.at> <1159550277.1883.6.camel@wbemfkaa.net.xtra-net.be> In-Reply-To: <1159550277.1883.6.camel@wbemfkaa.net.xtra-net.be> MIME-Version: 1.0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200609292126.17694.absorbb@gmail.com> Subject: Re: linux flashplayer plugin status ? X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Sep 2006 17:26:54 -0000 There is patch (tested on 6.1. May require little changes for 6.2) apply it and then do "make install clean" in "/usr/src/libexec" : --- libexec/rtld-elf/rtld.c.orig Fri Sep 24 08:04:52 2004 +++ libexec/rtld-elf/rtld.c Sun Oct 17 03:37:44 2004 @@ -129,6 +129,7 @@ static void unref_dag(Obj_Entry *); static void ref_dag(Obj_Entry *); +void *_dlsym(void *, const char *); void r_debug_state(struct r_debug*, struct link_map*); /* @@ -177,6 +178,7 @@ (func_ptr_type) &dlclose, (func_ptr_type) &dlerror, (func_ptr_type) &dlopen, + (func_ptr_type) &_dlsym, (func_ptr_type) &dlsym, (func_ptr_type) &dladdr, (func_ptr_type) &dllockinit, @@ -1736,6 +1738,12 @@ trace_loaded_objects(obj); wlock_release(rtld_bind_lock, lockstate); exit(0); +} + +void * +_dlsym(void *handle, const char *name) +{ + return dlsym(handle, name); } void * > waiting another solution, I will use netscape for sites using flash > technologies. > > thanks :-) > > On Fri, 2006-09-29 at 18:35 +0200, Armin Pirkovitsch wrote: > > Vincent Blondel wrote: > > > Hello all, > > > > > > I am trying to install linux flash player plugin but I encounter this > > > kind of error when compiling linuxpluginwrapper. > > > > > > root@wbemfkaa [/usr/ports/www/linuxpluginwrapper] $ make install > > > ===> linuxpluginwrapper-20051113_5 doesn't support ELF symbol > > > versioning, yet.. > > > *** Error code 1 > > > > > > Stop in /usr/ports/www/linuxpluginwrapper. > > > root@wbemfkaa [/usr/ports/www/linuxpluginwrapper] $ > > > > > > Can somebody give me the status for installing linux flashplayer plugin > > > on freebsd-current system. > > > > > > I see lots of discussion on the net but no workaround to get it > > > working. > > > > well the only workaround is imho to install a linux-binary browser and > > use the plugin there... > > _______________________________________________ > freebsd-current@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-current > To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org"