[Patch] Syntax fix in configure.ac

Pierre d'Herbemont stegefin at free.fr
Fri Feb 25 16:55:38 CST 2005


Hi!

Here is a syntax fix for the following warning you get while 
"./configure" -ing in Darwin/Mac OS X.

./configure: line 14121: IOKITLIB: command not found

Pierre.

-------------- next part --------------
Index: configure.ac
===================================================================
RCS file: /home/wine/wine/configure.ac,v
retrieving revision 1.339
diff -u -r1.339 configure.ac
--- configure.ac	10 Feb 2005 19:09:08 -0000	1.339
+++ configure.ac	25 Feb 2005 22:29:08 -0000
@@ -1017,7 +1017,7 @@
 	    AC_SUBST(COREFOUNDATIONLIB,"-framework CoreFoundation")
             AC_SUBST(IOKITLIB,"-framework IOKit")
 	    dnl using IOKit imply we use CoreFoundation too
-	    IOKITLIB = "$IOKITLIB $COREFOUNDATIONLIB"
+	    IOKITLIB="$IOKITLIB $COREFOUNDATIONLIB"
           else
             AC_CACHE_CHECK(whether we can build an HP-UX dll, ac_cv_c_dll_hpux,
               [WINE_TRY_SHLIB_FLAGS([-shared], ac_cv_c_dll_hpux="yes", ac_cv_c_dll_hpux="no")])


More information about the wine-patches mailing list