When using /bin/sh, wildcard characters such as * are not interpreted
when they are quoted.  This causes abi-detect-platform.m4 to break.
Enclosed is a patch that fixes things:

-Alec


--- ac-helpers/abi-detect-platform.m4.orig      Sun Apr 22 20:05:14 2001
+++ ac-helpers/abi-detect-platform.m4   Mon Jun 25 00:14:54 2001
@@ -76,11 +76,11 @@
 # huge nasty case statement to actually pick the platform
 
 case "$OS_NAME" in 
-       "WIN32") PLATFORM="win" ;;
-       "Linux"|"AIX"|"*BSD"|"IRIX*"|"HP"|"OSF1") PLATFORM="unix" ;;
-       "QNX"|"procnto") PLATFORM="qnx" ;;
-       "MACOSX") PLATFORM="mac" ;;
-       "BeOS") PLATFORM="beos" ;;
+       WIN32) PLATFORM="win" ;;
+       Linux|AIX|*BSD|IRIX*|HP|OSF1) PLATFORM="unix" ;;
+       QNX|procnto) PLATFORM="qnx" ;;
+       MACOSX) PLATFORM="mac" ;;
+       BeOS) PLATFORM="beos" ;;
 esac
 
 AC_SUBST(PLATFORM)

Reply via email to