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
cabe90df
Commit
cabe90df
authored
Jun 01, 2009
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
contribs: use GCC 4.2.1 for libgoom2k4, too.
Updated binary packages are on the way.
parent
ebf4277a
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
12 deletions
+10
-12
extras/contrib/bootstrap
extras/contrib/bootstrap
+4
-4
extras/contrib/src/Makefile
extras/contrib/src/Makefile
+6
-8
No files found.
extras/contrib/bootstrap
View file @
cabe90df
...
...
@@ -335,8 +335,8 @@ if test $HAVE_DARWIN_9; then
set
+x
echo
echo
"*****************************************************************"
echo
"* We are using
the llvm-gcc-4.2 compiler on OS X by default,
*"
echo
"*
so compilation will fail if it isn't installed.
*"
echo
"* We are using
both the llvm-gcc-4.2 and the gcc-4.2 compilers
*"
echo
"*
on OS X, so compilation will fail if these are not installed.
*"
echo
"*****************************************************************"
fi
...
...
@@ -346,9 +346,9 @@ if test $HAVE_DARWIN_10; then
echo
"*****************************************************************"
echo
"* You are running Darwin 10. *"
echo
"* For testing purposes, VLC will be compiled in 64bit mode. *"
echo
"* While doing so, for t
ime being, the 10.5 SDK is used.
*"
echo
"* While doing so, for t
he time being, the 10.5 SDK is used.
*"
echo
"* Note that in contrast to our Darwin 9 builds, we are not *"
echo
"* using the llvm compiler, but
plain GCC 4.2.
*"
echo
"* using the llvm compiler, but
GCC 4.2.
*"
echo
"*****************************************************************"
set
-x
fi
extras/contrib/src/Makefile
View file @
cabe90df
...
...
@@ -156,10 +156,10 @@ endif
ifdef
HAVE_DARWIN_OS_ON_INTEL
FFMPEG_CFLAGS
+=
-DHAVE_LRINTF
endif
X264
CC
+=
CC
=
"/Developer/usr/bin/gcc-4.2"
X264
CC
+=
CXX
=
"/Developer/usr/bin/g++-4.2"
NONLLVM
CC
+=
CC
=
"/Developer/usr/bin/gcc-4.2"
NONLLVM
CC
+=
CXX
=
"/Developer/usr/bin/g++-4.2"
else
X264
CC
+=
$(HOSTCC)
NONLLVM
CC
+=
$(HOSTCC)
endif
ifdef
HAVE_AMR
...
...
@@ -1328,15 +1328,13 @@ ifdef HAVE_WIN32
(
cd
$@
;
dos2unix configure.in
)
patch
-p0
< Patches/goom2k4-0-win32.patch
else
ifndef
HAVE_DARWIN_OS
patch
-p0
< Patches/goom2k4-0-mmx.patch
endif
endif
patch
-p0
< Patches/goom2k4-0-memleaks.patch
.goom2k4
:
goom
ifdef
HAVE_DARWIN_OS
(
cd
$<
;
./configure
--prefix
=
$(PREFIX)
--disable-shared
--enable-static
&&
make
&&
make
install
)
(
cd
$<
;
$(NONLLVMCC)
./configure
--prefix
=
$(PREFIX)
--disable-shared
--enable-static
&&
make
&&
make
install
)
else
(
cd
$<
&&
rm
-f
configure
;
aclocal
-I
m4/
&&
automake
--add-missing
&&
autoconf configure.in
>
configure
&&
$(HOSTCC)
sh ./configure
$(HOSTCONF)
--prefix
=
$(PREFIX)
--disable-shared
--enable-static
--disable-glibtest
--disable-gtktest
&&
make
&&
make
install
)
endif
...
...
@@ -1439,10 +1437,10 @@ ifdef HAVE_WIN32
else
ifdef
HAVE_DARWIN_OS_ON_INTEL
.x264
:
x264 .yasm
(
cd
$<
;
$(
X264
CC)
./configure
$(X264CONF)
--prefix
=
"
$(PREFIX)
"
&&
make
&&
make
install
)
(
cd
$<
;
$(
NONLLVM
CC)
./configure
$(X264CONF)
--prefix
=
"
$(PREFIX)
"
&&
make
&&
make
install
)
else
.x264
:
x264
(
cd
$<
;
$(
X264
CC)
./configure
$(X264CONF)
--prefix
=
"
$(PREFIX)
"
&&
make
&&
make
install
)
(
cd
$<
;
$(
NONLLVM
CC)
./configure
$(X264CONF)
--prefix
=
"
$(PREFIX)
"
&&
make
&&
make
install
)
endif
endif
touch
$@
...
...
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