summaryrefslogtreecommitdiff
path: root/recipes/libdca.recipe
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/libdca.recipe')
-rw-r--r--recipes/libdca.recipe6
1 files changed, 2 insertions, 4 deletions
diff --git a/recipes/libdca.recipe b/recipes/libdca.recipe
index 8df00fce..c8cccdaf 100644
--- a/recipes/libdca.recipe
+++ b/recipes/libdca.recipe
@@ -7,7 +7,6 @@ class Recipe(recipe.Recipe):
url = 'https://download.videolan.org/pub/videolan/libdca/%(version)s/libdca-%(version)s.tar.bz2'
tarball_checksum = 'dba022e022109a5bacbe122d50917769ff27b64a7bba104bd38ced8de8510642'
licenses = [License.GPLv2Plus]
- autoreconf = True
files_libs = ['libdca']
files_bins = ['extract_dca', 'extract_dcs', 'dcadec', 'dcsdec']
@@ -17,9 +16,8 @@ class Recipe(recipe.Recipe):
def prepare(self):
if self.config.target_platform == Platform.ANDROID:
self.configure_options += ' --disable-oss'
- if self.config.platform == Platform.WINDOWS:
- self.override_libtool = False
- self.autoreconf = False
+ if self.config.platform != Platform.WINDOWS:
+ self.autoreconf = True
# Don't enable always-inline, breaks the build on macos (space is significant)
self.set_env('ac_cv_c_inline', 'inline ')