Hi Frank,
Thank you for the new release. I am working on an MS version
(compiling in win dir with msvc6.0).
Below is a diff of one file that could not be compiled with msvc.
More to come.
Regards,
=?ISO-8859-1?Q?Frank_Strau=DF?= strauss@ibr.cs.tu-bs.de wrote:
Hi!
More than a year has passed since the 0.4.1 release of libsmi. On a
number of requests during recent days and during the past months :-),
I've just fixed up the test suite and bundled a new release: 0.4.2.
It contains numerous bug fixes, newly published or updated Std MIBs,
new checks in smilint and smidump, and updated smidump drivers.
As usual, you can find it at
http://www.ibr.cs.tu-bs.de/projects/libsmi/
ftp://ftp.ibr.cs.tu-bs.de/pub/local/libsmi/
CVS users, please note that the anoncvs server, which has been down for
some time, is up and running again. However, I'll leave the daily CVS
snapshots on the FTP server for those folks who sit behind firewalls and
have problems to access the CVS server.
Enjoy,
-frank
--
- Yigal
cd c:/yigal/dmh-libsmi/libsmi-0.4.2/tools/
diff -c "c:/yigal/dmh-libsmi/libsmi-0.4.2/tools/dump-sizes.c.~1~" "c:/yigal/dmh-libsmi/libsmi-0.4.2/tools/dump-sizes.c"
*** c:/yigal/dmh-libsmi/libsmi-0.4.2/tools/dump-sizes.c.~1~ Sun Dec 7 10:12:46 2003
--- c:/yigal/dmh-libsmi/libsmi-0.4.2/tools/dump-sizes.c Sun Dec 7 11:17:18 2003
***************
*** 155,161 ****
--- 155,166 ----
{
SmiType *parent;
SmiRange *range;
+
+ #ifndef _MSC_VER
SmiInteger64 min = 9223372036854775808ULL;
+ #else /* if using MSVC and not configure */
+ SmiInteger64 min = 9223372036854775808UL;
+ #endif
range = smiGetFirstRange(smiType);
if (! range) {
***************
*** 201,208 ****
{
SmiType *parent;
SmiRange *range;
SmiInteger64 min = 0xffffffffffffffffLL;
!
range = smiGetFirstRange(smiType);
if (! range) {
parent = smiGetParentType(smiType);
--- 206,217 ----
{
SmiType *parent;
SmiRange *range;
+ #ifndef _MSC_VER
SmiInteger64 min = 0xffffffffffffffffLL;
! #else /* if using MSVC and not configure */
! SmiInteger64 min = 0xffffffffffffffffL;
! #endif
!
range = smiGetFirstRange(smiType);
if (! range) {
parent = smiGetParentType(smiType);
Diff finished at Sun Dec 07 11:20:24