aboutsummaryrefslogtreecommitdiffstats
path: root/configure
AgeCommit message (Collapse)AuthorFilesLines
2006-12-05Regenerate configure from Qwell's last commit.file1-20/+7
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@48281 f38db490-d61c-443f-a65b-d21fe96a405b
2006-12-01FreeBSD 6.1 does not include wget by default. However, it has fetch which willrussell1-8/+102
work just fine for our purposes of downloading the sounds packages. So, check for both wget and fetch and the configure script and use what was found to download them. If neither one was found, and sound packages are selected that must be downloaded, the install process will print out an informative error message indicating the situation. Also, fix a couple places where "make" was hard coded into some output messages by replacing them with the $(MAKE) variable. (issue #8451, initial patch by pabelanger, with additional modifications by me) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@48190 f38db490-d61c-443f-a65b-d21fe96a405b
2006-11-16check for pre-1.4 versions of Zaptel and abort the configure script if found ↵kpfleming1-0/+92
with an appropriate error message git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@47758 f38db490-d61c-443f-a65b-d21fe96a405b
2006-11-13AC_PROG_SED is included in autoconf 2.60, but apparently it is not includedrussell1-1/+1
in 2.59. So, to maintain compatability with 2.59 since it is a small change, copy this macro into acinclude.m4 and rename it to AST_PROG_SED. (issue #8345) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@47527 f38db490-d61c-443f-a65b-d21fe96a405b
2006-11-08Copy the macros from libtool.m4 to our own acinclude.m4 such that libtool isrussell1-168/+216
no longer required to be installed to be able to generated the configure script. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@47327 f38db490-d61c-443f-a65b-d21fe96a405b
2006-11-01Fixes for cross-compilation on mips russell1-4/+47
(issue #8058, ywalther, with some modifications) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@46847 f38db490-d61c-443f-a65b-d21fe96a405b
2006-11-01Add a check in the configure script to determine whether ld is GNU ld or not.russell1-172/+345
This is needed because module embedding only works for gnu ld. GNU ld is now listed as a dependency for all of the module embedding options in menuselect. (issue #8143) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@46845 f38db490-d61c-443f-a65b-d21fe96a405b
2006-10-30Don't explicitly link in crypt as it is not used on some platforms.file1-1/+1
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@46506 f38db490-d61c-443f-a65b-d21fe96a405b
2006-10-25regenerate configure scriptrussell1-5/+5
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@46255 f38db490-d61c-443f-a65b-d21fe96a405b
2006-10-13use a configure script test for PMTU discovery control instead of just ↵kpfleming1-1/+71
assuming it's available on Linux git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@45027 f38db490-d61c-443f-a65b-d21fe96a405b
2006-09-29fix a few build system bugs, and convert Makefiles to be compatible with GNU ↵kpfleming1-30/+1
make 3.80 git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@44055 f38db490-d61c-443f-a65b-d21fe96a405b
2006-09-29support --without-curl in configure scriptkpfleming1-33/+59
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@43997 f38db490-d61c-443f-a65b-d21fe96a405b
2006-09-21Merged revisions 43409 via svnmerge from tilghman1-0/+3
https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r43409 | tilghman | 2006-09-21 11:18:19 -0500 (Thu, 21 Sep 2006) | 2 lines TDS 0.64 updates ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@43410 f38db490-d61c-443f-a65b-d21fe96a405b
2006-09-19Update configure and closest kin. *Hopes my branch doesn't break*mattf1-37/+891
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@43282 f38db490-d61c-443f-a65b-d21fe96a405b
2006-09-19Let's try this out. Seems silly, but we'll try it anywaysmattf1-1/+1
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@43273 f38db490-d61c-443f-a65b-d21fe96a405b
2006-09-19Add a few more 'generic' platformsqwell1-0/+9
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@43258 f38db490-d61c-443f-a65b-d21fe96a405b
2006-09-19restore ability for Makefiles to use 'generic' platform names when neededkpfleming1-4/+17
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@43256 f38db490-d61c-443f-a65b-d21fe96a405b
2006-09-18This totally worked when I tested it...qwell1-4/+17
Reverting for now.. git-svn-id: http://svn.digium.com/svn/asterisk/trunk@43245 f38db490-d61c-443f-a65b-d21fe96a405b
2006-09-18This was silly. Nowhere else do we use [ or [[qwell1-17/+4
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@43244 f38db490-d61c-443f-a65b-d21fe96a405b
2006-09-18We have autoconf...let's actually use it.qwell1-3/+46
(note, M4 wasn't used, so...bye) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@43215 f38db490-d61c-443f-a65b-d21fe96a405b
2006-09-18handle config.guess name for FreeBSD properlykpfleming1-120/+137
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@43208 f38db490-d61c-443f-a65b-d21fe96a405b
2006-09-15Many Solaris fixes - this moves some of the stuff from utils.c to strcompat.cqwell1-2/+3
Every OS uses strcompat now - this was done on purpose. git-svn-id: http://svn.digium.com/svn/asterisk/trunk@42982 f38db490-d61c-443f-a65b-d21fe96a405b
2006-08-31Update configure script to check for Zaptel VLDTMF support since this will ↵file1-34/+34
now be required. If you build and don't have Zap stuff, upgrade your zaptel copy. As well - change some minor things so that we get "checking for" and not "checking checking for". git-svn-id: http://svn.digium.com/svn/asterisk/trunk@41505 f38db490-d61c-443f-a65b-d21fe96a405b
2006-08-26more optimizations for embedded systems:kpfleming1-58/+200
when LOADABLE_MODULES is off, don't export symbols from the main binary when LOADABLE_MODULES is off, and the compiler/linker support it, strip out code not used in the final binary git-svn-id: http://svn.digium.com/svn/asterisk/trunk@41166 f38db490-d61c-443f-a65b-d21fe96a405b
2006-08-25fix redirect typorussell1-1/+1
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@41133 f38db490-d61c-443f-a65b-d21fe96a405b
2006-08-25fix a typo and clarify something elsekpfleming1-5/+5
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@41120 f38db490-d61c-443f-a65b-d21fe96a405b
2006-08-25remove the make version check, and instead, check for the actual bug thatrussell1-18/+30
causes our build system to blow up. If anyone still sees problems and configure didn't detect a problem with make, please let me know. git-svn-id: http://svn.digium.com/svn/asterisk/trunk@41119 f38db490-d61c-443f-a65b-d21fe96a405b
2006-08-25get cflags for libcurl as well as libs (patch from qwell)russell1-6/+11
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@41023 f38db490-d61c-443f-a65b-d21fe96a405b
2006-08-23use RTLD_NOLOAD if it's available to make loading dynamic modules a little ↵kpfleming1-1/+71
faster and less resource-intensive also, keep trying to dlclose() a module until it actually goes away, since it may have other modules it brought in when it was loaded (thanks PCadach for pointing this problem out to me) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@40949 f38db490-d61c-443f-a65b-d21fe96a405b
2006-08-22remove requirement for libtasn1, which appears to be a Debian thingkpfleming1-2/+2
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@40837 f38db490-d61c-443f-a65b-d21fe96a405b
2006-08-21use a customized configure macro to tell the script that uCLinux does not ↵kpfleming1-2/+2
have fork() that works drop all startup options and code related to forking if it is not available git-svn-id: http://svn.digium.com/svn/asterisk/trunk@40790 f38db490-d61c-443f-a65b-d21fe96a405b
2006-08-21merge new_loader_completion branch, including (at least):kpfleming1-983/+2535
- restructured build tree and makefiles to eliminate recursion problems - support for embedded modules - support for static builds - simpler cross-compilation support - simpler module/loader interface (no exported symbols) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@40722 f38db490-d61c-443f-a65b-d21fe96a405b
2006-08-17updating configure script and putting comments in the docsmogorman1-8/+122
in english. yay! git-svn-id: http://svn.digium.com/svn/asterisk/trunk@40337 f38db490-d61c-443f-a65b-d21fe96a405b
2006-08-17update configure script to reflect change to make version checkrussell1-3/+3
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@40302 f38db490-d61c-443f-a65b-d21fe96a405b
2006-08-17print a warning at the end of the configure script if the version of GNU Makerussell1-1/+22
in use is a version earlier than 3.81 This is for file :) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@40153 f38db490-d61c-443f-a65b-d21fe96a405b
2006-08-14support ./configure --silentrussell1-242/+486
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@39615 f38db490-d61c-443f-a65b-d21fe96a405b
2006-07-15update configure script with new curl version testkpfleming1-3/+17
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@37680 f38db490-d61c-443f-a65b-d21fe96a405b
2006-07-15update to autoconf 2.60 versionkpfleming1-161/+169
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@37652 f38db490-d61c-443f-a65b-d21fe96a405b
2006-07-07avoid an error from configure by not doing a cat on a file that doesn't existrussell1-2/+4
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@37284 f38db490-d61c-443f-a65b-d21fe96a405b
2006-07-07actually do proper searching for c-client and output the results so ↵kpfleming1-2/+144
app_voicemail can be built against it git-svn-id: http://svn.digium.com/svn/asterisk/trunk@37278 f38db490-d61c-443f-a65b-d21fe96a405b
2006-07-05allow codec_gsm to be built using internal GSM library again (oops!)kpfleming1-1/+6
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@37105 f38db490-d61c-443f-a65b-d21fe96a405b
2006-07-05update OSS so it works againkpfleming1-11/+8
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@37086 f38db490-d61c-443f-a65b-d21fe96a405b
2006-07-05massive rework of configure script, and split of AST_EXT_LIB into separate ↵kpfleming1-9941/+9693
macros, reducing code duplication git-svn-id: http://svn.digium.com/svn/asterisk/trunk@37066 f38db490-d61c-443f-a65b-d21fe96a405b
2006-07-05prepare Asterisk for new zaptel.h/tonezone.h installation locationskpfleming1-130/+130
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@37027 f38db490-d61c-443f-a65b-d21fe96a405b
2006-07-05match the change made to AST_EXT_LIB in asterisk-addonsrussell1-28/+28
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@36960 f38db490-d61c-443f-a65b-d21fe96a405b
2006-06-30update configurerussell1-1/+661
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@36410 f38db490-d61c-443f-a65b-d21fe96a405b
2006-06-29move FreeTDS version check into configure scriptkpfleming1-1/+17
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@36255 f38db490-d61c-443f-a65b-d21fe96a405b
2006-06-24clean up some damage from today's commitkpfleming1-18/+18
convert codecs Makefile to new style git-svn-id: http://svn.digium.com/svn/asterisk/trunk@35852 f38db490-d61c-443f-a65b-d21fe96a405b
2006-06-24The Eurostar Commit! (it's amazing how much work you can get done on a 150 ↵kpfleming1-2656/+2936
minute train ride from Paris to London <G>) support the new location for zaptel.h and tonezone.h use the dependency information output by menuselect to build Makefile rules for each module for header files and libraries combine the common rules into a top-level Makefile.rules file remove all (now) unnecessary stuff from subdir Makefiles change translator API so that the newpvt() callback returns an int instead of a pointer (it no longer allocates memory) alphabetize --with-<foo> options in configure script enhance Net-SNMP support in configure script to provide a --with-netsnmp option fix support for --with-pq so that if pg-config is not found when --with-pq is specified, an error will be generated add 'optional package' usage to modules now that menuselect can output it allow res_snmp to build by default, since the new loader changes coming soon will solve the function naming problem (and users can disable it via menuselect anyway) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@35832 f38db490-d61c-443f-a65b-d21fe96a405b
2006-06-24search for Zaptel and libtonezone separately in the configure scriptkpfleming1-199/+369
various other minor fixes git-svn-id: http://svn.digium.com/svn/asterisk/trunk@35812 f38db490-d61c-443f-a65b-d21fe96a405b