Gitweb links:
...log
http://git.netsurf-browser.org/libnsfb.git/shortlog/71d24289c2826b7af51f3...
...commit
http://git.netsurf-browser.org/libnsfb.git/commit/71d24289c2826b7af51f300...
...tree
http://git.netsurf-browser.org/libnsfb.git/tree/71d24289c2826b7af51f3001c...
The branch, master has been updated
via 71d24289c2826b7af51f3001c25fa824ccd043a4 (commit)
from c1b8c33fd05dcc9f40fe4996ece9ff4a895813ff (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=71d24289c2826b7af51...
commit 71d24289c2826b7af51f3001c25fa824ccd043a4
Author: Vincent Sanders <vince(a)kyllikki.org>
Commit: Vincent Sanders <vince(a)kyllikki.org>
freebsd uses single underscore byte ordering macro
diff --git a/src/plot.h b/src/plot.h
index a151b96..db60ea9 100644
--- a/src/plot.h
+++ b/src/plot.h
@@ -38,8 +38,8 @@
#elif defined(__FreeBSD__)
/* freebsd has the include somewhere different */
#include <machine/endian.h>
- #if defined(BYTE_ORDER)
- #if BYTE_ORDER == BIG_ENDIAN
+ #if defined(_BYTE_ORDER)
+ #if _BYTE_ORDER == _BIG_ENDIAN
#define NSFB_BE_BYTE_ORDER
#endif
#else
-----------------------------------------------------------------------
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 a151b96..db60ea9 100644
--- a/src/plot.h
+++ b/src/plot.h
@@ -38,8 +38,8 @@
#elif defined(__FreeBSD__)
/* freebsd has the include somewhere different */
#include <machine/endian.h>
- #if defined(BYTE_ORDER)
- #if BYTE_ORDER == BIG_ENDIAN
+ #if defined(_BYTE_ORDER)
+ #if _BYTE_ORDER == _BIG_ENDIAN
#define NSFB_BE_BYTE_ORDER
#endif
#else
--
NetSurf Framebuffer library