Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
d3cb1428
Commit
d3cb1428
authored
Jan 28, 2006
by
zorglub
Browse files
Don't check syslog value if we don't have syslog.h
parent
8b3a7071
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/libvlc.c
View file @
d3cb1428
...
...
@@ -780,11 +780,13 @@ int VLC_Init( int i_object, int i_argc, char *ppsz_argv[] )
{
VLC_AddIntf
(
0
,
"logger"
,
VLC_FALSE
,
VLC_FALSE
);
}
#ifdef HAVE_SYSLOG_H
if
(
config_GetInt
(
p_vlc
,
"syslog"
)
==
1
)
{
char
*
psz_logmode
=
"logmode=syslog"
;
AddIntfInternal
(
0
,
"logger"
,
VLC_FALSE
,
VLC_FALSE
,
1
,
&
psz_logmode
);
}
#endif
if
(
config_GetInt
(
p_vlc
,
"show-intf"
)
==
1
)
{
...
...
Write
Preview
Supports
Markdown
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