[vlc-devel] commit: VLCKit: added partial 64bit compilation support ( Felix Kühne )
git version control
git at videolan.org
Tue Aug 25 17:43:09 CEST 2009
vlc | branch: master | Felix Kühne <fpk at Bartleby.local> | Tue Aug 25 17:42:14 2009 +0200| [93442c633e030ed20cc215059de1d4f7fab5a3f3] | committer: Felix Kühne
VLCKit: added partial 64bit compilation support
(partial, as this won't work on Leopard without a few further changes)
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=93442c633e030ed20cc215059de1d4f7fab5a3f3
---
.../framework/VLCKit.xcodeproj/project.pbxproj | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/projects/macosx/framework/VLCKit.xcodeproj/project.pbxproj b/projects/macosx/framework/VLCKit.xcodeproj/project.pbxproj
index 97b395b..f6c726a 100644
--- a/projects/macosx/framework/VLCKit.xcodeproj/project.pbxproj
+++ b/projects/macosx/framework/VLCKit.xcodeproj/project.pbxproj
@@ -461,7 +461,7 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if test $ACTION = \"clean\"\nthen\n exit 0\nfi\ncd ../../../extras/contrib && ./bootstrap";
+ shellScript = "if test $ACTION = \"clean\"\nthen\n cd ../../../extras/contrib && make clean\n exit 0\nfi\nif test $ARCHS = \"x86_64\"\nthen\n cd ../../../extras/contrib && ./bootstrap x86_64-apple-darwin10\nelse\n cd ../../../extras/contrib && ./bootstrap\nfi";
showEnvVarsInLog = 0;
};
633BD6EB0D2ADF280012A314 /* ShellScript */ = {
@@ -475,7 +475,7 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if test $ACTION = \"clean\"\nthen\n exit 0\nfi\ncd ../../../extras/contrib && make";
+ shellScript = "if test $ACTION = \"clean\"\nthen\n exit 0\nfi\nif test $ARCHS = \"x86_64\"\nthen\n cd ../../../extras/contrib && make && ./bootstrap\nelse\n cd ../../../extras/contrib && make\nfi";
showEnvVarsInLog = 0;
};
63FFDBCD0D2AE2AE0092FC96 /* ShellScript */ = {
@@ -561,7 +561,7 @@
1DEB91AE08733DA50010E9CD /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
- ARCHS = "$(NATIVE_ARCH)";
+ ARCHS = "$(NATIVE_ARCH_ACTUAL)";
COPY_PHASE_STRIP = NO;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
@@ -606,7 +606,7 @@
1DEB91AF08733DA50010E9CD /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
- ARCHS = "$(NATIVE_ARCH)";
+ ARCHS = "$(NATIVE_ARCH_ACTUAL)";
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
FRAMEWORK_VERSION = A;
More information about the vlc-devel
mailing list