1
mirror of https://code.videolan.org/videolan/vlc synced 2024-07-21 07:24:15 +02:00

macosx: updated eyetv plugin xcodeproj (fixes #5299)

This commit is contained in:
Felix Paul Kühne 2012-02-09 13:47:59 +01:00
parent b79a47d8d0
commit 87387eec45
2 changed files with 19 additions and 7 deletions

View File

@ -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);

View File

@ -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;
};