aboutsummaryrefslogtreecommitdiffstats
path: root/codecs/lpc10
AgeCommit message (Collapse)AuthorFilesLines
2009-07-30Fixes numerous spelling errors. Patch submitted by alecdavis.dbrooks1-1/+1
(closes issue #15595) Reported by: alecdavis git-svn-id: http://svn.digium.com/svn/asterisk/trunk@209554 f38db490-d61c-443f-a65b-d21fe96a405b
2009-07-21Merged revisions 207647 via svnmerge from kpfleming1-1/+1
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r207647 | kpfleming | 2009-07-21 08:04:44 -0500 (Tue, 21 Jul 2009) | 12 lines Ensure that user-provided CFLAGS and LDFLAGS are honored. This commit changes the build system so that user-provided flags (in ASTCFLAGS and ASTLDFLAGS) are supplied to the compiler/linker *after* all flags provided by the build system itself, so that the user can effectively override the build system's flags if desired. In addition, ASTCFLAGS and ASTLDFLAGS can now be provided *either* in the environment before running 'make', or as variable assignments on the 'make' command line. As a result, the use of COPTS and LDOPTS is no longer necessary, so they are no longer documented, but are still supported so as not to break existing build systems that supply them when building Asterisk. ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@207680 f38db490-d61c-443f-a65b-d21fe96a405b
2008-10-30fix a few small things found by using sparsekpfleming1-1/+2
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@152809 f38db490-d61c-443f-a65b-d21fe96a405b
2008-10-15When using MALLOC_DEBUG, codec_lpc10 leaks memory, because it matches a librarytilghman1-1/+1
malloc() with an ast_free (which, of course, doesn't match up with known allocated memory, so the free fails). (closes issue #13702) Reported by: eliel Patches: codec_lpc10_lpcini.c uploaded by eliel (license 64) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@149637 f38db490-d61c-443f-a65b-d21fe96a405b
2007-10-29clean up assembler and preprocessor files if they are here tookpfleming1-0/+1
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@87467 f38db490-d61c-443f-a65b-d21fe96a405b
2006-12-18Merged revisions 48554 via svnmerge from kpfleming1-1/+1
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r48554 | kpfleming | 2006-12-18 05:59:24 -0600 (Mon, 18 Dec 2006) | 3 lines remove some now-unnecessary explicit includes of autoconfig.h clean up per-file dependencies during 'make clean' ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@48555 f38db490-d61c-443f-a65b-d21fe96a405b
2006-10-13Merged revisions 45079 via svnmerge from file33-562/+562
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r45079 | file | 2006-10-13 14:42:49 -0400 (Fri, 13 Oct 2006) | 2 lines And file said... let the compiler warnings STOP! ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@45080 f38db490-d61c-443f-a65b-d21fe96a405b
2006-09-30merge compile fixes from 44080:rizzo1-15/+19
- with AST_DEVMODE, building codecs/lpc10 fails because of lots of warnings, and the configure step in editline fails as well. Fix this by removing the -Werror in these steps. - on FreeBSD (but probably on other platforms as well), the final link of asterisk fails because AST_LIBS was not exported to the subdirs Makefiles. Add a proper fix in the top-level Makefile (a possible alternative way is to add "export AST_LIBS" near the beginning of the file). With this fix, i believe that some of the platform-specific conditionals in main/Makefile are redundant (because they should be already dealt with in the top level Makefile) but i don't have a platform to check. git-svn-id: http://svn.digium.com/svn/asterisk/trunk@44081 f38db490-d61c-443f-a65b-d21fe96a405b
2006-09-29Merged revisions 44055 via svnmerge from kpfleming1-1/+4
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r44055 | kpfleming | 2006-09-29 17:47:40 -0500 (Fri, 29 Sep 2006) | 2 lines fix a few build system bugs, and convert Makefiles to be compatible with GNU make 3.80 ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@44056 f38db490-d61c-443f-a65b-d21fe96a405b
2006-07-06make the build output less noisy (optional, can be controlled by the ↵kpfleming1-14/+11
NOISY_BUILD variable in the top-level Makefile) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@37273 f38db490-d61c-443f-a65b-d21fe96a405b
2006-06-09get rid of some more compiler warnings (thanks tholo for making me fix the ↵kpfleming2-7/+9
lpc10 stuff... that had been a problem for far too long) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@33398 f38db490-d61c-443f-a65b-d21fe96a405b
2006-04-24Thanks to the fine work of Russell Bryant and Dancho Lazarov, we now have ↵kpfleming1-2/+0
autoconf and menuselect tools for Asterisk! git-svn-id: http://svn.digium.com/svn/asterisk/trunk@22267 f38db490-d61c-443f-a65b-d21fe96a405b
2006-02-14set proper mime-type and eol-style on all fileskpfleming1-305/+305
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@9991 f38db490-d61c-443f-a65b-d21fe96a405b
2006-02-10Lots of little fixes for doing MSVC compiling codecs in windows (#6022)mattf13-29/+340
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@9450 f38db490-d61c-443f-a65b-d21fe96a405b
2005-11-29git-svn-id: http://svn.digium.com/svn/asterisk/trunk@7221 ↵kpfleming38-0/+0
f38db490-d61c-443f-a65b-d21fe96a405b
2005-11-08issue #5569 minus lock.h changeskpfleming1-1/+4
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@7024 f38db490-d61c-443f-a65b-d21fe96a405b
2005-03-27Fix cross compiling (bug #3868)markster1-1/+3
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@5278 f38db490-d61c-443f-a65b-d21fe96a405b
2004-12-14Merge slimey's Solaris compatibility (with small mods) (bug #2740)markster1-0/+2
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@4446 f38db490-d61c-443f-a65b-d21fe96a405b
2004-08-31More Asterisk sparc patches (courtesy Belgarath)markster1-1/+6
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@3693 f38db490-d61c-443f-a65b-d21fe96a405b
2004-08-31Merge NetBSD and Courtesty tone with modifications (bug #2329)markster1-1/+4
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@3686 f38db490-d61c-443f-a65b-d21fe96a405b
2004-08-31Adjust Makefiles to support Ultrasparc architecture (thanks Belgarath) (bug ↵markster1-2/+6
#2319) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@3684 f38db490-d61c-443f-a65b-d21fe96a405b
2004-06-26Merge source cleanups (bug #1911)markster33-275/+579
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@3311 f38db490-d61c-443f-a65b-d21fe96a405b
2004-06-22Merge major BSD mutex and symbol conflict patches (bug #1816) (link patch ↵markster1-2/+4
still pending) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@3273 f38db490-d61c-443f-a65b-d21fe96a405b
2004-03-15Alpha portability from Ricudismarkster1-1/+3
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@2442 f38db490-d61c-443f-a65b-d21fe96a405b
2004-01-08Add the SuSE AMD64 support and fixes from Bug #706malcolmd1-0/+2
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@1904 f38db490-d61c-443f-a65b-d21fe96a405b
2003-11-23Various warning cleanupsmarkster2-10/+28
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@1782 f38db490-d61c-443f-a65b-d21fe96a405b
2003-10-27More cleanups and OSX fixes for 10.3markster1-35/+10
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@1678 f38db490-d61c-443f-a65b-d21fe96a405b
2003-10-26Make it build and run on MacOS Xmarkster2-2/+11
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@1673 f38db490-d61c-443f-a65b-d21fe96a405b
2003-10-21Fix include ordermarkster1-18/+29
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@1643 f38db490-d61c-443f-a65b-d21fe96a405b
2003-10-21FreeBSD patch, take 2markster1-8/+20
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@1638 f38db490-d61c-443f-a65b-d21fe96a405b
2003-10-16Revert the previous patch since it's braking compilationmartinp1-25/+25
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@1636 f38db490-d61c-443f-a65b-d21fe96a405b
2003-10-16Sane FreeBSD patchmarkster1-9/+21
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@1635 f38db490-d61c-443f-a65b-d21fe96a405b
2003-09-27Fix various compiler warnings (bug #322)markster1-9/+21
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@1570 f38db490-d61c-443f-a65b-d21fe96a405b
2003-09-19Code cleanups (bug #66)markster4-35/+73
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@1531 f38db490-d61c-443f-a65b-d21fe96a405b
2003-04-27More BSD enhancementsmarkster1-1/+1
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@916 f38db490-d61c-443f-a65b-d21fe96a405b
2003-04-23More OpenBSD patchesmarkster1-3/+6
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@890 f38db490-d61c-443f-a65b-d21fe96a405b
2003-03-28Fix for ppc processorsmartinp1-1/+5
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@713 f38db490-d61c-443f-a65b-d21fe96a405b
2003-03-18Tue Mar 18 07:00:01 CET 2003matteo1-2/+3
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@652 f38db490-d61c-443f-a65b-d21fe96a405b
2003-03-16dom mar 16 23:37:23 CET 2003matteo1-6/+9
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@647 f38db490-d61c-443f-a65b-d21fe96a405b
2003-02-12mer feb 12 14:56:57 CET 2003matteo36-180/+450
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@612 f38db490-d61c-443f-a65b-d21fe96a405b
2002-06-21Version 0.1.12 from FTPmarkster1-1/+2
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@465 f38db490-d61c-443f-a65b-d21fe96a405b
2001-04-12Version 0.3.0 from FTPmarkster2-8/+8
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@279 f38db490-d61c-443f-a65b-d21fe96a405b
2001-04-12Version 0.2.0 from FTPmarkster2-8/+8
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@278 f38db490-d61c-443f-a65b-d21fe96a405b
2001-04-12Version 0.1.12 from FTPmarkster2-8/+8
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@277 f38db490-d61c-443f-a65b-d21fe96a405b
2001-04-12Version 0.1.11 from FTPmarkster2-8/+8
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@276 f38db490-d61c-443f-a65b-d21fe96a405b
2001-04-12Version 0.1.10 from FTPmarkster2-8/+8
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@275 f38db490-d61c-443f-a65b-d21fe96a405b
2001-04-12Version 0.1.9 from FTPmarkster2-8/+8
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@274 f38db490-d61c-443f-a65b-d21fe96a405b
2001-04-12Version 0.1.8 from FTPmarkster2-15/+27
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@273 f38db490-d61c-443f-a65b-d21fe96a405b
2001-03-16Version 0.1.7 from FTPmarkster1-1/+1
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@240 f38db490-d61c-443f-a65b-d21fe96a405b
2000-01-05Version 0.3.0 from FTPmarkster33-170/+170
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@190 f38db490-d61c-443f-a65b-d21fe96a405b