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
0edb8726
Commit
0edb8726
authored
Dec 11, 2000
by
Christophe Massiot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed benny's mistakes :pp
parent
10c6c8c9
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
5 deletions
+3
-5
Makefile.in
Makefile.in
+1
-3
src/interface/interface.c
src/interface/interface.c
+1
-1
src/misc/plugins.c
src/misc/plugins.c
+1
-1
No files found.
Makefile.in
View file @
0edb8726
...
...
@@ -167,11 +167,9 @@ LCFLAGS += -Wall
#
# Debugging and profiling support (unless optimisations are active)
#
ifeq
($(DEBUG),1)
ifneq
($(OPTIMS),1)
CFLAGS
+=
-g
endif
endif
#################################################################################
# Objects and files
...
...
@@ -479,7 +477,7 @@ ifeq ($(SYS),beos)
rm
-f
./plugins/_APP_
ln
-s
../vlc ./plugins/_APP_
else
$(CC)
$(CFLAGS)
$(LCFLAGS)
--export-dynamic
-o
$@
$(C_OBJ)
$(CPP_OBJ)
$(ASM_OBJ)
$(CC)
$(CFLAGS)
$(LCFLAGS)
--export-dynamic
-rdynamic
-o
$@
$(C_OBJ)
$(CPP_OBJ)
$(ASM_OBJ)
endif
lib/beos.so
:
$(PLUGIN_BEOS)
...
...
src/interface/interface.c
View file @
0edb8726
...
...
@@ -128,7 +128,7 @@ intf_thread_t* intf_Create( void )
if
(
i_best_score
==
0
)
{
free
(
p_intf
);
intf_ErrMsg
(
"error: no suitable plugin to create interface
\n
"
);
intf_ErrMsg
(
"error: no suitable plugin to create interface
\n
"
);
return
(
NULL
);
}
...
...
src/misc/plugins.c
View file @
0edb8726
...
...
@@ -178,7 +178,7 @@ char * TestPlugin ( plugin_id_t *p_plugin_id, char * psz_name )
#ifndef SYS_BEOS
else
{
intf_
DbgMsg
(
"
%s
\n
"
,
dlerror
()
);
intf_
WarnMsg
(
1
,
"dlerror:
%s
\n
"
,
dlerror
()
);
}
#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