root/freepbx/trunk/amp_conf/astetc/modules.conf

Revision 1175, 1.2 kB (checked in by rcourtna, 7 years ago)

format_ogg_vorbis.so is optionally compield and will crash * (esp A@H boxes)
ifneq ($(wildcard $(CROSS_COMPILE_TARGET)/usr/include/vorbis/codec.h),)

FORMAT_LIBS+=format_ogg_vorbis.so

endif

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1 ;
2 ; Asterisk configuration file
3 ;
4 ; Module Loader configuration file
5 ;
6
7 [modules]
8 autoload=yes
9 ;
10 ; If you want, load the GTK console right away. 
11 ; Don't load the KDE console since
12 ; it's not as sophisticated right now.
13 ;
14 noload => pbx_gtkconsole.so
15 ;load => pbx_gtkconsole.so
16 noload => pbx_kdeconsole.so
17 ;
18 ; Intercom application is obsoleted by
19 ; chan_oss.  Don't load it.
20 ;
21 noload => app_intercom.so
22 ;
23 ; DON'T load the chan_modem.so, as they are obsolete in * 1.2
24
25 noload => chan_modem.so
26 noload => chan_modem_aopen.so
27 noload => chan_modem_bestdata.so
28 noload => chan_modem_i4l.so
29
30 ; Ensure that format_* modules are loaded before res_musiconhold
31 ;load => format_ogg_vorbis.so
32 load => format_wav.so
33 load => format_pcm.so
34 load => format_au.so
35 ; This isn't part of 'asterisk' iteslf, it's part of asterisk-addons. If this isn't
36 ; installed, asterisk will fail to start. But it does need to go here for native MOH
37 ; to work using mp3's.
38 load => format_mp3.so
39 load => res_musiconhold.so
40 ;
41 ; Load either OSS or ALSA, not both
42 ; By default, load OSS only (automatically) and do not load ALSA
43 ;
44 noload => chan_alsa.so
45 noload => chan_oss.so
46 ;
47 ; Module names listed in "global" section will have symbols globally
48 ; exported to modules loaded after them.
49 ;
50 [global]
Note: See TracBrowser for help on using the browser.