Browse Source

* src/base/digitseq/cl_DS.h: #undef DS, needed for i386-Solaris.

master
Richard Kreckel 18 years ago
parent
commit
ba086b080a
  1. 4
      ChangeLog
  2. 4
      src/base/digitseq/cl_DS.h

4
ChangeLog

@ -1,3 +1,7 @@
2006-11-02 Richard B. Kreckel <kreckel@ginac.de>
* src/base/digitseq/cl_DS.h: #undef DS, needed for i386-Solaris.
2006-10-11 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
* tests/Makefile.in (VPATH): Fix syntax error.

4
src/base/digitseq/cl_DS.h

@ -47,6 +47,10 @@ namespace cln {
#define D4(byte0,byte1,byte2,byte3) (((uintD)(byte0)<<24)|((uintD)(byte1)<<16)|((uintD)(byte2)<<8)|((uintD)(byte3)))
#define D8(byte0,byte1,byte2,byte3,byte4,byte5,byte6,byte7) (((uintD)(byte0)<<56)|((uintD)(byte1)<<48)|((uintD)(byte2)<<40)|((uintD)(byte3)<<32)|((uintD)(byte4)<<24)|((uintD)(byte5)<<16)|((uintD)(byte6)<<8)|((uintD)(byte7)))
// i386-pc-solaris #defines DS.
// Grr...
#undef DS
struct DS {
uintD* MSDptr;
uintC len;

Loading…
Cancel
Save