From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Message-ID: <41EFCCA6.5010505@list.ru> Date: Thu, 20 Jan 2005 18:22:14 +0300 From: Genix User-Agent: Mozilla Thunderbird 0.6 (X11/20040511) X-Accept-Language: en-us, en MIME-Version: 1.0 To: ALT Devel discussion list Subject: Re: [devel] =?KOI8-R?Q?=EE=C1=CC=C5=D4=C1=CA=2C_=D0=C1=CB=C5=D4?= =?KOI8-R?Q?=D9_=D2=C1=DA=C4=C1=C0=D4=D3=D1_=3A=29?= References: <20050117162946.GA6699@basalt.office.altlinux.org> <2560654.20050117194901@altlinux.ru> <20050117170348.GA27548@basalt.office.altlinux.org> <20050118183538.GA7551@mithraen.dimline.ru> <20050118183940.GA29365@basalt.office.altlinux.org> <20050119102053.GE7501@basalt.office.altlinux.org> <20050119135436.GD14631@mithraen.dimline.ru> <20050119135448.GB13492@basalt.office.altlinux.org> <20050120143845.GA390@mithraen.dimline.ru> In-Reply-To: <20050120143845.GA390@mithraen.dimline.ru> Content-Type: multipart/mixed; boundary="------------010903030403090305050709" X-OriginalArrivalTime: 20 Jan 2005 15:24:50.0979 (UTC) FILETIME=[2F2F2F30:01C4FF04] X-BeenThere: devel@altlinux.ru X-Mailman-Version: 2.1.5 Precedence: list Reply-To: ALT Devel discussion list List-Id: ALT Devel discussion list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jan 2005 15:24:51 -0000 Archived-At: List-Archive: List-Post: This is a multi-part message in MIME format. --------------010903030403090305050709 Content-Type: text/plain; charset=KOI8-R; format=flowed Content-Transfer-Encoding: 8bit Denis Smirnov wrote: > Попробовал. Решить обе проблемы (как с encfs, так и с gsmlib) мне слабо. > > Так как я gsmlib не использую сейчас совсем, то либо кто-нибудь его > подхватит, либо в orphaned. собирается с этим патчем, только нужно иметь в виду что он (оригинал) был для другой версии (1.11) Патч взят из gentoo -- У каждого в башке свои тараканы... --------------010903030403090305050709 Content-Type: text/x-patch; name="gsmlib-1.11-include-gcc34-fix.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="gsmlib-1.11-include-gcc34-fix.patch" --- gsmlib-1.10/gsmlib/gsm_map_key.h 2002-05-14 23:38:12.000000000 +0400 +++ gsmlib-1.10-fixed/gsmlib/gsm_map_key.h 2004-08-02 00:56:40.997784696 +0400 @@ -25,6 +25,16 @@ // wrapper for map key, can access Sortedtore to get sortOrder() + // compare two keys + template class MapKey; + + template + bool operator<(const MapKey &x, + const MapKey &y); + template + bool operator==(const MapKey &x, + const MapKey &y); + template class MapKey { SortedStore &_myStore; // my store @@ -47,20 +57,16 @@ friend bool operator< -#ifndef WIN32 - <> -#endif + (const MapKey &x, const MapKey &y); friend bool operator== -#ifndef WIN32 - <> -#endif + (const MapKey &x, const MapKey &y); }; - +/* // compare two keys template extern bool operator<(const MapKey &x, @@ -68,7 +74,7 @@ template extern bool operator==(const MapKey &x, const MapKey &y); - + */ // MapKey members template --------------010903030403090305050709--