[Substrate-commits] SF.net SVN: substrate: [293] trunk
Brought to you by:
landonf
|
From: <la...@us...> - 2006-09-02 00:10:29
|
Revision: 293
http://svn.sourceforge.net/substrate/?rev=293&view=rev
Author: landonf
Date: 2006-09-01 17:10:20 -0700 (Fri, 01 Sep 2006)
Log Message:
-----------
r301@bluefish: landonf | 2006-09-01 14:49:26 -0700
We needs WORDS_BIGENDIAN defined, or we get the byte order wrong on big-endian platforms. Pull it in from config.h
Modified Paths:
--------------
trunk/Foundation/NSByteOrder.m
trunk/Tests/NSByteOrder.m
Property Changed:
----------------
trunk/
Property changes on: trunk
___________________________________________________________________
Name: svk:merge
- 11572a18-12fc-0310-9209-f8edcc8181a7:/local/substrate/trunk:5716
+ 11572a18-12fc-0310-9209-f8edcc8181a7:/local/substrate/trunk:5716
9c4e9a82-0035-45cc-8f88-5282b51d5481:/local/substrate/trunk:301
Modified: trunk/Foundation/NSByteOrder.m
===================================================================
--- trunk/Foundation/NSByteOrder.m 2006-09-01 19:05:27 UTC (rev 292)
+++ trunk/Foundation/NSByteOrder.m 2006-09-02 00:10:20 UTC (rev 293)
@@ -22,6 +22,10 @@
* or in connection with the use or performance of this software.
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#include <Foundation/NSByteOrder.h>
/*
Modified: trunk/Tests/NSByteOrder.m
===================================================================
--- trunk/Tests/NSByteOrder.m 2006-09-01 19:05:27 UTC (rev 292)
+++ trunk/Tests/NSByteOrder.m 2006-09-02 00:10:20 UTC (rev 293)
@@ -22,6 +22,9 @@
* or in connection with the use or performance of this software.
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include <check.h>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|