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
9c139c97
Commit
9c139c97
authored
Jan 27, 2006
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* added NASM to the contribs (OS X x86 only) so that we can build x264.
parent
c3699cc1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
2 deletions
+23
-2
extras/contrib/src/Makefile
extras/contrib/src/Makefile
+22
-2
extras/contrib/src/packages.mak
extras/contrib/src/packages.mak
+1
-0
No files found.
extras/contrib/src/Makefile
View file @
9c139c97
...
...
@@ -119,12 +119,12 @@ ifdef HAVE_DARWIN_OS
all
:
.autoconf .automake .libtool .iconv .intl .pkgcfg .freetype .fribidi
\
.a52 .mpeg2 .id3tag .mad .ogg .vorbis .vorbisenc .theora
\
.FLAC .speex .shout .faad .faac .lame .twolame .ebml .matroska .ffmpeg
\
.dvdcss .dvdnav .dvdread .dvbpsi .live .caca .mod
\
.dvdcss .dvdnav .dvdread .dvbpsi .live .
x264 .
caca .mod
\
.png .gpg-error .gcrypt .gnutls .opendaap .cddb .cdio .vcdimager .SDL_image
\
.glib .libidl .gecko .mpcdec .expat .clinkcc .aclocal
# .mozilla will build an entire mozilla. it can be used if we need to create a new .gecko package
ifneq
($(HOST),i686-apple-darwin8)
all
:
.x264
.goom2k4
all
:
.goom2k4
endif
else
...
...
@@ -1152,7 +1152,11 @@ else
endif
endif
ifeq
($(HOST),i686-apple-darwin8)
.x264
:
.nasm x264
else
.x264
:
x264
endif
(
cd
$<
;
./configure
$(X264CONF)
--prefix
=
$(PREFIX)
&&
make
&&
make
install
)
touch
$@
...
...
@@ -1806,6 +1810,22 @@ CLEAN_FILE += .clinkcc
CLEAN_PKG
+=
clinkcc
DISTCLEAN_PKG
+=
clinkcc-
$(CLINKCC_VERSION)
.tar.gz
# ***************************************************************************
# NASM assembler
# ***************************************************************************
nasm
:
echo
$(NASM_CVSROOT)
A
>
./nasm.cvs
CVS_PASSFILE
=
./nasm.cvs cvs
-z3
-d
$(NASM_CVSROOT)
co nasm
(
cd
$@
&&
autoconf
&&
autoheader
)
.nasm
:
nasm
(
cd
$<
&&
$(HOSTCC)
./configure
--prefix
=
$(PREFIX)
&&
make
&&
make
install
)
touch
$@
CLEAN_FILE
+=
.nasm
CLEAN_PKG
+=
nasm nasm.cvs
# ***************************************************************************
# Copy aclocal files
# This is necessary for --missing aclocal to succeed after a
...
...
extras/contrib/src/packages.mak
View file @
9c139c97
...
...
@@ -160,3 +160,4 @@ CLINKCC_VERSION=171
CLINKCC_URL
=
$(SF)
/clinkcc/clinkcc
$(CLINKCC_VERSION)
.tar.gz
EXPAT_VERSION
=
1.95.8
EXPAT_URL
=
$(SF)
/expat/expat-
$(EXPAT_VERSION)
.tar.gz
NASM_CVSROOT
=
:pserver:anonymous@cvs.sourceforge.net:/cvsroot/nasm
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