Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
96b176de
Commit
96b176de
authored
Jan 06, 2008
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix previouses commit.
parent
196bce31
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
12 deletions
+12
-12
extras/MacOSX/VLC_app/VLC.xcodeproj/project.pbxproj
extras/MacOSX/VLC_app/VLC.xcodeproj/project.pbxproj
+8
-8
src/misc/darwin_specific.c
src/misc/darwin_specific.c
+4
-4
No files found.
extras/MacOSX/VLC_app/VLC.xcodeproj/project.pbxproj
View file @
96b176de
...
...
@@ -13,7 +13,7 @@
buildPhases
=
(
);
dependencies
=
(
63
7F33EB0D2AEE4B001E70AB
/* PBXTargetDependency */
,
63
2F3CC60D318E3A003BBC56
/* PBXTargetDependency */
,
);
name
=
"vlc-contrib-core-framework-app"
;
productName
=
"vlc-contrib-core-framework-app"
;
...
...
@@ -85,12 +85,12 @@
remoteGlobalIDString
=
8D1107260486CEB800E47090
/* VLC */
;
remoteInfo
=
VLC
;
};
63
7F33EA0D2AEE4B001E70AB
/* PBXContainerItemProxy */
=
{
63
2F3CC50D318E3A003BBC56
/* PBXContainerItemProxy */
=
{
isa
=
PBXContainerItemProxy
;
containerPortal
=
29B97313FDCFA39411CA2CEA
/* Project object
*/
;
containerPortal
=
633BD69D0D2ACE520012A314
/* VLCKit.xcodeproj
*/
;
proxyType
=
1
;
remoteGlobalIDString
=
63
7F33DF0D2AEE05001E70AB
;
remoteInfo
=
"vlc-
framework-app
"
;
remoteGlobalIDString
=
63
3BD6D20D2ADE040012A314
/* vlc-contrib-core-framework */
;
remoteInfo
=
"vlc-
contrib-core-framework
"
;
};
/* End PBXContainerItemProxy section */
...
...
@@ -456,10 +456,10 @@
target
=
8D1107260486CEB800E47090
/* VLC */
;
targetProxy
=
632F3C270D316FB5003BBC56
/* PBXContainerItemProxy */
;
};
63
7F33EB0D2AEE4B001E70AB
/* PBXTargetDependency */
=
{
63
2F3CC60D318E3A003BBC56
/* PBXTargetDependency */
=
{
isa
=
PBXTargetDependency
;
target
=
637F33DF0D2AEE05001E70AB
/* vlc-framework-app */
;
targetProxy
=
63
7F33EA0D2AEE4B001E70AB
/* PBXContainerItemProxy */
;
name
=
"vlc-contrib-core-framework"
;
targetProxy
=
63
2F3CC50D318E3A003BBC56
/* PBXContainerItemProxy */
;
};
/* End PBXTargetDependency section */
...
...
src/misc/darwin_specific.c
View file @
96b176de
...
...
@@ -76,9 +76,9 @@ void system_Init( libvlc_int_t *p_this, int *pi_argc, char *ppsz_argv[] )
for
(
i
=
0
;
i
<
_dyld_image_count
();
i
++
)
{
char
*
psz_img_name
=
_dyld_get_image_name
(
i
);
/* Check for "VLCKit.framework/Versions/Current/VLC",
* as well as "VLCKit.framework/Versions/A/VLC" and
* "VLC.framework/Versions/B/VLC" */
/* Check for "VLCKit.framework/Versions/Current/VLC
Kit
",
* as well as "VLCKit.framework/Versions/A/VLC
Kit
" and
* "VLC.framework/Versions/B/VLC
Kit
" */
if
(
p_char
=
strstr
(
psz_img_name
,
"VLCKit.framework/Versions/"
))
{
/* Look for the next forward slash */
...
...
@@ -87,7 +87,7 @@ void system_Init( libvlc_int_t *p_this, int *pi_argc, char *ppsz_argv[] )
p_char
++
;
/* If the string ends with VLC then we've found a winner */
if
(
!
strcmp
(
p_char
,
"/VLC"
)
)
if
(
!
strcmp
(
p_char
,
"/VLC
Kit
"
)
)
{
p_char
=
strdup
(
psz_img_name
);
break
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment