diff --git a/multimedia/sound/speech-dispatcher/actions.py b/multimedia/sound/speech-dispatcher/actions.py index 00811603f1..e916d7dd28 100644 --- a/multimedia/sound/speech-dispatcher/actions.py +++ b/multimedia/sound/speech-dispatcher/actions.py @@ -12,6 +12,7 @@ from pisi.actionsapi import shelltools def setup(): shelltools.system("sed -i 's/cicero //g' configure.ac") shelltools.system("sed -i 's/sd_cicero//g' src/modules/Makefile.am") + autotools.autoreconf("-i") autotools.configure("--disable-static \ --enable-shared \ @@ -22,6 +23,8 @@ def setup(): --with-pulse \ --with-default-audio-method=alsa") + pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ") + def build(): autotools.make()