summaryrefslogtreecommitdiffstats
path: root/meta-networking/recipes-daemons/openhpi/files/openhpi-fix-host-gcc.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta-networking/recipes-daemons/openhpi/files/openhpi-fix-host-gcc.patch')
-rw-r--r--meta-networking/recipes-daemons/openhpi/files/openhpi-fix-host-gcc.patch24
1 files changed, 24 insertions, 0 deletions
diff --git a/meta-networking/recipes-daemons/openhpi/files/openhpi-fix-host-gcc.patch b/meta-networking/recipes-daemons/openhpi/files/openhpi-fix-host-gcc.patch
new file mode 100644
index 0000000000..029b857bc1
--- /dev/null
+++ b/meta-networking/recipes-daemons/openhpi/files/openhpi-fix-host-gcc.patch
@@ -0,0 +1,24 @@
1fix host gcc warnings
2
3Remove gcc warnings when gcc is v3.2
4
5Upstream-Status: Pending
6
7Signed-of-by: Aws Ismail <aws.ismail@windriver.com>
8
9diff --git a/configure.ac b/configure.ac
10index f5a5b74..4a20154 100644
11--- a/configure.ac
12+++ b/configure.ac
13@@ -605,11 +605,6 @@ AC_ARG_ENABLE([werror],
14 fi],
15 [])
16
17-if test -n "`gcc --version | grep ' 3.2'`" ; then
18- CC_WARNINGS=`echo $CC_WARNINGS | sed -e 's/-Wno-strict-aliasing//g'`
19- CXX_WARNINGS=`echo $CC_WARNINGS | sed -e 's/-Wno-strict-aliasing//g'`
20-fi
21-
22 case $host_os in
23 solaris*)
24 CC_WARNINGS=`echo $CC_WARNINGS | sed -e 's/-Wcast-qual//g'`