Look for awk. (CROSS_COMPILING): Remove conditional.
authorRaja R Harinath <harinath@src.gnome.org>
Thu, 11 Jun 1998 06:45:59 +0000 (06:45 +0000)
committerRaja R Harinath <harinath@src.gnome.org>
Thu, 11 Jun 1998 06:45:59 +0000 (06:45 +0000)
* gnome-support.m4 (AC_PROG_AWK): Look for awk.
(CROSS_COMPILING): Remove conditional.

svn path=/trunk/; revision=248

macros/ChangeLog
macros/gnome-support.m4

index 098109e..707055b 100644 (file)
@@ -1,3 +1,8 @@
+1998-06-11  Raja R Harinath  <harinath@cs.umn.edu>
+
+       * gnome-support.m4 (AC_PROG_AWK): Look for awk.
+       (CROSS_COMPILING): Remove conditional.
+       
 Wed Jun 10 14:19:39 EDT 1998 Gregory McLean <gregm@comstar.net>
 
        * gnome-x-checks.m4: more tweeks to make building against gtk 1.0 and
index 83eb370..fe063ff 100644 (file)
@@ -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)
 ])