Gitweb links:

...log 
http://git.netsurf-browser.org/libnsfb.git/shortlog/6742ef25b910a3a69cce5c9bfd8b9a64b8e7f121
...commit 
http://git.netsurf-browser.org/libnsfb.git/commit/6742ef25b910a3a69cce5c9bfd8b9a64b8e7f121
...tree 
http://git.netsurf-browser.org/libnsfb.git/tree/6742ef25b910a3a69cce5c9bfd8b9a64b8e7f121

The branch, master has been updated
       via  6742ef25b910a3a69cce5c9bfd8b9a64b8e7f121 (commit)
      from  bce2c233988e86ad034f6e0c8b96385db0d47a2e (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commitdiff 
http://git.netsurf-browser.org/libnsfb.git/commit/?id=6742ef25b910a3a69cce5c9bfd8b9a64b8e7f121
commit 6742ef25b910a3a69cce5c9bfd8b9a64b8e7f121
Author: Vincent Sanders <[email protected]>
Commit: Vincent Sanders <[email protected]>

    use correct macro to detect mac os x

diff --git a/src/plot.h b/src/plot.h
index 65ef264..2beca42 100644
--- a/src/plot.h
+++ b/src/plot.h
@@ -29,8 +29,8 @@
     #if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
         #define NSFB_BE_BYTE_ORDER
     #endif
-#elif defined(OS_MACOSX)
-/* mac os x has the include somewhere different */
+#elif defined(__APPLE__)
+    /* mac os x has the include somewhere different */
     #include <machine/endian.h>
     #if BYTE_ORDER == BIG_ENDIAN
         #define NSFB_BE_BYTE_ORDER


-----------------------------------------------------------------------

Summary of changes:
 src/plot.h |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/plot.h b/src/plot.h
index 65ef264..2beca42 100644
--- a/src/plot.h
+++ b/src/plot.h
@@ -29,8 +29,8 @@
     #if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
         #define NSFB_BE_BYTE_ORDER
     #endif
-#elif defined(OS_MACOSX)
-/* mac os x has the include somewhere different */
+#elif defined(__APPLE__)
+    /* mac os x has the include somewhere different */
     #include <machine/endian.h>
     #if BYTE_ORDER == BIG_ENDIAN
         #define NSFB_BE_BYTE_ORDER


-- 
NetSurf Framebuffer library

_______________________________________________
netsurf-commits mailing list
[email protected]
http://listmaster.pepperfish.net/cgi-bin/mailman/listinfo/netsurf-commits-netsurf-browser.org

Reply via email to