openwrt / telephony

The telephony packages feed
104 stars 240 forks source link

asterisk-chan-sccp: autoconf fixes #805

Closed micmac1 closed 1 year ago

micmac1 commented 1 year ago

Since OpenWrt updated autoconf to 2.71 configure fails, because "$ac_dir" is now empty when configure attempts to run "./tools/versioncheck". With previous autoconf "$ac_dir" contained "autoconf" at this point in the script.

As a workaround "$ac_dir" is replaced with "$ac_aux_dir", which incidentally contains "autoconf".

Also a build dependency is added for gettext-full, as it provides iconv.m4. Previously this was provided by libiconv, but not anymore. Without iconv.m4 autoreconf fails.

Some patches were refreshed to allow CI to pass.

Maintainer: @jslachta Compile tested: SDK master Run tested: N/A, build fix Description: Fix autoconf issues

FIY @dkgroot would be nice to have this upstream. Are you OK with the $ac_aux_dir approach? If yes happy to send pull request.