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

[PATCH] SVN_UNALIGNED_ACCESS_IS_OK for ppc

From: Mattias Engdegård <mattiase_at_bredband.net>
Date: Thu, 16 May 2013 23:12:25 +0200

[[[
* subversion/include/svn_types.h:
   Set SVN_UNALIGNED_ACCESS_IS_OK for PowerPC.
]]]

Index: subversion/include/svn_types.h
===================================================================
--- subversion/include/svn_types.h (revision 1483563)
+++ subversion/include/svn_types.h (working copy)
@@ -75,7 +75,8 @@
  * @since New in 1.7.
  */
 #ifndef SVN_UNALIGNED_ACCESS_IS_OK
-# if defined(_M_IX86) || defined(_M_X64) || defined(i386) || defined(__x86_64)
+# if defined(_M_IX86) || defined(_M_X64) || defined(i386) || defined(__x86_64) \
+ || defined __powerpc__ || defined __ppc__
 # define SVN_UNALIGNED_ACCESS_IS_OK 1
 # else
 # define SVN_UNALIGNED_ACCESS_IS_OK 0
Received on 2013-05-16 23:13:01 CEST

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.