aboutsummaryrefslogtreecommitdiff
path: root/m4
AgeCommit message (Collapse)Author
2016-05-10configure: add support for aarch64Bernd Kuhls
Downloaded from: https://github.com/OpenELEC/OpenELEC.tv/blob/master/packages/mediacenter/kodi/patches/kodi-999.10-aarch64-support.patch and added uClibc support. v2: removed joystick (stefansaraev) and cortex-a53 (koenkooi) options.
2016-04-27configure.ac: add support for powerpc64 little endianBernd Kuhls
Fixes: configure: error: unsupported host (powerpc64le-buildroot-linux-gnu) configure: error: unsupported build target: powerpc64le-buildroot-linux-gnu
2015-12-06configure: Add raspberry-pi2 platformpopcornmix
2015-05-10update ax_python_devel.m4 to rev 17Thomas Amland
2015-03-01cmake: add C++11 flagwsnipex
2015-02-10CHG: Move to c++11 and use std:shared_ptr rather than boostChris "Koying" Browet
Fixes the Nexus Player x86 crashes
2015-02-01Merge pull request #6275 from Memphiz/fixnativeMemphiz
[depends] - fixes which allow building for android on osx mashines
2015-01-28mips: Add configure option for mips and mipselBalint Reczey
2015-01-27[m4] - add NATIVE_ARCH_DEFINES which present the -DTARGET_ defines for the ↵Memphiz
system the compilation is run on
2014-06-02Revert "[depends] add m4 macros for compiler flag testing"Chris "Koying" Browet
This reverts commit 6097ea3e9437c9cdef92c2f28e8cb8710af96017.
2014-04-27[depends] add m4 macros for compiler flag testingwsnipex
2014-04-08[uClibc] Fix compilation on armBernd Kuhls
Tested with: Target: arm-buildroot-linux-uclibcgnueabi gcc version 4.7.3 (Buildroot 2014.05-git-00735-gc1618c8)
2014-01-04Support uClibc compilationBernd Kuhls
partly based on aports from Alpine Linux: http://code.ohloh.net/file?fid=Up3lAbVglPtyupfNPazFHQYMKM8&cid=Sr-nRbkkE8E&s=&fp=302485&mp=&projSelected=true#L0
2013-09-13[droid] - allow to build android for x86 platformsMemphiz
2013-09-03configure: add initial support for CC_FOR_BUILD, CXX_FOR_BUILD, ↵Stephan Raue
CFLAGS_FOR_BUILD, CXXFLAGS_FOR_BUILD, LDFLAGS_FOR_BUILD
2013-08-07added: generate and install cmake helpers for addonsspiff
2011-04-05Code changes for external python. Changes include submissions by ↵spiff
cptspiff,WiSo,blinkseb, and jcarroll changed: limit the scope of the python includes. this will be useful in an upcomming patch. credit jcarroll changed: use a m4 check to set the python path directly, and ditch the old hardcoded version nonsense. credit jcarroll Fixed the build for when --enable-external-python is not used. Fixed the warnings due to Python.h not being the first header as required by Python. Final fix to the osx make build so that external python works. Needed to change the m4 macro to account for .dylib on osx and the dependant ./configure call to pass the installed location of the python xbmc is to be built against. Also updated .gitignore for the osx dependency builds. There was a name collision between the python datetime.h and the xbmc/DateTime.h on file systems that are not case sensitive. This is now fixed by renaming DateTime.h to XBDateTime.h By request, the .cpp files now sorted alphabetically in the Makefile.in. the m4 macros is a mess of mixed spaces and tabs. In order to make my couple line change more readable I changed the spaces to tabs so it would be consistent with the surrounding area. This was per the request of jmarshall. Fixed an error where under internal python the correct header wasn't being used. if --enable-external-python is selected then don't build the internal python at all and not using any of the wrappers. Modified the xcode project to work with the external python changes. There was a bug in the Makefile.in where the internal python build target wasn't being set correctly. This is now fixed. [WIN32] removed some uneeded files, renamed DateTime* to XBDateTime* and defined USE_EXTERNAL_PYTHON Added xbmc/cores/DllLoader/Makefile to .gitignore since it's being autogened. Made it so that the distinction between internal and external python is limited to mostly just Makefile's now. Most of the code no longer needs to make the distinction. This should make it much easier to move forward in windows and eventually with removing the internal python. updated: .gitignore