Codebase list lwjgl / 83cc43d
add patch for 807420 - FTBFS on ppc64el tony mancill 8 years ago
3 changed file(s) with 33 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 lwjgl (2.7.1+dfsg-4.1) UNRELEASED; urgency=medium
1
2 * Non-maintainer upload.
3 * debian/patches/ppc64el.patch: patch adds cflag -mcpu=powerpc
4 when on target compiledeb on ppc64le, to fix ftbfs on ppc64el
5
6 -- Fernando Seiti Furusato <ferseiti@br.ibm.com> Tue, 08 Dec 2015 10:57:30 -0500
7
08 lwjgl (2.7.1+dfsg-4) unstable; urgency=low
19
210 * Update packaging standards.
0 Index: lwjgl-2.7.1+dfsg/platform_build/linux_ant/build.xml
1 ===================================================================
2 --- lwjgl-2.7.1+dfsg.orig/platform_build/linux_ant/build.xml
3 +++ lwjgl-2.7.1+dfsg/platform_build/linux_ant/build.xml
4 @@ -23,6 +23,10 @@
5 <exec executable="uname" outputproperty="hwplatform">
6 <arg value="-m"/>
7 </exec>
8 + <condition property="cflags_ppc64le" value="-mcpu=powerpc -m64" else="">
9 + <os arch="ppc64le"/>
10 + </condition>
11 + <echo message="value of arch is ${os.arch} the value of hwplatform is ${hwplatform} and cflags32 ${cflags32}" />
12 <condition property="xf86vm_lib" value="-lXxf86vm" else="-Wl,-static,-lXxf86vm,-call_shared">
13 <os name="SunOS" />
14 </condition>
15 @@ -124,7 +128,7 @@
16 <target name="compiledeb">
17 <mkdir dir="deb"/>
18 <apply dir="deb" executable="gcc" skipemptyfilesets="true" failonerror="true">
19 - <arg line="${cflags32} ${cflags_pthread}"/>
20 + <arg line="${cflags32} ${cflags_pthread} ${cflags_ppc64le}"/>
21 <arg value="-I${java.home}/include"/>
22 <arg value="-I${java.home}/include/linux"/>
23 <arg value="-I${java.home}/../include"/>
11 allarchs.patch
22 systemjinput.patch
33 javadoc.patch
4 ppc64el.patch