diff options
| author | Romain Naour <romain.naour@gmail.com> | 2016-12-03 13:17:35 +0100 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-12-04 16:22:08 +0100 |
| commit | 06d8abd0908524d6623958612e5ba8093ab5d921 (patch) | |
| tree | efab57acda703c5d15f1de1519f5e8b6f2d476df | |
| parent | 280bb6807619e2e858836435f44aad0cccd27a40 (diff) | |
| download | buildroot-06d8abd0908524d6623958612e5ba8093ab5d921.tar.gz buildroot-06d8abd0908524d6623958612e5ba8093ab5d921.zip | |
package/aubio: add libsndfile optional dependency
Signed-off-by: Romain Naour <romain.naour@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| -rw-r--r-- | package/aubio/aubio.mk | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/package/aubio/aubio.mk b/package/aubio/aubio.mk index aa4ddd0fce..e1694ab64d 100644 --- a/package/aubio/aubio.mk +++ b/package/aubio/aubio.mk @@ -16,9 +16,15 @@ AUBIO_CONF_OPTS = \ --disable-atlas \ --disable-samplerate \ --disable-avcodec \ - --disable-sndfile \ --disable-jack \ --disable-fftw3 \ --disable-fftw3f +ifeq ($(BR2_PACKAGE_LIBSNDFILE),y) +AUBIO_DEPENDENCIES += libsndfile +AUBIO_CONF_OPTS += --enable-sndfile +else +AUBIO_CONF_OPTS += --disable-sndfile +endif + $(eval $(waf-package)) |

