More fun with the BeOS.  First, could someone apply the patch I posted to 
update the -I directories.  Thanks.

Second, since Subversion needs isascii() in a few places, I moved the ifdef 
that makes it work on the BeOS PPC into apr_lib.h (where all the other 
isascii() stuff is) from networkio.h.  

Both patches are in the attached file.  

           
        sam th               
        [EMAIL PROTECTED]
        http://www.abisource.com/~sam/
        GnuPG Key:  
        http://www.abisource.com/~sam/key
Index: include/apr_lib.h
===================================================================
RCS file: /home/cvspublic/apr/include/apr_lib.h,v
retrieving revision 1.44
diff -u -r1.44 apr_lib.h
--- include/apr_lib.h   2000/11/26 03:00:01     1.44
+++ include/apr_lib.h   2000/12/03 07:21:44
@@ -113,6 +113,9 @@
 #define apr_isdigit(c) (isdigit(((unsigned char)(c))))
 #define apr_isgraph(c) (isgraph(((unsigned char)(c))))
 #define apr_islower(c) (islower(((unsigned char)(c))))
+#if !HAVE_isascii
+#define isascii(c) (((c) & ~0x7f)==0)
+#endif 
 #define apr_isascii(c) (isascii(((unsigned char)(c))))
 #define apr_isprint(c) (isprint(((unsigned char)(c))))
 #define apr_ispunct(c) (ispunct(((unsigned char)(c))))
Index: network_io/beos/Makefile.in
===================================================================
RCS file: /home/cvspublic/apr/network_io/beos/Makefile.in,v
retrieving revision 1.14
diff -u -r1.14 Makefile.in
--- network_io/beos/Makefile.in 2000/11/18 16:53:18     1.14
+++ network_io/beos/Makefile.in 2000/12/03 07:21:51
@@ -6,7 +6,7 @@
 INCDIR=../../include
 OSDIR=$(INCDIR)/arch/@OSDIR@
 DEFOSDIR=$(INCDIR)/arch/@DEFAULT_OSDIR@
-INCLUDES=-I$(INCDIR) -I$(OSDIR) -I$(DEFOSDIR)
+INCLUDES=-I$(INCDIR) -I$(OSDIR) -I$(DEFOSDIR) -I../unix/
 MKDEP=../../helpers/mkdep.sh
 
 LIB=libnetwork.a
Index: network_io/beos/networkio.h
===================================================================
RCS file: /home/cvspublic/apr/network_io/beos/networkio.h,v
retrieving revision 1.18
diff -u -r1.18 networkio.h
--- network_io/beos/networkio.h 2000/08/02 05:26:26     1.18
+++ network_io/beos/networkio.h 2000/12/03 07:21:52
@@ -78,9 +78,6 @@
  *
  * It will be included in the next release, but until then... 
  */
-#if !HAVE_isascii
-#define isascii(c) (((c) & ~0x7f)==0)
-#endif
 
 #include "apr_general.h"
 

Attachment: pgpZVr337hSkz.pgp
Description: PGP signature

Reply via email to