mirror of
https://git.freebsd.org/ports.git
synced 2025-07-07 12:29:16 -04:00
- Let's see whether specifying USE_CXXSTD=c++11 stops the flood of pkg-fallout SPAM regarding gcdmaster caused by the update of devel/libsigc++20 to 2.10.0 in r437480. PR: 217074 [1] Submitted by: mmel (partially) [1]
11 lines
413 B
C++
11 lines
413 B
C++
--- dao/CdrDriver.cc.orig 2009-09-12 16:21:25 UTC
|
|
+++ dao/CdrDriver.cc
|
|
@@ -495,7 +495,7 @@ unsigned char CdrDriver::syncPattern[12]
|
|
0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0
|
|
};
|
|
|
|
-char CdrDriver::REMOTE_MSG_SYNC_[4] = { 0xff, 0x00, 0xff, 0x00 };
|
|
+unsigned char CdrDriver::REMOTE_MSG_SYNC_[4] = { 0xff, 0x00, 0xff, 0x00 };
|
|
|
|
|
|
/* Maps a string to the corresponding driver option value
|