alphallc / freeswitch

Freeswitch Gentoo overlay
Other
9 stars 3 forks source link

freetdm config files are istalled in /etc/ instead of in /etc/freeswitch/ #19

Open joe9 opened 7 years ago

joe9 commented 7 years ago

Hello,

The below freetdm config files are installed in /etc/:

        autoload_configs
        freetdm.conf
        pika.conf
        tones.conf
        wanpipe.conf
        zt.conf

Patch to fix the above issue:

smart_sudo cat freetdm-use-configure-argument-sysconfdir.patch
--- libs/freetdm/configure.ac   2015-09-30 12:38:45.512297573 -0400
+++ libs/freetdm/configure.ac   2015-09-30 12:38:54.808515491 -0400
@@ -49,7 +49,7 @@
 if test "$sysconfdir" = "\${prefix}/etc" ; then
        confdir="$prefix/conf"
 else
-       confdir="$sysconfdir"
+       eval confdir="${sysconfdir}/freeswitch"
 fi

 AC_SUBST([confdir])

Thanks