summaryrefslogtreecommitdiff
path: root/glib
diff options
context:
space:
mode:
authorDan Nicholson <dbn.lists@gmail.com>2012-05-14 15:47:32 -0700
committerDan Nicholson <dbn.lists@gmail.com>2012-05-14 15:57:12 -0700
commite2e118ec32075f93967f8a6c3ee34f1949372c3f (patch)
tree6b464526a9c8ccefd07244fbd886046a12fea11d /glib
parent5c2675eb811bb324b1bafa030323e3e3eef375b0 (diff)
downloadpkg-config-e2e118ec32075f93967f8a6c3ee34f1949372c3f.tar.gz
Ease glib cross-compiling requirements
Since we're building only glib, we don't need any of the auxiliary tools.
Diffstat (limited to 'glib')
-rw-r--r--glib/configure.ac24
1 files changed, 0 insertions, 24 deletions
diff --git a/glib/configure.ac b/glib/configure.ac
index d551832..da67a56 100644
--- a/glib/configure.ac
+++ b/glib/configure.ac
@@ -2447,30 +2447,6 @@ int error = EILSEQ;
], have_eilseq=yes, have_eilseq=no);
AC_MSG_RESULT($have_eilseq)
-dnl ******************************************************************
-dnl *** If we are cross-compiling, look for glib-genmarshal and ***
-dnl *** glib-compile-schemas in PATH ***
-dnl ******************************************************************
-
-AM_CONDITIONAL(CROSS_COMPILING, test $cross_compiling = yes)
-
-if test $cross_compiling = yes; then
- AC_PATH_PROG(GLIB_GENMARSHAL, glib-genmarshal, no)
- if test x$GLIB_GENMARSHAL = xno; then
- AC_MSG_ERROR(Could not find a glib-genmarshal in your PATH)
- fi
-
- AC_PATH_PROG(GLIB_COMPILE_SCHEMAS, glib-compile-schemas, no)
- if test x$GLIB_COMPILE_SCHEMAS = xno; then
- AC_MSG_ERROR(Could not find a glib-compile-schemas in your PATH)
- fi
-
- AC_PATH_PROG(GLIB_COMPILE_RESOURCES, glib-compile-resources, no)
- if test x$GLIB_COMPILE_RESOURCES = xno; then
- AC_MSG_ERROR(Could not find a glib-compile-resources in your PATH)
- fi
-fi
-
dnl
dnl Tracing
dnl