diff options
author | Raja R Harinath <harinath@src.gnome.org> | 1998-06-11 14:45:59 +0800 |
---|---|---|
committer | Raja R Harinath <harinath@src.gnome.org> | 1998-06-11 14:45:59 +0800 |
commit | a1fe3ac8ff504bfc3c301b9a287ce19f93f9e337 (patch) | |
tree | 8d1c55f4e43e2d92160242a78c5b14f392dafdeb /macros/gnome-support.m4 | |
parent | eaf3ad7e2512fa5688038c014f27ebd123e706e9 (diff) | |
download | gsoc2013-evolution-a1fe3ac8ff504bfc3c301b9a287ce19f93f9e337.tar gsoc2013-evolution-a1fe3ac8ff504bfc3c301b9a287ce19f93f9e337.tar.gz gsoc2013-evolution-a1fe3ac8ff504bfc3c301b9a287ce19f93f9e337.tar.bz2 gsoc2013-evolution-a1fe3ac8ff504bfc3c301b9a287ce19f93f9e337.tar.lz gsoc2013-evolution-a1fe3ac8ff504bfc3c301b9a287ce19f93f9e337.tar.xz gsoc2013-evolution-a1fe3ac8ff504bfc3c301b9a287ce19f93f9e337.tar.zst gsoc2013-evolution-a1fe3ac8ff504bfc3c301b9a287ce19f93f9e337.zip |
Look for awk. (CROSS_COMPILING): Remove conditional.
* gnome-support.m4 (AC_PROG_AWK): Look for awk.
(CROSS_COMPILING): Remove conditional.
svn path=/trunk/; revision=259
Diffstat (limited to 'macros/gnome-support.m4')
-rw-r--r-- | macros/gnome-support.m4 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/macros/gnome-support.m4 b/macros/gnome-support.m4 index 83eb37089b..fe063ffbda 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) ]) |