diff options
author | jstebbins <[email protected]> | 2011-10-25 02:18:15 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2011-10-25 02:18:15 +0000 |
commit | 4e43bd06146941548c894321a34619e199f1d2f0 (patch) | |
tree | 402ff66db9ce22fcbf3823772aa2d498114e1418 /contrib/yasm | |
parent | 2c8e57bd3ee064493f2c188b08f137a3d02c6985 (diff) |
Add optional yasm contrib
To enable, "configure --enable-local-yasm"
Ubuntu 10.04 LTS (lucid) has yasm 0.8 which is no longer compatible with
x264. This change allows us to build yasm as a contrib and use it for
building both Libav and x264 which require yasm.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4314 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'contrib/yasm')
-rw-r--r-- | contrib/yasm/module.defs | 5 | ||||
-rw-r--r-- | contrib/yasm/module.rules | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/contrib/yasm/module.defs b/contrib/yasm/module.defs new file mode 100644 index 000000000..90215575f --- /dev/null +++ b/contrib/yasm/module.defs @@ -0,0 +1,5 @@ +$(eval $(call import.MODULE.defs,YASM,yasm)) +$(eval $(call import.CONTRIB.defs,YASM)) + +YASM.FETCH.url = http://download.handbrake.fr/handbrake/contrib/yasm-1.1.0.tar.gz + diff --git a/contrib/yasm/module.rules b/contrib/yasm/module.rules new file mode 100644 index 000000000..ade13f959 --- /dev/null +++ b/contrib/yasm/module.rules @@ -0,0 +1,2 @@ +$(eval $(call import.MODULE.rules,YASM)) +$(eval $(call import.CONTRIB.rules,YASM)) |