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
d85d6537
Commit
d85d6537
authored
Oct 08, 2010
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
contribs: fix copy of aclocal m4 files
make sure they are copied only after all contribs have been built
parent
81d3d945
Changes
9
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
13 additions
and
22 deletions
+13
-22
extras/contrib/Makefile
extras/contrib/Makefile
+5
-0
extras/contrib/src/Distributions/beos.mak
extras/contrib/src/Distributions/beos.mak
+2
-2
extras/contrib/src/Distributions/darwin.mak
extras/contrib/src/Distributions/darwin.mak
+1
-1
extras/contrib/src/Distributions/darwin64.mak
extras/contrib/src/Distributions/darwin64.mak
+1
-1
extras/contrib/src/Distributions/debian.mak
extras/contrib/src/Distributions/debian.mak
+1
-2
extras/contrib/src/Distributions/unix.mak
extras/contrib/src/Distributions/unix.mak
+1
-2
extras/contrib/src/Distributions/win32.mak
extras/contrib/src/Distributions/win32.mak
+1
-1
extras/contrib/src/Distributions/win64.mak
extras/contrib/src/Distributions/win64.mak
+1
-1
extras/contrib/src/Makefile
extras/contrib/src/Makefile
+0
-12
No files found.
extras/contrib/Makefile
View file @
d85d6537
...
@@ -38,6 +38,11 @@ all: $(TARGETALL)
...
@@ -38,6 +38,11 @@ all: $(TARGETALL)
using-src
:
using-src
:
$(MAKE)
-C
src
$(MAKE)
-C
src
#Copy aclocal files
# This is necessary for --missing aclocal to succeed after a
# configure.ac/Makefile.am change in the vlc root dir
cp
-R
$(PREFIX)
/share/aclocal/
*
../../m4/
ifdef
HAVE_DARWIN_10
ifdef
HAVE_DARWIN_10
(cd
$(PREFIX)/lib
&&
sed
-e
's%/usr/lib/libiconv.la%$(PREFIX)/lib/libiconv.la%g'
-i.orig
*.la
&&
rm
-f
*.la.orig)
(cd
$(PREFIX)/lib
&&
sed
-e
's%/usr/lib/libiconv.la%$(PREFIX)/lib/libiconv.la%g'
-i.orig
*.la
&&
rm
-f
*.la.orig)
endif
endif
...
...
extras/contrib/src/Distributions/beos.mak
View file @
d85d6537
...
@@ -4,7 +4,7 @@ ifeq ($(HOST),$(BUILD))
...
@@ -4,7 +4,7 @@ ifeq ($(HOST),$(BUILD))
all
:
.perl .autoconf .automake .libtool .iconv .intl .freetype .fribidi
\
all
:
.perl .autoconf .automake .libtool .iconv .intl .freetype .fribidi
\
.a52 .mpeg2 .mad .ogg .vorbis .vorbisenc .theora
\
.a52 .mpeg2 .mad .ogg .vorbis .vorbisenc .theora
\
.flac .speex .faad .lame .ebml .matroska .ffmpeg .dvdcss
\
.flac .speex .faad .lame .ebml .matroska .ffmpeg .dvdcss
\
.dvdnav .dvbpsi .dca
.aclocal
.dvdnav .dvbpsi .dca
#.speex seems
#.speex seems
else
else
# Cross compiling: we already have the Linux tools, only build the
# Cross compiling: we already have the Linux tools, only build the
...
@@ -12,6 +12,6 @@ else
...
@@ -12,6 +12,6 @@ else
all
:
.iconv .intl .freetype .fribidi
\
all
:
.iconv .intl .freetype .fribidi
\
.a52 .mpeg2 .mad .ogg .vorbis .vorbisenc .theora
\
.a52 .mpeg2 .mad .ogg .vorbis .vorbisenc .theora
\
.flac .faad .faac .lame .twolame .ebml .matroska .ffmpeg .dvdcss
\
.flac .faad .faac .lame .twolame .ebml .matroska .ffmpeg .dvdcss
\
.dvdnav .dvbpsi .dca
.aclocal
.dvdnav .dvbpsi .dca
endif
endif
#.speex
#.speex
extras/contrib/src/Distributions/darwin.mak
View file @
d85d6537
...
@@ -6,7 +6,7 @@ all: .autoconf .gnumake .automake .libtool .intl .pkgcfg .yasm .freetype \
...
@@ -6,7 +6,7 @@ all: .autoconf .gnumake .automake .libtool .intl .pkgcfg .yasm .freetype \
.png .gpg-error .gcrypt .gnutls .cddb .cdio .vcdimager
\
.png .gpg-error .gcrypt .gnutls .cddb .cdio .vcdimager
\
.SDL_image .gecko .mpcdec .dirac_encoder .dirac_decoder
\
.SDL_image .gecko .mpcdec .dirac_encoder .dirac_decoder
\
.dca .tag .x264 .goom2k4 .lua .zvbi .fontconfig .ncurses .liboil
\
.dca .tag .x264 .goom2k4 .lua .zvbi .fontconfig .ncurses .liboil
\
.schroedinger .libass .libupnp .kate .sqlite3 .Sparkle
.aclocal
.schroedinger .libass .libupnp .kate .sqlite3 .Sparkle
# .expat don't work with SDK yet
# .expat don't work with SDK yet
# .glib .IDL .gecko are required to build the mozilla plugin
# .glib .IDL .gecko are required to build the mozilla plugin
# .mozilla-macosx will build an entire mozilla. it can be used if we need to create a new .gecko package
# .mozilla-macosx will build an entire mozilla. it can be used if we need to create a new .gecko package
...
...
extras/contrib/src/Distributions/darwin64.mak
View file @
d85d6537
...
@@ -6,7 +6,7 @@ all: .autoconf .gnumake .automake .libtool .intl .pkgcfg .yasm .freetype \
...
@@ -6,7 +6,7 @@ all: .autoconf .gnumake .automake .libtool .intl .pkgcfg .yasm .freetype \
.png .jpeg .tiff .gpg-error .gcrypt .gnutls .cddb .cdio .vcdimager
\
.png .jpeg .tiff .gpg-error .gcrypt .gnutls .cddb .cdio .vcdimager
\
.gecko .mpcdec .dirac_encoder .dirac_decoder
\
.gecko .mpcdec .dirac_encoder .dirac_decoder
\
.dca .tag .x264 .lua .zvbi .fontconfig .ncurses .liboil
\
.dca .tag .x264 .lua .zvbi .fontconfig .ncurses .liboil
\
.schroedinger .libass .libupnp .kate .sqlite3 .Sparkle
.aclocal
.schroedinger .libass .libupnp .kate .sqlite3 .Sparkle
# .expat don't work with SDK yet
# .expat don't work with SDK yet
# .glib .IDL .gecko are required to build the mozilla plugin
# .glib .IDL .gecko are required to build the mozilla plugin
# .mozilla-macosx will build an entire mozilla. it can be used if we need to create a new .gecko package
# .mozilla-macosx will build an entire mozilla. it can be used if we need to create a new .gecko package
...
...
extras/contrib/src/Distributions/debian.mak
View file @
d85d6537
...
@@ -6,7 +6,6 @@ all: .iconv .intl .freetype .fribidi .zlib \
...
@@ -6,7 +6,6 @@ all: .iconv .intl .freetype .fribidi .zlib \
.png .gpg-error .gcrypt .gnutls .mpcdec
\
.png .gpg-error .gcrypt .gnutls .mpcdec
\
.dvdnav .dvbpsi .dirac
\
.dvdnav .dvbpsi .dirac
\
.dca .raw1394 .dc1394 .lua .zvbi
\
.dca .raw1394 .dc1394 .lua .zvbi
\
.kate .tiger
\
.kate .tiger
.aclocal
# .SDL_image .daap .cddb .cdio .vcdimager
# .SDL_image .daap .cddb .cdio .vcdimager
extras/contrib/src/Distributions/unix.mak
View file @
d85d6537
...
@@ -6,8 +6,7 @@ all: .iconv .intl .freetype .fribidi .zlib \
...
@@ -6,8 +6,7 @@ all: .iconv .intl .freetype .fribidi .zlib \
.png .gpg-error .gcrypt .gnutls .mpcdec
\
.png .gpg-error .gcrypt .gnutls .mpcdec
\
.dvdnav .dvbpsi .dirac
\
.dvdnav .dvbpsi .dirac
\
.dca .raw1394 .dc1394 .lua .zvbi
\
.dca .raw1394 .dc1394 .lua .zvbi
\
.kate .tiger
\
.kate .tiger
.aclocal
# .png .gpg-error .gcrypt .gnutls .mpcdec \
# .png .gpg-error .gcrypt .gnutls .mpcdec \
# .SDL_image .daap .cddb .cdio .vcdimager
# .SDL_image .daap .cddb .cdio .vcdimager
extras/contrib/src/Distributions/win32.mak
View file @
d85d6537
...
@@ -7,5 +7,5 @@ all: .iconv .intl .freetype .fribidi .zlib \
...
@@ -7,5 +7,5 @@ all: .iconv .intl .freetype .fribidi .zlib \
.dvdnav .dvbpsi .qt4_win32 .schroedinger .SDL_image
\
.dvdnav .dvbpsi .qt4_win32 .schroedinger .SDL_image
\
.dx_headers .dshow_headers .gecko .dca
\
.dx_headers .dshow_headers .gecko .dca
\
.lua .tag .fontconfig .portaudio .kate .libass .zvbi
\
.lua .tag .fontconfig .portaudio .kate .libass .zvbi
\
.fluid .
aclocal .
peflags .cddb .sqlite3 .libprojectM
.fluid .peflags .cddb .sqlite3 .libprojectM
# .daap .cdio .vcdimager
# .daap .cdio .vcdimager
extras/contrib/src/Distributions/win64.mak
View file @
d85d6537
...
@@ -9,5 +9,5 @@ all: .iconv .intl .freetype .fribidi .zlib \
...
@@ -9,5 +9,5 @@ all: .iconv .intl .freetype .fribidi .zlib \
.lua .tag .fontconfig .portaudio .kate .libass
.lua .tag .fontconfig .portaudio .kate .libass
# .pthreads
# .pthreads
#.zvbi \
#.zvbi \
# .fluid
.aclocal
# .fluid
# .daap .cddb .cdio .vcdimager
# .daap .cddb .cdio .vcdimager
extras/contrib/src/Makefile
View file @
d85d6537
...
@@ -2210,18 +2210,6 @@ CLEAN_FILE += .tiger
...
@@ -2210,18 +2210,6 @@ CLEAN_FILE += .tiger
CLEAN_PKG
+=
libtiger
CLEAN_PKG
+=
libtiger
DISTCLEAN_PKG
+=
libtiger-
$(TIGER_VERSION)
.tar.gz
DISTCLEAN_PKG
+=
libtiger-
$(TIGER_VERSION)
.tar.gz
# ***************************************************************************
# Copy aclocal files
# This is necessary for --missing aclocal to succeed after a
# configure.ac/Makefile.am change in the vlc root dir
# **************************************************************************
.aclocal
:
cp
-R
$(PREFIX)
/share/aclocal/
*
../../../m4/
touch
$@
CLEAN_FILE
+=
.aclocal
# ***************************************************************************
# ***************************************************************************
# TagLib read and editing of tags of popular audio formats
# TagLib read and editing of tags of popular audio formats
# ***************************************************************************
# ***************************************************************************
...
...
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