From: <ka...@us...> - 2011-04-16 16:41:25
|
Revision: 3515 http://java-game-lib.svn.sourceforge.net/java-game-lib/?rev=3515&view=rev Author: kappa1 Date: 2011-04-16 16:41:19 +0000 (Sat, 16 Apr 2011) Log Message: ----------- ANT build : switch to using the 10.4 sdk instead of the 10.3 one for ppc builds Modified Paths: -------------- trunk/LWJGL/platform_build/macosx_ant/build.xml Modified: trunk/LWJGL/platform_build/macosx_ant/build.xml =================================================================== --- trunk/LWJGL/platform_build/macosx_ant/build.xml 2011-04-08 03:41:19 UTC (rev 3514) +++ trunk/LWJGL/platform_build/macosx_ant/build.xml 2011-04-16 16:41:19 UTC (rev 3515) @@ -43,7 +43,7 @@ <target name="nativelibrary" depends="init"> <property name="universal_sdkroot" location="/Developer/SDKs/MacOSX10.4u.sdk"/> - <property name="ppc_sdkroot" location="/Developer/SDKs/MacOSX10.3.9.sdk"/> + <property name="ppc_sdkroot" location="/Developer/SDKs/MacOSX10.4u.sdk"/> <property name="x86_64_sdkroot" location="/Developer/SDKs/MacOSX10.5.sdk"/> <property name="universal_flags" value="-isysroot ${universal_sdkroot}"/> <property name="ppc_flags" value="-isysroot ${ppc_sdkroot}"/> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sp...@us...> - 2011-07-10 18:48:29
|
Revision: 3564 http://java-game-lib.svn.sourceforge.net/java-game-lib/?rev=3564&view=rev Author: spasi Date: 2011-07-10 18:48:23 +0000 (Sun, 10 Jul 2011) Log Message: ----------- Attempt to fix MacOS build. Modified Paths: -------------- trunk/LWJGL/platform_build/macosx_ant/build.xml Modified: trunk/LWJGL/platform_build/macosx_ant/build.xml =================================================================== --- trunk/LWJGL/platform_build/macosx_ant/build.xml 2011-07-10 18:18:51 UTC (rev 3563) +++ trunk/LWJGL/platform_build/macosx_ant/build.xml 2011-07-10 18:48:23 UTC (rev 3564) @@ -26,6 +26,7 @@ <fileset dir="${native}/macosx" includes="*.m"/> <fileset dir="${native}/macosx" includes="*.c"/> <fileset dir="${native}/common" includes="*.c"/> + <fileset dir="${native}/common/opengl" includes="*.c"/> <fileset dir="${native}/generated/openal" includes="*.c"/> <fileset dir="${native}/generated/opencl" includes="*.c"/> <fileset dir="${native}/generated/opengl" includes="*.c"/> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sp...@us...> - 2011-07-10 19:16:52
|
Revision: 3565 http://java-game-lib.svn.sourceforge.net/java-game-lib/?rev=3565&view=rev Author: spasi Date: 2011-07-10 19:16:46 +0000 (Sun, 10 Jul 2011) Log Message: ----------- Attempt (2) to fix MacOS build. Modified Paths: -------------- trunk/LWJGL/platform_build/macosx_ant/build.xml Modified: trunk/LWJGL/platform_build/macosx_ant/build.xml =================================================================== --- trunk/LWJGL/platform_build/macosx_ant/build.xml 2011-07-10 18:48:23 UTC (rev 3564) +++ trunk/LWJGL/platform_build/macosx_ant/build.xml 2011-07-10 19:16:46 UTC (rev 3565) @@ -20,7 +20,7 @@ <target name="compile"> <apply dir="${dstdir}" executable="${compiler}" os="Mac OS X" skipemptyfilesets="true" failonerror="true" dest="${dstdir}"> - <arg line="${cflags} -ObjC -O2 -Wall -Wunused -c -fPIC -I${sdkroot}/System/Library/Frameworks/JavaVM.framework/Versions/A/Headers -I${native}/common -I${native}/macosx"/> + <arg line="${cflags} -ObjC -O2 -Wall -Wunused -c -fPIC -I${sdkroot}/System/Library/Frameworks/JavaVM.framework/Versions/A/Headers -I${native}/common -I${native}/common/opengl -I${native}/macosx"/> <!-- Map from *.m and *.c to .o --> <mapper type="regexp" from="^(.*)\.(c|m)" to="\1.o"/> <fileset dir="${native}/macosx" includes="*.m"/> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ka...@us...> - 2011-08-27 22:21:20
|
Revision: 3622 http://java-game-lib.svn.sourceforge.net/java-game-lib/?rev=3622&view=rev Author: kappa1 Date: 2011-08-27 22:21:13 +0000 (Sat, 27 Aug 2011) Log Message: ----------- Mac Ant build.xml - bump minimum requirements for compiling lwjgl on OS X to prepare for new plugin2 patch. OS X SDK 10.6 and Java 6 update 4 (1.6.0_24) are now the minimum requirements to compile LWJGL on OS X however OS X 10.3+ is still the targeted for compatibility. Modified Paths: -------------- trunk/LWJGL/platform_build/macosx_ant/build.xml Modified: trunk/LWJGL/platform_build/macosx_ant/build.xml =================================================================== --- trunk/LWJGL/platform_build/macosx_ant/build.xml 2011-08-24 23:18:56 UTC (rev 3621) +++ trunk/LWJGL/platform_build/macosx_ant/build.xml 2011-08-27 22:21:13 UTC (rev 3622) @@ -20,7 +20,7 @@ <target name="compile"> <apply dir="${dstdir}" executable="${compiler}" os="Mac OS X" skipemptyfilesets="true" failonerror="true" dest="${dstdir}"> - <arg line="${cflags} -ObjC -O2 -Wall -Wunused -c -fPIC -I${sdkroot}/System/Library/Frameworks/JavaVM.framework/Versions/A/Headers -I${native}/common -I${native}/common/opengl -I${native}/macosx"/> + <arg line="${cflags} -ObjC -O2 -Wall -Wunused -c -fPIC -I${sdkroot}/System/Library/Frameworks/JavaVM.framework/Versions/A/Headers -I${sdkroot}/System/Library/Frameworks/JavaVM.framework/Versions/A/Frameworks/JavaNativeFoundation.framework/Headers -I${native}/common -I${native}/common/opengl -I${native}/macosx"/> <!-- Map from *.m and *.c to .o --> <mapper type="regexp" from="^(.*)\.(c|m)" to="\1.o"/> <fileset dir="${native}/macosx" includes="*.m"/> @@ -35,7 +35,7 @@ <target name="link"> <apply dir="${objdir}" parallel="true" executable="${linker}" os="Mac OS X" failonerror="true" skipemptyfilesets="true"> - <arg line="${linkerflags} -exported_symbols_list ../lwjgl.symbols -dynamiclib -o ${libname} -framework Foundation -framework AppKit -framework JavaVM -framework Carbon"/> + <arg line="${linkerflags} -exported_symbols_list ../lwjgl.symbols -dynamiclib -o ${libname} -framework Foundation -framework AppKit -framework JavaVM -framework Carbon -framework OpenGL"/> <fileset dir="${objdir}" includes="*.o"/> </apply> <apply dir="${objdir}" executable="strip" os="Mac OS X" failonerror="true"> @@ -45,9 +45,9 @@ </target> <target name="nativelibrary" depends="init"> - <property name="universal_sdkroot" location="/Developer/SDKs/MacOSX10.4u.sdk"/> - <property name="ppc_sdkroot" location="/Developer/SDKs/MacOSX10.4u.sdk"/> - <property name="x86_64_sdkroot" location="/Developer/SDKs/MacOSX10.5.sdk"/> + <property name="universal_sdkroot" location="/Developer/SDKs/MacOSX10.6.sdk"/> + <property name="ppc_sdkroot" location="/Developer/SDKs/MacOSX10.6.sdk"/> + <property name="x86_64_sdkroot" location="/Developer/SDKs/MacOSX10.6.sdk"/> <property name="universal_flags" value="-isysroot ${universal_sdkroot}"/> <property name="ppc_flags" value="-isysroot ${ppc_sdkroot}"/> <antcall target="compile"> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sp...@us...> - 2011-09-03 10:58:27
|
Revision: 3628 http://java-game-lib.svn.sourceforge.net/java-game-lib/?rev=3628&view=rev Author: spasi Date: 2011-09-03 10:58:20 +0000 (Sat, 03 Sep 2011) Log Message: ----------- Attempt to fix MacOS build. Modified Paths: -------------- trunk/LWJGL/platform_build/macosx_ant/build.xml Modified: trunk/LWJGL/platform_build/macosx_ant/build.xml =================================================================== --- trunk/LWJGL/platform_build/macosx_ant/build.xml 2011-08-31 21:06:46 UTC (rev 3627) +++ trunk/LWJGL/platform_build/macosx_ant/build.xml 2011-09-03 10:58:20 UTC (rev 3628) @@ -7,7 +7,7 @@ <mkdir dir="i386"/> <mkdir dir="x86_64"/> </target> - + <target name="clean"> <delete failonerror="false"> <fileset dir="i386"/> @@ -20,16 +20,17 @@ <target name="compile"> <apply dir="${dstdir}" executable="${compiler}" os="Mac OS X" skipemptyfilesets="true" failonerror="true" dest="${dstdir}"> - <arg line="${cflags} -ObjC -O2 -Wall -Wunused -c -fPIC -I/System/Library/Frameworks/JavaVM.framework/Versions/A/Headers -I${native}/common -I${native}/macosx -I/System/Library/Frameworks/JavaVM.framework/Versions/A/Frameworks/JavaNativeFoundation.framework/Versions/A/Headers"/> + <arg line="${cflags} -ObjC -O2 -Wall -Wunused -c -fPIC -I/System/Library/Frameworks/JavaVM.framework/Versions/A/Headers -I${native}/common -I${native}/common/opengl -I${native}/macosx -I/System/Library/Frameworks/JavaVM.framework/Versions/A/Frameworks/JavaNativeFoundation.framework/Versions/A/Headers"/> <!-- Map from *.m and *.c to .o --> <mapper type="regexp" from="^(.*)\.(c|m)" to="\1.o"/> <fileset dir="${native}/macosx" includes="*.m"/> <fileset dir="${native}/macosx" includes="*.c"/> <fileset dir="${native}/common" includes="*.c"/> + <fileset dir="${native}/common/opengl" includes="*.c"/> <fileset dir="${native}/generated" includes="*.c"/> </apply> </target> - + <target name="link"> <apply dir="${objdir}" parallel="true" executable="${linker}" os="Mac OS X" failonerror="true" skipemptyfilesets="true"> <arg line="${linkerflags} -exported_symbols_list ../lwjgl.symbols -dynamiclib -o ${libname} -framework Foundation -framework AppKit -framework JavaVM -framework Carbon -framework OpenGL -framework JavaNativeFoundation -F/System/Library/Frameworks/JavaVM.framework/Frameworks"/> @@ -40,7 +41,7 @@ <fileset dir="." file="${libname}"/> </apply> </target> - + <target name="nativelibrary" depends="init"> <property name="universal_sdkroot" location="/Developer/SDKs/MacOSX10.6.sdk"/> <property name="ppc_sdkroot" location="/Developer/SDKs/MacOSX10.6.sdk"/> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sp...@us...> - 2011-09-03 11:04:11
|
Revision: 3629 http://java-game-lib.svn.sourceforge.net/java-game-lib/?rev=3629&view=rev Author: spasi Date: 2011-09-03 11:04:04 +0000 (Sat, 03 Sep 2011) Log Message: ----------- Attempt (2) to fix MacOS build. Modified Paths: -------------- trunk/LWJGL/platform_build/macosx_ant/build.xml Modified: trunk/LWJGL/platform_build/macosx_ant/build.xml =================================================================== --- trunk/LWJGL/platform_build/macosx_ant/build.xml 2011-09-03 10:58:20 UTC (rev 3628) +++ trunk/LWJGL/platform_build/macosx_ant/build.xml 2011-09-03 11:04:04 UTC (rev 3629) @@ -27,7 +27,9 @@ <fileset dir="${native}/macosx" includes="*.c"/> <fileset dir="${native}/common" includes="*.c"/> <fileset dir="${native}/common/opengl" includes="*.c"/> - <fileset dir="${native}/generated" includes="*.c"/> + <fileset dir="${native}/generated/openal" includes="*.c"/> + <fileset dir="${native}/generated/opencl" includes="*.c"/> + <fileset dir="${native}/generated/opengl" includes="*.c"/> </apply> </target> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ka...@us...> - 2011-11-12 21:03:55
|
Revision: 3693 http://java-game-lib.svn.sourceforge.net/java-game-lib/?rev=3693&view=rev Author: kappa1 Date: 2011-11-12 21:03:48 +0000 (Sat, 12 Nov 2011) Log Message: ----------- Add the QuartzCore framework to the list of frameworks available to the linker Modified Paths: -------------- trunk/LWJGL/platform_build/macosx_ant/build.xml Modified: trunk/LWJGL/platform_build/macosx_ant/build.xml =================================================================== --- trunk/LWJGL/platform_build/macosx_ant/build.xml 2011-11-12 20:45:35 UTC (rev 3692) +++ trunk/LWJGL/platform_build/macosx_ant/build.xml 2011-11-12 21:03:48 UTC (rev 3693) @@ -35,7 +35,7 @@ <target name="link"> <apply dir="${objdir}" parallel="true" executable="${linker}" os="Mac OS X" failonerror="true" skipemptyfilesets="true"> - <arg line="${linkerflags} -exported_symbols_list ../lwjgl.symbols -dynamiclib -o ${libname} -framework Foundation -framework AppKit -framework JavaVM -framework Carbon -framework OpenGL -framework JavaNativeFoundation -F/System/Library/Frameworks/JavaVM.framework/Frameworks"/> + <arg line="${linkerflags} -exported_symbols_list ../lwjgl.symbols -dynamiclib -o ${libname} -framework Foundation -framework AppKit -framework JavaVM -framework Carbon -framework OpenGL -framework QuartzCore -framework JavaNativeFoundation -F/System/Library/Frameworks/JavaVM.framework/Frameworks"/> <fileset dir="${objdir}" includes="*.o"/> </apply> <apply dir="${objdir}" executable="strip" os="Mac OS X" failonerror="true"> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ka...@us...> - 2012-01-13 00:53:50
|
Revision: 3724 http://java-game-lib.svn.sourceforge.net/java-game-lib/?rev=3724&view=rev Author: kappa1 Date: 2012-01-13 00:53:43 +0000 (Fri, 13 Jan 2012) Log Message: ----------- Weakly link the AppKit framework in an attempt to allow 10.5 compatibility again. Modified Paths: -------------- trunk/LWJGL/platform_build/macosx_ant/build.xml Modified: trunk/LWJGL/platform_build/macosx_ant/build.xml =================================================================== --- trunk/LWJGL/platform_build/macosx_ant/build.xml 2012-01-13 00:40:43 UTC (rev 3723) +++ trunk/LWJGL/platform_build/macosx_ant/build.xml 2012-01-13 00:53:43 UTC (rev 3724) @@ -35,7 +35,7 @@ <target name="link"> <apply dir="${objdir}" parallel="true" executable="${linker}" os="Mac OS X" failonerror="true" skipemptyfilesets="true"> - <arg line="${linkerflags} -exported_symbols_list ../lwjgl.symbols -dynamiclib -o ${libname} -framework Foundation -framework AppKit -framework JavaVM -framework Carbon -framework OpenGL -framework QuartzCore -framework JavaNativeFoundation -F/System/Library/Frameworks/JavaVM.framework/Frameworks"/> + <arg line="${linkerflags} -exported_symbols_list ../lwjgl.symbols -dynamiclib -o ${libname} -framework Foundation -weak_framework AppKit -framework JavaVM -framework Carbon -framework OpenGL -framework QuartzCore -framework JavaNativeFoundation -F/System/Library/Frameworks/JavaVM.framework/Frameworks"/> <fileset dir="${objdir}" includes="*.o"/> </apply> <apply dir="${objdir}" executable="strip" os="Mac OS X" failonerror="true"> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |