Index: aclocal.m4
===================================================================
RCS file: /cvsroot/lame/lame/aclocal.m4,v
retrieving revision 1.16
diff -u -u -r1.16 aclocal.m4
--- aclocal.m4	2 Jun 2002 14:17:37 -0000	1.16
+++ aclocal.m4	3 Sep 2002 11:46:55 -0000
@@ -73,12 +73,15 @@
 [AC_TRY_RUN([
 int   float2long_IEEE_compliance ( void )
 {
-    float  f;
-    f = 12582912.; if ( *(long*)(&f) != 1262485504l ) return 0;
-    f = 12615679.; if ( *(long*)(&f) != 1262518271l ) return 0;
-    f = 13582912.; if ( *(long*)(&f) != 1263485504l ) return 0;
-    f = 12550145.; if ( *(long*)(&f) != 1262452737l ) return 0;
-    f = 11582912.; if ( *(long*)(&f) != 1261485504l ) return 0;
+    struct {
+        long padding; /* to prevent unaligned access */
+        float  f;
+    } s;
+    s.f = 12582912.; if ( *(long*)(&s.f) != 1262485504l ) return 0;
+    s.f = 12615679.; if ( *(long*)(&s.f) != 1262518271l ) return 0;
+    s.f = 13582912.; if ( *(long*)(&s.f) != 1263485504l ) return 0;
+    s.f = 12550145.; if ( *(long*)(&s.f) != 1262452737l ) return 0;
+    s.f = 11582912.; if ( *(long*)(&s.f) != 1261485504l ) return 0;
     return 1;
 }
 
@@ -1073,7 +1076,7 @@
 dnl This is just to silence aclocal about the macro not being used
 ifelse([AC_DISABLE_FAST_INSTALL])dnl
 
-# isc-posix.m4 serial 1 (gettext-0.10.40)
+# isc-posix.m4 serial 2 (gettext-0.11.2)
 dnl Copyright (C) 1995-2002 Free Software Foundation, Inc.
 dnl This file is free software, distributed under the terms of the GNU
 dnl General Public License.  As a special exception to the GNU General
@@ -1081,6 +1084,8 @@
 dnl that contains a configuration script generated by Autoconf, under
 dnl the same distribution terms as the rest of that program.
 
+# This file is not needed with autoconf-2.53 and newer.  Remove it in 2005.
+
 # This test replaces the one in autoconf.
 # Currently this macro should have the same name as the autoconf macro
 # because gettext's gettext.m4 (distributed in the automake package)
@@ -1267,7 +1272,7 @@
      fi
   fi
 
-  AC_PATH_PROG(GTK_CONFIG, gtk-config, gtk-config, no)
+  AC_PATH_PROG(GTK_CONFIG, gtk-config, gtk12-config, no)
   min_gtk_version=ifelse([$1], ,0.99.7,$1)
   AC_MSG_CHECKING(for GTK - version >= $min_gtk_version)
   no_gtk=""
