Displaying 4 results from an estimated 4 matches for "d_gdi32_".
2004 Sep 16
1
Error compiling "`FT_ENCODING_NONE' undeclared"
Here is where it happened:
---
gcc -c -I. -I. -I../../include -I../../include -I/usr/include/freetype2
-D__WINESRC__ -D_GDI32_ -D_REENTRANT -fPIC -Wall -pipe
-mpreferred-stack-boundary=2 -fno-strict-aliasing -gstabs+ -Wpointer-arith -g
-O2 -o freetype.o freetype.c
freetype.c: In function `get_glyph_index':
freetype.c:2189: `FT_ENCODING_NONE' undeclared (first use in this function)
freetype.c:2189: (Each undeclar...
2009 Jun 25
1
error: ‘FT_MulFix’ undeclared here
...three, following error comes:
********************************************
make[2]: Leaving directory `/home/manoj/wine-1.0.1/dlls/fusion'
make[2]: Entering directory `/home/manoj/wine-1.0.1/dlls/gdi32'
gcc -c -I. -I. -I../../include -I../../include -I/usr/include/freetype2 -D__WINESRC__ -D_GDI32_ -D_REENTRANT -fPIC -Wall -pipe -fno-strict-aliasing -Wdeclaration-after-statement -Wwrite-strings -Wtype-limits -Wpointer-arith -g -O2 -o freetype.o freetype.c
freetype.c:166: error: ?FT_MulFix? undeclared here (not in a function)
freetype.c:166: warning: type defaults to ?int? in declaration of...
2010 Jun 20
4
I can compile old wine from download page, but not from git?
Hello again.
The problem is - when I download wine - let say 0.9.53 from here:
http://ibiblio.org/pub/linux/system/emulators/wine/wine-0.9.53.tar.bz2
I can compile it on Debian Lenny without problems, however - when I use git like this:
git clone git://source.winehq.org/git/wine.git wine-git
cd wine-git
git-reset wine-0.9.53
git checkout -f
./configure && make depend && make
I
2011 Jun 20
2
Re: Help compiling an older version of wine on 64 bit Fedora 14
...usual way:
Code:
./configure --prefix "/home/mythtv/.oldwine" && make depend && make && make install
however this generated the following error during build.
Code:
gcc -m32 -c -I. -I. -I../../include -I../../include -I/usr/include/freetype2 -D__WINESRC__ -D_GDI32_ -D_REENTRANT -fPIC -Wall -pipe -fno-strict-aliasing -Wdeclaration-after-statement -Wwrite-strings -Wtype-limits -Wpointer-arith -g -O2 -o freetype.o freetype.c
freetype.c:166:14: error: ?FT_MulFix? undeclared here (not in a function)
freetype.c:166:1: warning: type defaults to ?int? in declaratio...