Commit 87387eec authored by Felix Paul Kühne's avatar Felix Paul Kühne

macosx: updated eyetv plugin xcodeproj (fixes #5299)

parent b79a47d8
...@@ -320,7 +320,7 @@ static long VLCEyeTVPluginPacketsArrived(VLCEyeTVPluginGlobals_t *globals, EyeTV ...@@ -320,7 +320,7 @@ static long VLCEyeTVPluginPacketsArrived(VLCEyeTVPluginGlobals_t *globals, EyeTV
if( sent == -1 ) if( sent == -1 )
printf("data sending failed (errno=%d)\n", errno); printf("data sending failed (errno=%d)\n", errno);
else else
printf("data sending incomplete (sent=%d)\n", sent); printf("data sending incomplete (sent=%zd)\n", sent);
close(i_vlcSock); close(i_vlcSock);
i_vlcSock = -1; i_vlcSock = -1;
return 0; return 0;
...@@ -370,7 +370,7 @@ static long VLCEyeTVPluginPacketsArrived(VLCEyeTVPluginGlobals_t *globals, EyeTV ...@@ -370,7 +370,7 @@ static long VLCEyeTVPluginPacketsArrived(VLCEyeTVPluginGlobals_t *globals, EyeTV
if( sent == -1 ) if( sent == -1 )
printf("data sending failed (errno=%d)\n", errno); printf("data sending failed (errno=%d)\n", errno);
else else
printf("data sending incomplete (sent=%d)\n", sent); printf("data sending incomplete (sent=%zd)\n", sent);
close(i_vlcSock); close(i_vlcSock);
i_vlcSock = -1; i_vlcSock = -1;
return 0; return 0;
...@@ -411,7 +411,7 @@ static long VLCEyeTVPluginServiceChanged(VLCEyeTVPluginGlobals_t *globals, ...@@ -411,7 +411,7 @@ static long VLCEyeTVPluginServiceChanged(VLCEyeTVPluginGlobals_t *globals,
if( globals ) if( globals )
{ {
printf("DeviceID: %ld, ", deviceID); printf("DeviceID: %ld, ", (long)deviceID);
printf("HeadendID: %ld, ", headendID); printf("HeadendID: %ld, ", headendID);
printf("TransponderID: %ld, ", transponderID); printf("TransponderID: %ld, ", transponderID);
printf("ServiceID: %ld\n\n", serviceID); printf("ServiceID: %ld\n\n", serviceID);
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
archiveVersion = 1; archiveVersion = 1;
classes = { classes = {
}; };
objectVersion = 42; objectVersion = 46;
objects = { objects = {
/* Begin PBXBuildFile section */ /* Begin PBXBuildFile section */
...@@ -116,9 +116,19 @@ ...@@ -116,9 +116,19 @@
/* Begin PBXProject section */ /* Begin PBXProject section */
089C1669FE841209C02AAC07 /* Project object */ = { 089C1669FE841209C02AAC07 /* Project object */ = {
isa = PBXProject; isa = PBXProject;
attributes = {
ORGANIZATIONNAME = VideoLAN;
};
buildConfigurationList = 1DEB911E08733D790010E9CD /* Build configuration list for PBXProject "eyetvplugin" */; buildConfigurationList = 1DEB911E08733D790010E9CD /* Build configuration list for PBXProject "eyetvplugin" */;
compatibilityVersion = "Xcode 2.4"; compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 1; hasScannedForEncodings = 1;
knownRegions = (
English,
Japanese,
French,
German,
);
mainGroup = 089C166AFE841209C02AAC07 /* VLC EyeTV Plug-In */; mainGroup = 089C166AFE841209C02AAC07 /* VLC EyeTV Plug-In */;
projectDirPath = ""; projectDirPath = "";
projectRoot = ""; projectRoot = "";
...@@ -183,6 +193,7 @@ ...@@ -183,6 +193,7 @@
isa = XCBuildConfiguration; isa = XCBuildConfiguration;
buildSettings = { buildSettings = {
ARCHS = ( ARCHS = (
x86_64,
ppc, ppc,
i386, i386,
); );
...@@ -201,17 +212,18 @@ ...@@ -201,17 +212,18 @@
GCC_WARN_ABOUT_RETURN_TYPE = YES; GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNUSED_VARIABLE = YES; GCC_WARN_UNUSED_VARIABLE = YES;
PREBINDING = NO; PREBINDING = NO;
SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk; SDKROOT = macosx10.5;
}; };
name = Debug; name = Debug;
}; };
1DEB912008733D790010E9CD /* Release */ = { 1DEB912008733D790010E9CD /* Release */ = {
isa = XCBuildConfiguration; isa = XCBuildConfiguration;
buildSettings = { buildSettings = {
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
GCC_WARN_ABOUT_RETURN_TYPE = YES; GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNUSED_VARIABLE = YES; GCC_WARN_UNUSED_VARIABLE = YES;
PREBINDING = NO; PREBINDING = NO;
SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk; SDKROOT = macosx10.5;
}; };
name = Release; name = Release;
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment