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
1d04b886
Commit
1d04b886
authored
Dec 13, 2003
by
Rocky Bernstein
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
A better fix for missing options when the satellite plugin is not
configured.
parent
11a41a22
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
configure.ac
configure.ac
+3
-1
modules/gui/gtk/open.c
modules/gui/gtk/open.c
+3
-3
No files found.
configure.ac
View file @
1d04b886
dnl Autoconf settings for vlc
dnl $Id: configure.ac,v 1.13
1 2003/12/11 05:49:2
0 rocky Exp $
dnl $Id: configure.ac,v 1.13
2 2003/12/13 00:53:5
0 rocky Exp $
AC_INIT(vlc,0.7.0-test1)
...
...
@@ -1584,6 +1584,8 @@ AC_ARG_ENABLE(satellite,
[ --enable-satellite satellite card support (default disabled)],
[ if test "${enable_satellite}" = "yes"
then
AC_DEFINE(HAVE_SATELLITE, [],
[Define for the VCD plugin using libcdio/libvcdinfo])
AX_ADD_PLUGINS([satellite])
fi])
...
...
modules/gui/gtk/open.c
View file @
1d04b886
...
...
@@ -2,7 +2,7 @@
* gtk_open.c : functions to handle file/disc/network open widgets.
*****************************************************************************
* Copyright (C) 2000, 2001, 2003 VideoLAN
* $Id: open.c,v 1.2
0 2003/12/13 00:00:45
rocky Exp $
* $Id: open.c,v 1.2
1 2003/12/13 00:53:50
rocky Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
* Stphane Borel <stef@via.ecp.fr>
...
...
@@ -582,7 +582,7 @@ static void GtkOpenShow( intf_thread_t *p_intf, int i_page )
GTK_OBJECT
(
p_intf
->
p_sys
->
p_open
),
"network_http_url"
)
),
"http://"
);
#if
SATELLITE_OPTIONS_FIXED
#if
def HAVE_SATELLITE
/* Satellite stuff */
psz_var
=
config_GetPsz
(
p_intf
,
"frequency"
);
if
(
psz_var
)
...
...
@@ -601,7 +601,7 @@ static void GtkOpenShow( intf_thread_t *p_intf, int i_page )
psz_var
);
free
(
psz_var
);
}
#endif
/*
SATELITE_OPTIONS_FIXED
*/
#endif
/*
HAVE_SATELITE
*/
/* subtitle stuff */
/* hide hbox_subtitle */
...
...
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