Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
e58ef94f
Commit
e58ef94f
authored
Jul 18, 2002
by
Jon Lech Johansen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ./configure.in: added mp4 module, default disabled
parent
59b254b8
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
0 deletions
+18
-0
Makefile
Makefile
+2
-0
Makefile.opts.in
Makefile.opts.in
+1
-0
configure.in
configure.in
+15
-0
No files found.
Makefile
View file @
e58ef94f
...
...
@@ -36,6 +36,7 @@ PLUGINS_DIR := a52 \
esd
\
fb
\
ffmpeg
\
mp4
\
filter
\
fx
\
ggi
\
...
...
@@ -99,6 +100,7 @@ PLUGINS_TARGETS := a52/a52 \
esd/esd
\
fb/fb
\
ffmpeg/ffmpeg
\
mp4/mp4
\
filter/filter_clone
\
filter/filter_crop
\
filter/filter_deinterlace
\
...
...
Makefile.opts.in
View file @
e58ef94f
...
...
@@ -101,6 +101,7 @@ dvdread_LDFLAGS = @dvdread_LDFLAGS@
esd_LDFLAGS
=
@esd_LDFLAGS@
filter_distort_LDFLAGS
=
@filter_distort_LDFLAGS@
ffmpeg_LDFLAGS
=
@ffmpeg_LDFLAGS@
mp4_LDFLAGS
=
@mp4_LDFLAGS@
ggi_LDFLAGS
=
@ggi_LDFLAGS@
glide_LDFLAGS
=
@glide_LDFLAGS@
gnome_LDFLAGS
=
@gnome_LDFLAGS@
...
...
configure.in
View file @
e58ef94f
...
...
@@ -969,6 +969,20 @@ then
fi
fi
dnl
dnl MP4 plugin
dnl
AC_ARG_ENABLE(mp4,
[ --enable-mp4 MP4 support (default disabled)])
if test "x${enable_mp4}" = "xyes"
then
AC_CHECK_HEADER(zlib.h,
AC_CHECK_LIB(z, inflateEnd,
[ PLUGINS="${PLUGINS} mp4"
mp4_LDFLAGS="${mp4_LDFLAGS} -lz" ],
[ AC_MSG_ERROR([cannot find zlib library...]) ]),
[ AC_MSG_ERROR([cannot find zlib header...]) ])
fi
dnl special case for BeOS
if test "x${SYS}" = "xbeos"
...
...
@@ -1786,6 +1800,7 @@ AC_SUBST(mpeg_ts_dvbpsi_LDFLAGS)
AC_SUBST(esd_LDFLAGS)
AC_SUBST(filter_distort_LDFLAGS)
AC_SUBST(ffmpeg_LDFLAGS)
AC_SUBST(mp4_LDFLAGS)
AC_SUBST(ggi_LDFLAGS)
AC_SUBST(glide_LDFLAGS)
AC_SUBST(gnome_LDFLAGS)
...
...
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