[vlc-commits] macosx: updated eyetv plugin xcodeproj (fixes #5299)
Felix Paul Kühne
git at videolan.org
Thu Feb 9 13:48:05 CET 2012
vlc | branch: master | Felix Paul Kühne <fkuehne at videolan.org> | Thu Feb 9 13:47:59 2012 +0100| [87387eec4568cc4fdb4bb6782f71be907bd3dbfa] | committer: Felix Paul Kühne
macosx: updated eyetv plugin xcodeproj (fixes #5299)
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=87387eec4568cc4fdb4bb6782f71be907bd3dbfa
---
extras/package/macosx/eyetvplugin/eyetvplugin.c | 6 +++---
.../eyetvplugin.xcodeproj/project.pbxproj | 20 ++++++++++++++++----
2 files changed, 19 insertions(+), 7 deletions(-)
diff --git a/extras/package/macosx/eyetvplugin/eyetvplugin.c b/extras/package/macosx/eyetvplugin/eyetvplugin.c
index c350ef3..8b7713c 100644
--- a/extras/package/macosx/eyetvplugin/eyetvplugin.c
+++ b/extras/package/macosx/eyetvplugin/eyetvplugin.c
@@ -320,7 +320,7 @@ static long VLCEyeTVPluginPacketsArrived(VLCEyeTVPluginGlobals_t *globals, EyeTV
if( sent == -1 )
printf("data sending failed (errno=%d)\n", errno);
else
- printf("data sending incomplete (sent=%d)\n", sent);
+ printf("data sending incomplete (sent=%zd)\n", sent);
close(i_vlcSock);
i_vlcSock = -1;
return 0;
@@ -370,7 +370,7 @@ static long VLCEyeTVPluginPacketsArrived(VLCEyeTVPluginGlobals_t *globals, EyeTV
if( sent == -1 )
printf("data sending failed (errno=%d)\n", errno);
else
- printf("data sending incomplete (sent=%d)\n", sent);
+ printf("data sending incomplete (sent=%zd)\n", sent);
close(i_vlcSock);
i_vlcSock = -1;
return 0;
@@ -411,7 +411,7 @@ static long VLCEyeTVPluginServiceChanged(VLCEyeTVPluginGlobals_t *globals,
if( globals )
{
- printf("DeviceID: %ld, ", deviceID);
+ printf("DeviceID: %ld, ", (long)deviceID);
printf("HeadendID: %ld, ", headendID);
printf("TransponderID: %ld, ", transponderID);
printf("ServiceID: %ld\n\n", serviceID);
diff --git a/extras/package/macosx/eyetvplugin/eyetvplugin.xcodeproj/project.pbxproj b/extras/package/macosx/eyetvplugin/eyetvplugin.xcodeproj/project.pbxproj
index 9c4180a..8681139 100644
--- a/extras/package/macosx/eyetvplugin/eyetvplugin.xcodeproj/project.pbxproj
+++ b/extras/package/macosx/eyetvplugin/eyetvplugin.xcodeproj/project.pbxproj
@@ -3,7 +3,7 @@
archiveVersion = 1;
classes = {
};
- objectVersion = 42;
+ objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
@@ -116,9 +116,19 @@
/* Begin PBXProject section */
089C1669FE841209C02AAC07 /* Project object */ = {
isa = PBXProject;
+ attributes = {
+ ORGANIZATIONNAME = VideoLAN;
+ };
buildConfigurationList = 1DEB911E08733D790010E9CD /* Build configuration list for PBXProject "eyetvplugin" */;
- compatibilityVersion = "Xcode 2.4";
+ compatibilityVersion = "Xcode 3.2";
+ developmentRegion = English;
hasScannedForEncodings = 1;
+ knownRegions = (
+ English,
+ Japanese,
+ French,
+ German,
+ );
mainGroup = 089C166AFE841209C02AAC07 /* VLC EyeTV Plug-In */;
projectDirPath = "";
projectRoot = "";
@@ -183,6 +193,7 @@
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = (
+ x86_64,
ppc,
i386,
);
@@ -201,17 +212,18 @@
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
PREBINDING = NO;
- SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk;
+ SDKROOT = macosx10.5;
};
name = Debug;
};
1DEB912008733D790010E9CD /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
+ ARCHS = "$(ARCHS_STANDARD_64_BIT)";
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
PREBINDING = NO;
- SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk;
+ SDKROOT = macosx10.5;
};
name = Release;
};
More information about the vlc-commits
mailing list