diff options
author | Eric Wong <normalperson@yhbt.net> | 2006-09-06 09:26:51 +0000 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2006-09-06 09:26:51 +0000 |
commit | 412cb1ee105a74999a3ffac4e60e6602c5f2e541 (patch) | |
tree | fc8b9e117fc3ff5eaf0f55113be9dc89418b7a6f /bs/dep-input.sh | |
parent | 7b6d45f50fa49f4da56cc4ae29758a01ec958792 (diff) | |
download | mpd-412cb1ee105a74999a3ffac4e60e6602c5f2e541.tar.gz mpd-412cb1ee105a74999a3ffac4e60e6602c5f2e541.tar.xz mpd-412cb1ee105a74999a3ffac4e60e6602c5f2e541.zip |
bs: a work in progress..
git-svn-id: https://svn.musicpd.org/mpd/trunk@4737 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r-- | bs/dep-input.sh | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/bs/dep-input.sh b/bs/dep-input.sh new file mode 100644 index 000000000..ece570875 --- /dev/null +++ b/bs/dep-input.sh @@ -0,0 +1,46 @@ +t_aac () +{ + dep_paths aac + if test_header 'faad' && test_header 'mp4ff'; then + ldflags="-lfaad -lmp4ff" + echo t + fi +} + +audiofile () +{ + dep_paths audiofile + if test_header 'audiofile'; then + ldflags="-lm -laudiofile" + echo t + fi + +} + +flac () +{ +} + +oggvorbis () +{ +} + +oggflac () +{ +} + +mod () +{ +} + +mpc () +{ +} + +mp3 () +{ +} + +tremor () +{ +} |