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
bc959f89
Commit
bc959f89
authored
Sep 13, 2007
by
Rafaël Carré
Browse files
Checks ncursesw/curses.h presence
parent
ed3227e6
Changes
3
Hide whitespace changes
Inline
Side-by-side
configure.ac
View file @
bc959f89
...
...
@@ -5312,8 +5312,10 @@ dnl
AC_ARG_ENABLE(ncurses,
[ --enable-ncurses ncurses interface support (default disabled)],
[if test "${enable_ncurses}" = "yes"; then
VLC_ADD_PLUGINS([ncurses])
VLC_ADD_LDFLAGS([ncurses],[-lncursesw])
AC_CHECK_HEADERS(ncursesw/curses.h,[
VLC_ADD_PLUGINS([ncurses])
VLC_ADD_LDFLAGS([ncurses],[-lncursesw])
])
fi])
dnl
...
...
extras/mpris.py
View file @
bc959f89
...
...
@@ -222,9 +222,12 @@ def tray_button(widget):
window
.
move
(
position
[
0
],
position
[
1
])
window
.
show
()
#ui setup
xml
=
gtk
.
glade
.
XML
(
'mpris.glade'
)
#loads glade file from the directory where the script is,
#so we can use /path/to/mpris.py to execute it.
import
sys
xml
=
gtk
.
glade
.
XML
(
os
.
path
.
dirname
(
sys
.
argv
[
0
])
+
'/mpris.glade'
)
#ui setup
bt_close
=
xml
.
get_widget
(
'close'
)
bt_quit
=
xml
.
get_widget
(
'quit'
)
bt_file
=
xml
.
get_widget
(
'ChooseFile'
)
...
...
src/playlist/engine.c
View file @
bc959f89
...
...
@@ -489,7 +489,7 @@ void playlist_PreparseLoop( playlist_preparse_t *p_obj )
return
;
}
}
printf
(
"pointer playlist XX: %p
\n
"
,
p_current
->
lock
.
p_this
);
p_current
=
p_obj
->
pp_waiting
[
0
];
REMOVE_ELEM
(
p_obj
->
pp_waiting
,
p_obj
->
i_waiting
,
0
);
vlc_mutex_unlock
(
&
p_obj
->
object_lock
);
...
...
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