freebsd-ports/comms/svxlink/files/patch-svxlink_trx_NetTrxMsg.h
Stephen Hurd 7d6f65abc1 Update to 14.08
Switch to cmake
Switch to github
Add the STATIC, DOCS, ALSA, and OSS options
Make a master port so comms/qtel can be a slave port
2015-01-07 12:12:22 +00:00

13 lines
525 B
C++

--- src/svxlink/trx/NetTrxMsg.h.orig 2014-04-09 23:51:14.000000000 -0700
+++ src/svxlink/trx/NetTrxMsg.h 2014-04-09 23:51:53.000000000 -0700
@@ -176,8 +176,8 @@
MsgProtoVer(void)
: Msg(TYPE, sizeof(MsgProtoVer)), m_major(MAJOR),
m_minor(MINOR) {}
- uint16_t major(void) const { return m_major; }
- uint16_t minor(void) const { return m_minor; }
+ uint16_t FBSD_major(void) const { return m_major; }
+ uint16_t FBSD_minor(void) const { return m_minor; }
private:
uint16_t m_major;