similar to: Re: Help compiling an older version of wine on 64 bit Fedora 14

Displaying 20 results from an estimated 600 matches similar to: "Re: Help compiling an older version of wine on 64 bit Fedora 14"

2010 Dec 28
5
compile wine 1.1.1
I need help to compile wine 1.1.1 but I got this: Code: freetype.c:166: error: ?FT_MulFix? undeclared here (not in a function) freetype.c:166: warning: type defaults to ?int? in declaration of ?pFT_MulFix? freetype.c: In function ?WineEngGetOutlineTextMetrics?: freetype.c:5009: error: called object ?pFT_MulFix? is not a function freetype.c:5010: error: called object ?pFT_MulFix? is not a
2009 Jun 25
1
error: ‘FT_MulFix’ undeclared here
Hi, I am using ubuntu 9.04. I have installed ubuntu 9.04. And then downloaded wine-1.0.1.tar.bz2 from winhq/download site. Then follow following steps: 1) Untar files: tar jxvf wine-1.0.1.tar.bz2 2) cd wine-1.0.1/ 3) ./tools/wineinstall During step three, following error comes: ******************************************** make[2]: Leaving directory `/home/manoj/wine-1.0.1/dlls/fusion'
2017 Dec 09
2
Reducing code size of Position Independent Executables (PIE) by shrinking the size of dynamic relocations section
* Rahul Chaudhry via gnu-gabi: > The encoding used is a simple combination of delta-encoding and a > bitmap of offsets. The section consists of 64-bit entries: higher > 8-bits contain delta since last offset, and lower 56-bits contain a > bitmap for which words to apply the relocation to. This is best > described by showing the code for decoding the section: > > typedef
2017 Dec 07
0
Reducing code size of Position Independent Executables (PIE) by shrinking the size of dynamic relocations section
Sri and I have been working on this over the past few months, and we've made some good progress that we'd like to share and get feedback on. Our work is based on the 'experimental-relr' prototype from Cary that is available at 'users/ccoutant/experimental-relr' branch in the binutils repository [1], and was described earlier in this thread:
2018 May 23
0
[PATCH v3 18/27] xen: Adapt assembly for PIE support
Change the assembly code to use the new _ASM_MOVABS macro which get a symbol reference while being PIE compatible. Adapt the relocation tool to ignore 32-bit Xen code. Position Independent Executable (PIE) support will allow to extended the KASLR randomization range below the -2G memory limit. Signed-off-by: Thomas Garnier <thgarnie at google.com> --- arch/x86/tools/relocs.c | 16
2017 Dec 11
2
Reducing code size of Position Independent Executables (PIE) by shrinking the size of dynamic relocations section
A simple combination of delta-encoding and run_length-encoding is one of the first schemes we experimented with (32-bit entries with 24-bit 'delta' and an 8-bit 'count'). This gave really good results, but as Sri mentions, we observed several cases where the relative relocations were not on consecutive offsets. There were common cases where the relocations applied to alternate
2012 Mar 17
4
Help me patch wine
Ok, Im following this tutorial: http://ace-client.net/viewtopic.php?f=26&t=34 But when I try to apply patch I get this: > [jan at janpc Games]$ patch -p1 <'/home/jan/Games/wine-1.3.36/winepatch.patch' > can't find file to patch at input line 11 > Perhaps you used the wrong -p or --strip option? > The text leading up to this was: > --------------------------
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
2017 May 08
4
Reducing code size of Position Independent Executables (PIE) by shrinking the size of dynamic relocations section
+llvm-dev Discussion here: https://sourceware.org/ml/gnu-gabi/2017-q2/msg00000.html On Tue, May 2, 2017 at 10:17 AM, Suprateeka R Hegde <hegdesmailbox at gmail.com> wrote: > On 02-May-2017 12:05 AM, Florian Weimer wrote: >> On 05/01/2017 08:28 PM, Suprateeka R Hegde wrote: >>> So the ratio shows ~96% is RELATIVE reloc. And only ~4% others. This is >>> not the
2011 Mar 03
4
Future Tax Regression
Hi to all, I'm trying to run a Canadian income tax program called FutureTax2010 (www.futuretax.ca) under wine 1.2 and 1.3 beta, but there appears to be a regression. It runs under wine 1.0.1, and loads OK under 1.3, but when I try to open an existing (known valid) file FT pops up a message box that says "An unsupported operation was attempted". A screen shot of the end result of
2009 Dec 18
40
Fallen Earth
http://www.fallenearth.com/ Can some one help me get this running =? I want to play it . Cant get the launcher to work , Installs fine . I have play this on linux under beta . Thanks
2008 Apr 14
2
Viewing .CHM files with hh.exe from command line
I would like to be able to start the Wine .chm file-viewer, C:\windows\hh.exe, from the command-line like this: wine hh.exe /some/dir/somefile.chm It works if the current directory contains the .chm file, but not if I have to specify a path. Am I missing something?
2018 Mar 13
32
[PATCH v2 00/27] x86: PIE support and option to extend KASLR randomization
Changes: - patch v2: - Adapt patch to work post KPTI and compiler changes - Redo all performance testing with latest configs and compilers - Simplify mov macro on PIE (MOVABS now) - Reduce GOT footprint - patch v1: - Simplify ftrace implementation. - Use gcc mstack-protector-guard-reg=%gs with PIE when possible. - rfc v3: - Use --emit-relocs instead of -pie to reduce
2018 Mar 13
32
[PATCH v2 00/27] x86: PIE support and option to extend KASLR randomization
Changes: - patch v2: - Adapt patch to work post KPTI and compiler changes - Redo all performance testing with latest configs and compilers - Simplify mov macro on PIE (MOVABS now) - Reduce GOT footprint - patch v1: - Simplify ftrace implementation. - Use gcc mstack-protector-guard-reg=%gs with PIE when possible. - rfc v3: - Use --emit-relocs instead of -pie to reduce
2017 Oct 04
28
x86: PIE support and option to extend KASLR randomization
These patches make the changes necessary to build the kernel as Position Independent Executable (PIE) on x86_64. A PIE kernel can be relocated below the top 2G of the virtual address space. It allows to optionally extend the KASLR randomization range from 1G to 3G. Thanks a lot to Ard Biesheuvel & Kees Cook on their feedback on compiler changes, PIE support and KASLR in general. Thanks to
2017 Oct 04
28
x86: PIE support and option to extend KASLR randomization
These patches make the changes necessary to build the kernel as Position Independent Executable (PIE) on x86_64. A PIE kernel can be relocated below the top 2G of the virtual address space. It allows to optionally extend the KASLR randomization range from 1G to 3G. Thanks a lot to Ard Biesheuvel & Kees Cook on their feedback on compiler changes, PIE support and KASLR in general. Thanks to
2018 May 23
33
[PATCH v3 00/27] x86: PIE support and option to extend KASLR randomization
Changes: - patch v3: - Update on message to describe longer term PIE goal. - Minor change on ftrace if condition. - Changed code using xchgq. - patch v2: - Adapt patch to work post KPTI and compiler changes - Redo all performance testing with latest configs and compilers - Simplify mov macro on PIE (MOVABS now) - Reduce GOT footprint - patch v1: - Simplify ftrace
2005 Nov 18
0
WIne 0.9x crash on make
I've downloaded wine 0.9.1 recently, after having used the last pre-.9 CVS drop for about a month or so, but the 0.9 version won't compile on my system. It conks out with an error in the loader subdir (actual data below). The following is the output I get when I run make: ------------------------------------------------------------------------------------- bas@pairadocs
2009 Apr 12
4
Problem to compile wine on hardened sources
I got some problem with wine (since wine 1.1.13) on hardened-sources ... actually using ... kernel -> 2.6.28-hardened-r7 #1 SMP Mon Apr 6 17:41:50 CEST 2009 x86_64 gcc -> x86_64-pc-linux-gnu-3.4.6-hardened Code: __bb_init_func': preloader.c:(.text+0x4f): undefined reference to `__guard' preloader.c:(.text+0x70): undefined reference to `__stack_smash_handler' preloader.o: In
2008 Jun 18
1
Avaya IPSoftPhone
Has anyone had any luck getting the Avaya IP SoftPhone to work in wine? I get these errors on Ubuntu 8 Code: preloader: Warning: failed to reserve range 00000000-60000000 wine: creating configuration directory '/home/microchp/.wine'... preloader: Warning: failed to reserve range 00000000-60000000 preloader: Warning: failed to reserve range 00000000-60000000 err:dosmem:setup_dos_mem