Wine Libs don't exist anywhere on my system

Questions about Wine on Linux
Locked
noahadvs
Newbie
Newbie
Posts: 3
Joined: Sun Sep 30, 2012 7:47 am

Wine Libs don't exist anywhere on my system

Post by noahadvs »

Hi I know people have asked this before and that the answer was to look in /usr/lib32, but I've searched my ENTIRE system and there are NO wine libs. I have root access and hidden files enabled so I know I couldn't have missed anything. Is there an extra package that I need to install? I need to find them because I want to compile WineASIO 0.9.0. I'm using Xubuntu 12.04 64 bit and I've tried wine 1.4.1 and 1.5.14 from the wine repos. I have 1.5.14 installed right now.

This is what I get when I try

Code: Select all

make
and

Code: Select all

sudo make install
(I've removed my personal info)

Code: Select all

____@_________-p7-1054:~/Downloads/wineasio$ make
gcc -c -I. -I/usr/include -I/usr/include -I/usr/include/wine -I/usr/include/wine/windows    -m32 -g -O2 -D__WINESRC__ -D_REENTRANT -fPIC -Wall -pipe -fno-strict-aliasing -Wdeclaration-after-statement -Wwrite-strings -Wpointer-arith -o asio.o asio.c
In file included from /usr/include/stdio.h:28:0,
                 from asio.c:33:
/usr/include/features.h:324:26: fatal error: bits/predefs.h: No such file or directory
compilation terminated.
make: *** [asio.o] Error 1
____@_________-p7-1054:~/Downloads/wineasio$ sudo make install
[sudo] password for noah: 
if [ -d /usr/lib32/wine ]; then cp wineasio.dll.so /usr/lib32/wine; else cp wineasio.dll.so /usr/lib/wine; fi
cp: cannot stat `wineasio.dll.so': No such file or directory
make: *** [install] Error 1
____@_________-p7-1054:~/Downloads/wineasio$ 
User avatar
dimesio
Moderator
Moderator
Posts: 13367
Joined: Tue Mar 25, 2008 10:30 pm

Re: Wine Libs don't exist anywhere on my system

Post by dimesio »

WineASIO is not part of Wine and is not supported here. I believe they have a mailing list for support.
noahadvs
Newbie
Newbie
Posts: 3
Joined: Sun Sep 30, 2012 7:47 am

Re: Wine Libs don't exist anywhere on my system

Post by noahadvs »

I know, but the wine libs are part of Wine and I'm trying to find them.
lahmbi5678
Level 7
Level 7
Posts: 823
Joined: Thu Aug 27, 2009 6:23 am

Re: Wine Libs don't exist anywhere on my system

Post by lahmbi5678 »

Hi,

you really should ask the question in a Ubuntu and/or Wineasio forum. Please note, that wineasio wasn't even successully built in your case. First you should sort out the error message about

Code: Select all

/usr/include/features.h:324:26: fatal error: bits/predefs.h: No such file or directory

Maybe it's something like in http://ubuntuforums.org/showthread.php?t=1877944 .
noahadvs
Newbie
Newbie
Posts: 3
Joined: Sun Sep 30, 2012 7:47 am

Re: Wine Libs don't exist anywhere on my system

Post by noahadvs »

Yeah I already found out what the problem was and I fixed it. Thanks anyway though. I still want to know where I can find the wine libs though.
Locked