[asterisk-users] question on makefile

2010-01-06 Thread Jerry Geis
There is a line like in codes/Makefile $(if $(filter codec_lpc10,$(EMBEDDED_MODS)),modules.link,codec_lpc10.so): $(LIBLPC10) What is filter? Where is filter? whereis filter doesnt return anything find . | grep filter in asterisk root directory returns nothing. Thanks, Jerry

Re: [asterisk-users] question on makefile

2010-01-06 Thread Tilghman Lesher
On Wednesday 06 January 2010 13:45:55 Jerry Geis wrote: There is a line like in codes/Makefile $(if $(filter codec_lpc10,$(EMBEDDED_MODS)),modules.link,codec_lpc10.so): $(LIBLPC10) What is filter? Where is filter? whereis filter doesnt return anything find . | grep filter in asterisk root

Re: [asterisk-users] question on makefile

2010-01-06 Thread Jerry Geis
It's a Makefile command. See: http://www.gnu.org/software/automake/manual/make/Text-Functions.html#index-filter-554 great - thanks is there no method by the configure command to --disable-FEATURE??? the help says its there but doesnt seem to do anything for me. example: ./configure

Re: [asterisk-users] question on makefile

2010-01-06 Thread Kevin P. Fleming
Jerry Geis wrote: is there no method by the configure command to --disable-FEATURE??? There is not. The Asterisk configure script is used for platform specific settings, locating libraries and header files and the like. It is not used (directly) for controlling which portions of Asterisk are