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
fac890f0
Commit
fac890f0
authored
Aug 01, 2006
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* Some work for BeOS Contrib's should repair some of'em
parent
935598e0
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
54 additions
and
0 deletions
+54
-0
extras/contrib/src/Makefile
extras/contrib/src/Makefile
+11
-0
extras/contrib/src/Patches/speex-BeOS.patch
extras/contrib/src/Patches/speex-BeOS.patch
+19
-0
extras/contrib/src/Patches/twolame-BeOS.patch
extras/contrib/src/Patches/twolame-BeOS.patch
+24
-0
No files found.
extras/contrib/src/Makefile
View file @
fac890f0
...
@@ -698,7 +698,12 @@ libtheora: libtheora-$(THEORA_VERSION).tar.bz2
...
@@ -698,7 +698,12 @@ libtheora: libtheora-$(THEORA_VERSION).tar.bz2
(
cd
$@
;
autoconf
)
(
cd
$@
;
autoconf
)
.theora
:
libtheora .ogg
.theora
:
libtheora .ogg
ifdef
HAVE_BEOS
(
cd
$<
;
$(HOSTCC)
./configure
$(HOSTCONF)
--prefix
=
$(PREFIX)
--disable-sdltest
--disable-oggtest
--disable-vorbistest
--disable-asm
&&
make
&&
make
install
)
else
(
cd
$<
;
$(HOSTCC)
./configure
$(HOSTCONF)
--prefix
=
$(PREFIX)
--disable-sdltest
--disable-oggtest
--disable-vorbistest
&&
make
&&
make
install
)
(
cd
$<
;
$(HOSTCC)
./configure
$(HOSTCONF)
--prefix
=
$(PREFIX)
--disable-sdltest
--disable-oggtest
--disable-vorbistest
&&
make
&&
make
install
)
endif
$(INSTALL_NAME)
$(INSTALL_NAME)
touch
$@
touch
$@
...
@@ -772,6 +777,9 @@ speex-$(SPEEX_VERSION).tar.gz:
...
@@ -772,6 +777,9 @@ speex-$(SPEEX_VERSION).tar.gz:
speex
:
speex-$(SPEEX_VERSION).tar.gz
speex
:
speex-$(SPEEX_VERSION).tar.gz
$(EXTRACT_GZ)
$(EXTRACT_GZ)
patch
-p0
< Patches/speex.patch
patch
-p0
< Patches/speex.patch
ifdef
HAVE_BEOS
patch
-p0
< Patches/speex-BeOS.patch
endif
.speex
:
speex
.speex
:
speex
(
cd
$<
;
$(HOSTCC)
./configure
$(HOSTCONF)
--prefix
=
$(PREFIX)
--enable-ogg
=
no
&&
make
&&
make
install
)
(
cd
$<
;
$(HOSTCC)
./configure
$(HOSTCONF)
--prefix
=
$(PREFIX)
--enable-ogg
=
no
&&
make
&&
make
install
)
...
@@ -1428,6 +1436,9 @@ twolame-$(TWOLAME_VERSION).tar.gz:
...
@@ -1428,6 +1436,9 @@ twolame-$(TWOLAME_VERSION).tar.gz:
twolame
:
twolame-$(TWOLAME_VERSION).tar.gz
twolame
:
twolame-$(TWOLAME_VERSION).tar.gz
$(EXTRACT_GZ)
$(EXTRACT_GZ)
ifdef
HAVE_BEOS
patch
-p
0 < Patches/twolame-BeOS.patch
endif
.twolame
:
twolame
.twolame
:
twolame
(
cd
twolame
;
$(HOSTCC)
./configure
$(HOSTCONF)
--prefix
=
$(PREFIX)
&&
make
&&
make
install
)
(
cd
twolame
;
$(HOSTCC)
./configure
$(HOSTCONF)
--prefix
=
$(PREFIX)
&&
make
&&
make
install
)
...
...
extras/contrib/src/Patches/speex-BeOS.patch
0 → 100644
View file @
fac890f0
diff -ruN speex/libspeex/testecho.c speex-2/libspeex/testecho.c
--- speex/libspeex/testecho.c 2006-02-11 22:39:51.000000000 +0000
+++ speex-2/libspeex/testecho.c 2006-08-01 12:00:22.000000000 +0000
@@ -22,6 +22,7 @@
short echo_buf[NN], ref_buf[NN], e_buf[NN];
SpeexEchoState *st;
SpeexPreprocessState *den;
+ int tmp = 8000;
if (argc != 4)
{
@@ -34,7 +35,6 @@
st = speex_echo_state_init(NN, TAIL);
den = speex_preprocess_state_init(NN, 8000);
- int tmp = 8000;
speex_echo_ctl(st, SPEEX_ECHO_SET_SAMPLING_RATE, &tmp);
while (read(ref_fd, ref_buf, NN*2))
extras/contrib/src/Patches/twolame-BeOS.patch
0 → 100644
View file @
fac890f0
diff -ruN twolame/configure twolame-2/configure
--- twolame/configure 2006-07-03 18:50:30.000000000 +0000
+++ twolame/configure 2006-08-01 11:47:41.000000000 +0000
@@ -21068,7 +21068,7 @@
-CFLAGS="$CFLAGS -std=c99 -Wunused -Wall"
+CFLAGS="$CFLAGS -Wunused -Wall"
LDFLAGS="$LDFLAGS"
# If debugging is enabled then make warnings errors
diff -ruN twolame/configure.ac twolame-2/configure.ac
--- twolame/configure.ac 2006-07-03 18:50:04.000000000 +0000
+++ twolame/configure.ac 2006-08-01 11:47:32.000000000 +0000
@@ -113,7 +113,7 @@
dnl ############## Compiler and Linker Flags
-CFLAGS="$CFLAGS -std=c99 -Wunused -Wall"
+CFLAGS="$CFLAGS -Wunused -Wall"
LDFLAGS="$LDFLAGS"
# If debugging is enabled then make warnings errors
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