summaryrefslogtreecommitdiff
path: root/macros/gnome-support.m4
diff options
context:
space:
mode:
authorRaja R Harinath <harinath@src.gnome.org>1998-06-11 06:45:59 +0000
committerRaja R Harinath <harinath@src.gnome.org>1998-06-11 06:45:59 +0000
commit74f4cc2206b28a8f0f8d28049ee160430ea57141 (patch)
tree146c6e04b6e9981567c375ce1c99deff36a8bb4f /macros/gnome-support.m4
parent58ce98e9b60c1f0346b6a5a12644133530cb4051 (diff)
downloadshared-mime-info-74f4cc2206b28a8f0f8d28049ee160430ea57141.tar.gz
Look for awk. (CROSS_COMPILING): Remove conditional.
* gnome-support.m4 (AC_PROG_AWK): Look for awk. (CROSS_COMPILING): Remove conditional. svn path=/trunk/; revision=248
Diffstat (limited to 'macros/gnome-support.m4')
-rw-r--r--macros/gnome-support.m43
1 files changed, 2 insertions, 1 deletions
diff --git a/macros/gnome-support.m4 b/macros/gnome-support.m4
index 83eb3708..fe063ffb 100644
--- a/macros/gnome-support.m4
+++ b/macros/gnome-support.m4
@@ -6,6 +6,8 @@ dnl or "no". Also sets up the Automake BUILD_GNOME_SUPPORT
dnl conditional. This should only be used when building the Gnome
dnl libs; Gnome clients should not need this macro.
AC_DEFUN([GNOME_SUPPORT_CHECKS],[
+ # we need an `awk' to build `gnomesupport.h'
+ AC_REQUIRE([AC_PROG_AWK])
need_gnome_support=no
save_LIBOBJS="$LIBOBJS"
LIBOBJS=
@@ -90,5 +92,4 @@ AC_DEFUN([GNOME_SUPPORT_CHECKS],[
LIBOBJS="$save_LIBOBJS"
AM_CONDITIONAL(BUILD_GNOME_SUPPORT, test "$need_gnome_support" = yes)
- AM_CONDITIONAL(CROSS_COMPILING, test "$cross_compiling" = yes)
])