diff options
author | Bernd Kuhls <bernd.kuhls@t-online.de> | 2015-07-22 22:30:25 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-07-30 09:29:23 +0200 |
commit | cfefcd859f2b51a6ebe23c5be149ff258755e249 (patch) | |
tree | 2f276fea9be0b7add0ce581a0dd0056171609a06 /package/libcec/0001-remove-Wno-psabi.patch | |
parent | f2f242c4ba6d6647c4135ef000da033d33c96983 (diff) | |
download | buildroot-cfefcd859f2b51a6ebe23c5be149ff258755e249.tar.gz buildroot-cfefcd859f2b51a6ebe23c5be149ff258755e249.zip |
package/libcec: bump to version 3.0.1
- reflect upstream changes of the build system by switching from
an autotools-package to cmake-package
[Thomas:
- remove the gcc 4.5 dependency. While we do need a dependency on
the gcc version, the proposed implementation was not correct as it
wasn't handling external toolchains.
- add a patch to fix a problem caused by libcec build system trying
to use 'git' to get a version number, which does not work when the
version control system information is not available, as is the
case in Buildroot.]
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/libcec/0001-remove-Wno-psabi.patch')
-rw-r--r-- | package/libcec/0001-remove-Wno-psabi.patch | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/package/libcec/0001-remove-Wno-psabi.patch b/package/libcec/0001-remove-Wno-psabi.patch deleted file mode 100644 index 4956c14c20..0000000000 --- a/package/libcec/0001-remove-Wno-psabi.patch +++ /dev/null @@ -1,21 +0,0 @@ -Do not use -Wno-psabi option - -This option was added in gcc 4.5, and Buildroot still uses gcc 4.3 on -some architectures. Since it's non essential (only disables some -warning), let's get rid of it. - -Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> - -Index: b/configure.ac -=================================================================== ---- a/configure.ac -+++ b/configure.ac -@@ -137,7 +137,7 @@ - use_udev="no" - use_adapter_detection="yes" - use_lockdev="no" --SUPPRESS_MANGLING_WARNINGS=" -Wno-psabi" -+SUPPRESS_MANGLING_WARNINGS="" - case "${host}" in - *-*-linux*) - ## search for udev if pkg-config was found |