aboutsummaryrefslogtreecommitdiffstats
path: root/meta-networking/recipes-daemons/openhpi/files/cross_899198.patch
blob: 3161140df9be8d7663cd22da21123e3e7a8c0257 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
From: Helmut Grohne <helmut@subdivi.de>
Subject: fix cross compilation

The OH_SET_SIZES macro relies on the usual autoconf sizeof cache variables
during cross compilation, but it never ensure that they are initialized.

pkg-config must be called with $ac_tool_prefix and PKG_PROG_PKG_CONFIG takes
care of that. Setting PKG_CONFIG_PATH breaks the pkg-config-cross-wrapper.
Don't do that.

Upstream-Status: Pending
Signed-off-by: Khem Raj <raj.khem@gmail.com>

Index: openhpi-3.8.0/acinclude.m4
===================================================================
--- openhpi-3.8.0.orig/acinclude.m4
+++ openhpi-3.8.0/acinclude.m4
@@ -22,30 +22,39 @@ AC_DEFUN([OH_SET_SIZES],
 
     if test "x$cross_compiling" != "xno"; then
         if test "x$OH_SIZEOF_UCHAR" = x; then
+	    AC_CHECK_SIZEOF([unsigned char])
             OH_SIZEOF_UCHAR=$ac_cv_sizeof_uchar
         fi
         if test "x$OH_SIZEOF_USHORT" = x; then
+	    AC_CHECK_SIZEOF([unsigned short])
             OH_SIZEOF_USHORT=$ac_cv_sizeof_ushort
         fi
         if test "x$OH_SIZEOF_UINT" = x; then
+	    AC_CHECK_SIZEOF([unsigned int])
             OH_SIZEOF_UINT=$ac_cv_sizeof_uint
         fi
         if test "x$OH_SIZEOF_CHAR" = x; then
+	    AC_CHECK_SIZEOF([char])
             OH_SIZEOF_CHAR=$ac_cv_sizeof_char
         fi
         if test "x$OH_SIZEOF_SHORT" = x; then
+	    AC_CHECK_SIZEOF([short])
             OH_SIZEOF_SHORT=$ac_cv_sizeof_short
         fi
         if test "x$OH_SIZEOF_INT" = x; then
+	    AC_CHECK_SIZEOF([int])
             OH_SIZEOF_INT=$ac_cv_sizeof_int
         fi
         if test "x$OH_SIZEOF_LLONG" = x; then
+	    AC_CHECK_SIZEOF([long long])
             OH_SIZEOF_LLONG=$ac_cv_sizeof_longlong
         fi
         if test "x$OH_SIZEOF_FLOAT" = x; then
+	    AC_CHECK_SIZEOF([float])
             OH_SIZEOF_FLOAT=$ac_cv_sizeof_float
         fi
         if test "x$OH_SIZEOF_DOUBLE" = x; then
+	    AC_CHECK_SIZEOF([double])
             OH_SIZEOF_DOUBLE=$ac_cv_sizeof_double
         fi
     else
Index: openhpi-3.8.0/configure.ac
===================================================================
--- openhpi-3.8.0.orig/configure.ac
+++ openhpi-3.8.0/configure.ac
@@ -87,9 +87,9 @@ have_rtas_lib=no
 
 dnl Check for GLIB
 
-AC_CHECK_PROG([found_pkg_config],[pkg-config],[yes])
+PKG_PROG_PKG_CONFIG
 
-if test "x$found_pkg_config" != "xyes"; then
+if test "x$PKG_CONFIG" = "x"; then
     OH_CHECK_FAIL(pkg-config,pkg-config)
 fi
 PKG_CFG_SETPATH
@@ -105,7 +105,7 @@ GLIB=glib-2.0
 GTHREAD=gthread-2.0
 GMODULE=gmodule-2.0
 
-if pkg-config --atleast-version $GLIB_REQUIRED_VERSION $GLIB; then
+if $PKG_CONFIG --atleast-version $GLIB_REQUIRED_VERSION $GLIB; then
    :
 else
    AC_MSG_ERROR([
@@ -268,12 +268,12 @@ dnl
 dnl We really need to make ipmi enablement be contigent on OpenIPMI
 dnl
 
-if PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/local/lib/pkgconfig pkg-config --atleast-version 1.4.20 OpenIPMI; then
+if $PKG_CONFIG --atleast-version 1.4.20 OpenIPMI; then
     have_openipmi=yes
     AC_CHECK_LIB([OpenIPMI], [ipmi_smi_setup_con], [have_openipmi=yes])
-    OPENIPMI_CFLAGS=`PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/local/lib/pkgconfig pkg-config --cflags OpenIPMI`
+    OPENIPMI_CFLAGS=`$PKG_CONFIG --cflags OpenIPMI`
     AC_SUBST(OPENIPMI_CFLAGS)
-    OPENIPMI_LIBS=`PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/local/lib/pkgconfig pkg-config --libs OpenIPMI`
+    OPENIPMI_LIBS=`$PKG_CONFIG --libs OpenIPMI`
     AC_SUBST(OPENIPMI_LIBS)
 fi