Libgsm Dev 32 bit libs on 64 bit

Open forum for end-user questions about Wine. Before asking questions, check out the Wiki as a first step.
Forum Rules
Locked
MacNean Tyrrell

Libgsm Dev 32 bit libs on 64 bit

Post by MacNean Tyrrell »

Ubuntu 9.04, can't find the libgsm-dev for 32 bit, i installed the
libgsm1-dev but believe that is 64 bit, any help would be appreaciated.

--
Sincerely,

MacNean C. Tyrrell
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://www.winehq.org/pipermail/wine-us ... chment.htm>
Snake450
Level 3
Level 3
Posts: 90
Joined: Wed Jul 15, 2009 3:11 pm

Post by Snake450 »

Are you having problems with a program not working properly or are you just asking? cause libgsm-dev comes with libgsm1-dev.
MacNean Tyrrell

Libgsm Dev 32 bit libs on 64 bit

Post by MacNean Tyrrell »

On Sat, Aug 8, 2009 at 8:21 PM, Snake450 <wineforum-user@winehq.org> wrote:
Are you having problems with a program not working properly or are you just
asking? cause libgsm-dev comes with libgsm1-dev.
I'm trying to compile 1.1.27, and I run ./configure and get

configure: WARNING: libgsm 32-bit development files not found, gsm 06.10
codec won't be supported.

So trying to figure out how to install those on 64 bit unbuntu.

--
Sincerely,

MacNean C. Tyrrell
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://www.winehq.org/pipermail/wine-us ... chment.htm>
jgardia
Newbie
Newbie
Posts: 1
Joined: Tue Aug 11, 2009 10:25 am

Re: Libgsm Dev 32 bit libs on 64 bit

Post by jgardia »

So trying to figure out how to install those on 64 bit unbuntu.
Hi,
did you manage to make it work? I'm receving the same error.

Thanks!

Jose
MacNean Tyrrell

Libgsm Dev 32 bit libs on 64 bit

Post by MacNean Tyrrell »

On Tue, Aug 11, 2009 at 11:29 AM, jgardia <wineforum-user@winehq.org> wrote:
So trying to figure out how to install those on 64 bit unbuntu.
Hi,
did you manage to make it work? I'm receving the same error.
No I haven't figured it out yet. Just compiled it without that for now.
Posting something in the ubuntu forums today, had been busy getting ready
for a 2 week trip.
Thanks!

Jose





--
Sincerely,

MacNean C. Tyrrell
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://www.winehq.org/pipermail/wine-us ... chment.htm>
mushroomboy
Level 2
Level 2
Posts: 11
Joined: Tue Aug 11, 2009 8:59 pm

Post by mushroomboy »

I got it to compile on Debian.... First off, for debian the ia32-libs have changed.... /emul/ia32-linux is depreciated and there for doesn't need to be there, so syslink /emul/ia32-linux/usr/lib to /usr/lib32 should do you some good (unless your /usr/lib32 is a syslink =P).

Ok now that that's there, you will want to run the following command:

apt-get build-dep wine

That only takes care of part of the solution, the rest of the missing libraries will have to be done manually by extracting the i386 debs and putting the files in the appropriate lib dir. IA extract libgsm to /somehomefolder/libgsm now that should have a lib and /usr/lib in it, those go to the proper places such as /lib32 and /usr/lib32, I don't think you need to copy anything else, but if you have extra stuff copy it to it's respective folders too, but don't overwright anything (that's what I did).

Oh, and grab gcc-4.3 multilib if you don't have it already.

Now you should be able to run:

CC="gcc-4.3 -m32" ./configure
MacNean Tyrrell

Libgsm Dev 32 bit libs on 64 bit

Post by MacNean Tyrrell »

On Tue, Aug 11, 2009 at 10:06 PM, mushroomboy <wineforum-user@winehq.org>wrote:
I got it to compile on Debian.... First off, for debian the ia32-libs have
changed.... /emul/ia32-linux is depreciated and there for doesn't need to be
there, so syslink /emul/ia32-linux/usr/lib to /usr/lib32 should do you some
good (unless your /usr/lib32 is a syslink =P).

Ok now that that's there, you will want to run the following command:

apt-get build-dep wine

That only takes care of part of the solution, the rest of the missing
libraries will have to be done manually by extracting the i386 debs and
putting the files in the appropriate lib dir. IA extract libgsm to
/somehomefolder/libgsm now that should have a lib and /usr/lib in it, those
go to the proper places such as /lib32 and /usr/lib32, I don't think you
need to copy anything else, but if you have extra stuff copy it to it's
respective folders too, but don't overwright anything (that's what I did).
Where did you get libgsm from tho? I have run apt-get build-deb wine, I
compiled 1.1.21-1.1.26 all fine before, .27 compiled fine it just didn't
have the GSM codec compiled in.
Oh, and grab gcc-4.3 multilib if you don't have it already.

Now you should be able to run:

CC="gcc-4.3 -m32" ./configure





--
Sincerely,

MacNean C. Tyrrell
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://www.winehq.org/pipermail/wine-us ... chment.htm>
mushroomboy
Level 2
Level 2
Posts: 11
Joined: Tue Aug 11, 2009 8:59 pm

Post by mushroomboy »

at the debian website of course:

http://packages.debian.org/squeeze/libgsm1

If you read I state it only takes care of part of the solution, the rest is done by manually extracting the debs ect... I literally mean find the individual debs however, download, extract, copy and paste. It's a very dirty way of doing it, but it works, and that's all I care about. =P
Locked