-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Andrew Dennison wrote: [...] > All these methods work. 3) is probably best if someone has questions > about their changes - makes it easy to reply with inline comments in > an email.
Okay --- patch, hopefully, enclosed (courtesy of 'git format-patch'). It'll be nice to know if this works. I am working on my own branch, so theoretically I suppose it ought to be possible to push the entire thing off to someone else, but that involves more git-fu than I know right now. (I'm currently working on a H8300S port, so I want to get the process figured out.) If you check in the patch to master, and then I rebase my branch (your instructions worked, BTW, although nothing seemed to have changed), then will 'git show' stop seeing it as a change in my local branch? - -- ┌─── dg@cowlark.com ───── http://www.cowlark.com ───── │ │ "They laughed at Newton. They laughed at Einstein. Of course, they │ also laughed at Bozo the Clown." --- Carl Sagan -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iEYEARECAAYFAkpL+McACgkQf9E0noFvlzh40QCfQjhmTUzPaDgq1/G81hAvM+iI V50AoLoGZHbScPCKDjbrrcZXRrcw1oWO =AMsd -----END PGP SIGNATURE-----
>From 2484b00c5a3b9378011ca1e5d67fb04e72aa72b2 Mon Sep 17 00:00:00 2001 From: David Given <d...@dg-pc.(none)> Date: Wed, 1 Jul 2009 11:32:18 +0100 Subject: [PATCH] Removed surplus definitions of htons and friends, which cause problems on big-endian systems (sys/endian defines them as nop macros). --- dev/include/drvlib.h | 4 ---- 1 files changed, 0 insertions(+), 4 deletions(-) diff --git a/dev/include/drvlib.h b/dev/include/drvlib.h index ed51a90..8f1d195 100644 --- a/dev/include/drvlib.h +++ b/dev/include/drvlib.h @@ -42,10 +42,6 @@ size_t strlcpy(char *dest, const char *src, size_t count); size_t strnlen(const char *str, size_t count); void *memcpy(void *dest, const void *src, size_t count); void *memset(void *dest, int ch, size_t count); -uint32_t htonl(uint32_t); -uint16_t htons(uint16_t); -uint32_t ntohl(uint32_t); -uint16_t ntohs(uint16_t); void delay_usec(u_long usec); void calibrate_delay(void); int drvlib_init(void); -- 1.6.0.4
------------------------------------------------------------------------------
_______________________________________________ Prex-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/prex-devel
