Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
0500053e
Commit
0500053e
authored
Sep 15, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix MacOS linking
parent
1508936f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
7 deletions
+16
-7
modules/control/rc.c
modules/control/rc.c
+0
-4
src/libvlc.sym
src/libvlc.sym
+8
-0
src/misc/update.c
src/misc/update.c
+8
-3
No files found.
modules/control/rc.c
View file @
0500053e
...
...
@@ -747,12 +747,10 @@ static void Run( intf_thread_t *p_intf )
Help
(
p_intf
,
b_longhelp
);
}
#if 0
else
if
(
!
strcmp
(
psz_cmd
,
"check-updates"
)
)
{
checkUpdates
(
p_intf
,
psz_arg
);
}
#endif
else
if
(
!
strcmp
(
psz_cmd
,
"key"
)
||
!
strcmp
(
psz_cmd
,
"hotkey"
)
)
{
var_SetInteger
(
p_intf
->
p_libvlc
,
"key-pressed"
,
...
...
@@ -2057,7 +2055,6 @@ static input_item_t *parse_MRL( intf_thread_t *p_intf, char *psz_mrl )
return
p_item
;
}
#if 0
/*****************************************************************************
* checkUpdates : check for updates
****************************************************************************/
...
...
@@ -2174,4 +2171,3 @@ static void checkUpdates( intf_thread_t *p_intf, char *psz_arg )
}
update_Delete
(
p_u
);
}
#endif
src/libvlc.sym
View file @
0500053e
...
...
@@ -318,6 +318,14 @@ tls_ServerDelete
ToLocale
unescape_URI
unescape_URI_duplicate
update_Check
update_Delete
update_download
update_iterator_Action
update_iterator_ChooseMirrorAndFile
update_iterator_Delete
update_iterator_New
__update_New
us_atof
us_strtod
utf8_fopen
...
...
src/misc/update.c
View file @
0500053e
#if 0
/*****************************************************************************
* update.c: VLC update and plugins download
*****************************************************************************
...
...
@@ -133,7 +132,14 @@ update_t *__update_New( vlc_object_t *p_this )
p_update
->
i_mirrors
=
0
;
p_update
->
b_mirrors
=
VLC_FALSE
;
return
p_update
;
#if 1
msg_Err
(
p_this
,
"Auto-update currently disabled."
);
vlc_mutex_destroy
(
&
p_update
->
lock
);
free
(
p_update
);
return
NULL
;
#else
return
p_update
#endif
}
/**
...
...
@@ -1338,4 +1344,3 @@ void update_download_for_real( download_thread_t *p_this )
vlc_object_destroy
(
p_this
);
}
#endif
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