aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.am
Commit message (Collapse)AuthorAgeFilesLines
* Don't force C++98 mode any longerMartin Storsjo2016-10-181-1/+1
| | | | The code builds fine in C++11 mode now.
* Add new files to "make dist"Martin Storsjo2016-09-241-1/+5
|
* Update Makefile.am with newly added and removed filesMartin Storsjo2016-08-251-1/+1
|
* Explicitly force building in C++98 modeMartin Storsjo2016-05-181-1/+1
| | | | | | | | | | | | | | GCC 6 defaults to C++14 (or more precisely, gnu++14) instead of C++98 (or gnu++98). The fdk-aac source doesn't support being built in this mode at the moment, since it relies on narrowing conversion from unsigned 32 bit integers to FIXP_DBL (which is a signed data type of the same size). The same approach is used upstream in Android as well, since d52f3747683. This fixes buliding with GCC 6.
* Include the new file limiter.cpp in the buildMartin Storsjo2014-11-071-0/+1
|
* Include libFDK ppc headers in make distMartin Storsjo2014-11-041-0/+1
|
* Include autogen.sh when building distribution packagesMartin Storsjo2013-11-251-0/+1
|
* Rename sbr_rom/ram files back to the original namesMartin Storsjo2012-11-021-2/+2
| | | | This minimizes the differences to upstream.
* build: Build object files in subdirectoriesMartin Storsjo2012-11-021-0/+1
| | | | This allows producing more than one object file with the same name.
* build: Don't use make variables in the declaration of source filesMartin Storsjo2012-11-021-131/+122
| | | | | This is required for working dependency generation with the subdir-objects option enabled.
* Update Makefile.am to account for a removed file in the latest upstreamMartin Storsjo2012-11-011-2/+1
|
* Add an encoder exampleMartin Storsjo2012-09-131-0/+9
|
* Export the external symbols via the libtool -export-symbols optionMartin Storsjo2012-07-111-1/+3
| | | | Change-Id: If139d0d1cf6f9fdfb0ebc477d2152b9f5f49f566
* Don't link to libstdc++Martin Storsjo2012-07-111-0/+5
| | | | | | | While the source is C++, it doesn't use anything from the C++ runtime, so by building with -fno-exceptions -fno-rtti, the dynamic library doesn't have to be linked to libstdc++. This also simplifies things for users of the static library.
* Add an _enc suffix to the sbr_ram/rom files in libSBRencMartin Storsjo2012-07-111-2/+2
| | | | | | This avoids name clashes with the similarly named files in libSBRdec, when building all libraries with one single automake file.
* Add automake/autoconf source filesMartin Storsjo2012-07-111-0/+208
Change-Id: If97c7482bffaab4a21cd2fb8341f2939f19d3bbd