mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-15 16:07:26 +00:00
2428998262
* Update to 0.82 * Add ncurses to DEPENDS * Add patch to fix configure with standard autotools_do_configure * Add SUMMARY * Add LIC_FILES_CHKSUM Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
32 lines
1.0 KiB
Diff
32 lines
1.0 KiB
Diff
Disable gtk check that breaks with current autotools
|
|
|
|
Ideally we would have a proper fix for this and send that upstream instead.
|
|
|
|
Upstream-Status: Pending
|
|
|
|
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
|
|
|
|
diff --git a/configure.in b/configure.in
|
|
index 8474543..5118565 100644
|
|
--- a/configure.in
|
|
+++ b/configure.in
|
|
@@ -48,16 +48,8 @@ AC_ARG_ENABLE(ipv6,
|
|
[ --disable-ipv6 Do not enable IPv6],
|
|
WANTS_IPV6=$enableval, WANTS_IPV6=yes)
|
|
|
|
-if test "x$WANTS_GTK" = "xyes"; then
|
|
- AM_PATH_GTK_2_0(2.6.0, CFLAGS="$CFLAGS $GTK_CFLAGS"
|
|
- LIBS="$LIBS $GTK_LIBS -lm",
|
|
- AC_MSG_WARN(Building without GTK2 display support)
|
|
- AC_DEFINE(NO_GTK, 1, [Define if you don't have the GTK+ libraries available.])
|
|
- GTK_OBJ="")
|
|
-else
|
|
- AC_DEFINE(NO_GTK)
|
|
- GTK_OBJ=""
|
|
-fi
|
|
+AC_DEFINE(NO_GTK, 1, [Define if you don't have the GTK+ libraries available.])
|
|
+GTK_OBJ=""
|
|
|
|
AC_CHECK_FUNC(socket, ,
|
|
AC_CHECK_LIB(socket, socket, , AC_MSG_ERROR(No socket library found)))
|