diff options
author | eddyg <[email protected]> | 2008-12-02 01:07:02 +0000 |
---|---|---|
committer | eddyg <[email protected]> | 2008-12-02 01:07:02 +0000 |
commit | 29f8a536e11e713e6f8d983aca4405ab017a21e7 (patch) | |
tree | 108bc0a97311cdfc82ac63e27c136de60fc531ff /contrib/Jamfile | |
parent | 2dddca5b3135ed939df9cdcaf2e5ffb2e4d7f44f (diff) |
Add metadata support to libhb, add importing of MP4 metadata, add export of MP4 metadata, add importing of MP4 chapters, add seek to chapter for input files, add new libmp4v2, remove old MP4 chapter muxing - now in libmp4v2.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1987 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'contrib/Jamfile')
-rw-r--r-- | contrib/Jamfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/Jamfile b/contrib/Jamfile index c6dd0e4fe..c24c7602d 100644 --- a/contrib/Jamfile +++ b/contrib/Jamfile @@ -268,8 +268,8 @@ actions LibMp4v2 { cd `dirname $(>)` && CONTRIB=`pwd` && rm -rf libmp4v2 && (gzip -dc libmp4v2.tar.gz | tar xf - ) && - cd libmp4v2 && $(LIBMP4V2_PATCH) ./configure --prefix=$CONTRIB && - $(MAKE) && make install && + cd libmp4v2 && $(LIBMP4V2_PATCH) rm -rf build && mkdir build && cd build && + ../configure --disable-shared --disable-debug --prefix=$CONTRIB && $(MAKE) && make install && $(STRIP) $CONTRIB/lib/libmp4v2.a } Wget $(SUBDIR)/libmp4v2.tar.gz : $(SUBDIR)/version_libmp4v2.txt ; |