[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

[PATCH] Neon on Mac OS 10.2

From: Wilfredo Sánchez <wsanchez_at_mit.edu>
Date: 2002-07-25 21:14:16 CEST

Howdy-

   Mac OS 10.2 (Jaguar) is Darwin 6.x (don't ask me why) and your check for building on Darwin 5.x doesn't trigger, which is unfortunate. The patch below removes the testing for the version number altogether. Your current test wouldn't work on pre-10.1 (Darwin 1.x, I think) systems anyway (you'd instead want -traditional-cpp and no linker flags), and I'm not sure it's worth bothering with 10.0 at this point.

   I've tested this patch in the context of a Subversion build.

        -wsv

--- neon.m4.orig Thu Jul 25 13:51:00 2002
+++ neon.m4 Thu Jul 25 13:52:01 2002
@@ -417,10 +417,10 @@
  ])

  AC_DEFUN([NE_MACOSX], [
-# Check for Mac OS X 10.1 which needs extra cpp and linker flags.
-AC_CACHE_CHECK([for Mac OS X 10.1], ne_cv_os_macosx, [
-case `uname -s 2>/dev/null`:`uname -r 2>/dev/null` in
-Darwin:5.*) ne_cv_os_macosx=yes ;;
+# Check for Darwin, which needs extra cpp and linker flags.
+AC_CACHE_CHECK([for Darwin], ne_cv_os_macosx, [
+case `uname -s 2>/dev/null` in
+Darwin) ne_cv_os_macosx=yes ;;
  *) ne_cv_os_macosx=no ;;
  esac])
  if test $ne_cv_os_macosx = yes; then

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Thu Jul 25 21:15:06 2002

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.