Hi,

The custom autoconfig macros for OSX features are too liberal and are getting caught on my Linux system with opencflite (http://sourceforge.net/projects/opencflite/) installed. I have attached a patch to workaround the issue. It should still be cross-compiler compatible.

Thanks,
Alex Barker
Index: configure.ac
===================================================================
--- configure.ac	(revision 1618092)
+++ configure.ac	(working copy)
@@ -484,9 +484,14 @@ fi
 
 dnl Mac OS specific features -------------------
 
-SVN_LIB_MACHO_ITERATE
-SVN_LIB_MACOS_PLIST
-SVN_LIB_MACOS_KEYCHAIN
+case "$host" in
+*-darwin*)
+    # Be less liberal about checking for OS X features!
+    SVN_LIB_MACHO_ITERATE
+    SVN_LIB_MACOS_PLIST
+    SVN_LIB_MACOS_KEYCHAIN
+    ;;
+esac
 
 dnl APR_HAS_DSO -------------------
 

Reply via email to