Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
ab70628c
Commit
ab70628c
authored
Jul 18, 2000
by
Jean-Marc Dressler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Maintenant le vlc fonctionne correctement sous BeOS (� part la synchro).
parent
3fd73537
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
1 deletion
+14
-1
Makefile.in
Makefile.in
+13
-1
plugins/beos/beos.cpp
plugins/beos/beos.cpp
+1
-0
No files found.
Makefile.in
View file @
ab70628c
...
@@ -140,8 +140,12 @@ LCFLAGS += -Wall
...
@@ -140,8 +140,12 @@ LCFLAGS += -Wall
# Debugging and profiling support
# Debugging and profiling support
ifneq
($(DEBUG),0)
ifneq
($(DEBUG),0)
ifeq
($(SYS),beos)
CFLAGS
+=
-g
else
CFLAGS
+=
-pg
CFLAGS
+=
-pg
endif
endif
endif
#################################################################################
#################################################################################
# Objects and files
# Objects and files
...
@@ -414,7 +418,7 @@ $(ASM_OBJ): %.o: %.S
...
@@ -414,7 +418,7 @@ $(ASM_OBJ): %.o: %.S
#$(PLUGIN_OBJ): %.so: .dep/%.d
#$(PLUGIN_OBJ): %.so: .dep/%.d
lib/beos.so
:
$(PLUGIN_BEOS)
lib/beos.so
:
$(PLUGIN_BEOS)
$(CC)
$(CCFLAGS)
$(CFLAGS)
-nostart
-Xlinker
-soname
=
$@
-o
$@
$^
plugins/_APP_
$(CC)
$(CCFLAGS)
$(CFLAGS)
$(LCFLAGS)
-nostart
-Xlinker
-soname
=
$@
-o
$@
$^
plugins/_APP_
$(PLUGIN_BEOS)
:
%.o: %.cpp
$(PLUGIN_BEOS)
:
%.o: %.cpp
$(CC)
$(CCFLAGS)
$(CFLAGS)
-c
-o
$@
$<
$(CC)
$(CCFLAGS)
$(CFLAGS)
-c
-o
$@
$<
...
@@ -468,12 +472,20 @@ $(PLUGIN_GGI): %.o: %.c
...
@@ -468,12 +472,20 @@ $(PLUGIN_GGI): %.o: %.c
$(CC)
$(CCFLAGS)
$(CFLAGS)
-c
-o
$@
$<
$(CC)
$(CCFLAGS)
$(CFLAGS)
-c
-o
$@
$<
lib/yuv.so
:
$(PLUGIN_YUV)
lib/yuv.so
:
$(PLUGIN_YUV)
ifeq
($(SYS),beos)
$(CC)
$(CCFLAGS)
$(CFLAGS)
-nostart
-Xlinker
-soname
=
$@
-o
$@
$^
plugins/_APP_
else
ld
-shared
-o
$@
$^
ld
-shared
-o
$@
$^
endif
$(PLUGIN_YUV)
:
%.o: %.c
$(PLUGIN_YUV)
:
%.o: %.c
$(CC)
$(CCFLAGS)
$(CFLAGS)
-c
-o
$@
$<
$(CC)
$(CCFLAGS)
$(CFLAGS)
-c
-o
$@
$<
lib/yuvmmx.so
:
$(PLUGIN_YUVMMX)
lib/yuvmmx.so
:
$(PLUGIN_YUVMMX)
ifeq
($(SYS),beos)
$(CC)
$(CCFLAGS)
$(CFLAGS)
-nostart
-Xlinker
-soname
=
$@
-o
$@
$^
plugins/_APP_
else
ld
-shared
-o
$@
$^
ld
-shared
-o
$@
$^
endif
$(PLUGIN_YUVMMX)
:
%.o: %.c
$(PLUGIN_YUVMMX)
:
%.o: %.c
$(CC)
$(CCFLAGS)
$(CFLAGS)
-c
-o
$@
$<
$(CC)
$(CCFLAGS)
$(CFLAGS)
-c
-o
$@
$<
...
...
plugins/beos/beos.cpp
View file @
ab70628c
...
@@ -63,6 +63,7 @@ plugin_info_t * GetConfig( void )
...
@@ -63,6 +63,7 @@ plugin_info_t * GetConfig( void )
p_info
->
aout_GetPlugin
=
aout_GetPlugin
;
p_info
->
aout_GetPlugin
=
aout_GetPlugin
;
p_info
->
vout_GetPlugin
=
vout_GetPlugin
;
p_info
->
vout_GetPlugin
=
vout_GetPlugin
;
p_info
->
intf_GetPlugin
=
intf_GetPlugin
;
p_info
->
intf_GetPlugin
=
intf_GetPlugin
;
p_info
->
yuv_GetPlugin
=
NULL
;
return
(
p_info
);
return
(
p_info
);
}
}
...
...
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