Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
ccc4b2ca
Commit
ccc4b2ca
authored
Dec 09, 2005
by
Christophe Mutricy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix portaudio (closes #419)
parent
c6cce792
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
2 deletions
+21
-2
extras/contrib/src/Makefile
extras/contrib/src/Makefile
+5
-2
extras/contrib/src/Patches/portaudio-cross.patch
extras/contrib/src/Patches/portaudio-cross.patch
+16
-0
No files found.
extras/contrib/src/Makefile
View file @
ccc4b2ca
...
@@ -145,9 +145,9 @@ else
...
@@ -145,9 +145,9 @@ else
.FLAC .speex .faad .faac .lame .ebml .matroska .ffmpeg .dvdcss
\
.FLAC .speex .faad .faac .lame .ebml .matroska .ffmpeg .dvdcss
\
.live .goom2k4 .caca .mod .x264 .xml .twolame
\
.live .goom2k4 .caca .mod .x264 .xml .twolame
\
.png .gpg-error .gcrypt .gnutls .libmpcdec
\
.png .gpg-error .gcrypt .gnutls .libmpcdec
\
.gnutls .dvdnav .dvbpsi .wxwidgets .dirac
\
.gnutls .dvdnav .dvbpsi .wxwidgets .dirac
.portaudio
\
.dx_headers .dshow_headers .aclocal .gecko-win32
.dx_headers .dshow_headers .aclocal .gecko-win32
# .SDL_image .daap .cddb .cdio .vcdimager .dts
.portaudio
# .SDL_image .daap .cddb .cdio .vcdimager .dts
else
else
ifdef
HAVE_WINCE
ifdef
HAVE_WINCE
...
@@ -1283,6 +1283,9 @@ pa_snapshot_v$(PORTAUDIO_VERSION).tar.gz:
...
@@ -1283,6 +1283,9 @@ pa_snapshot_v$(PORTAUDIO_VERSION).tar.gz:
portaudio
:
pa_snapshot_v$(PORTAUDIO_VERSION).tar.gz
portaudio
:
pa_snapshot_v$(PORTAUDIO_VERSION).tar.gz
$(EXTRACT_GZ)
$(EXTRACT_GZ)
ifneq
($(HOST),$(BUILD))
(
patch
-p
0 < Patches/portaudio-cross.patch
;
cd
$@
;
autoconf
)
endif
.portaudio
:
portaudio
.portaudio
:
portaudio
(
cd
$<
;
$(HOSTCC)
./configure
$(HOSTCONF)
--prefix
=
$(PREFIX)
&&
make
&&
make
install
)
(
cd
$<
;
$(HOSTCC)
./configure
$(HOSTCONF)
--prefix
=
$(PREFIX)
&&
make
&&
make
install
)
...
...
extras/contrib/src/Patches/portaudio-cross.patch
0 → 100644
View file @
ccc4b2ca
--- portaudio/configure.in 2005-12-01 15:07:26.000000000 +0000
+++ portaudio-new/configure.in 2005-12-09 18:48:43.000000000 +0000
@@ -75,9 +75,10 @@
dnl sizeof checks: we will need a 16-bit and a 32-bit type
-AC_CHECK_SIZEOF(short)
-AC_CHECK_SIZEOF(int)
-AC_CHECK_SIZEOF(long)
+dnl don't work if you crosscompile
+dnl AC_CHECK_SIZEOF(short)
+dnl AC_CHECK_SIZEOF(int)
+dnl AC_CHECK_SIZEOF(long)
dnl extra variables
AC_SUBST(OTHER_OBJS)
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