Dave Shield wrote: > On 10/10/06, Thomas Anders <[EMAIL PROTECTED]> wrote: >>> 1) OpenBSD4 headers > >> Huh? We neither have openbsd3.h nor openbsd4.h, but just openbsd.h. > > OK - in that case, I don't understand the comment > "openbsd4 uses openbsd.h, and thus a lot of openbsd3 code > that most likely works on openbsd4 is excluded" > > I'd assumed this was referring to a file openbsd3.h. Clearly not. > Can someone please clarify the precise issue here.
Robert has logged this issue, not me, but anyway: On OpenBSD 3.x configure adds a "-Dopenbsd3=openbsd3" while on OpenBSD 4.x it adds "-Dopenbsd4=openbsd4", of course. Our code only has #ifdefs for openbsd3 (and/or earlier). We either need to adjust the code to add "|| defined(openbsd4)" or add something like the following to openbsd.h: #ifdef openbsd4 #undef openbsd3 #define openbsd3 openbsd3 #endif The latter is only appropriate if "openbsd3" is to be understood as "3.x or later" (like we do for freebsd). Whatever we chose will need to be done again when OpenBSD 5.x comes out. >>> 4) DisMan event crash > I propose this be moved to "light-yellow" status. ACK. >>> 7) perl compiler warnings > > Is there a list of the warnings logged somewhere? Now here: http://pastebin.ca/196857 It has been taken on IRIX with the fuzzy, verbose SGI C Compiler. Skip the warnings you don't understand. >>> 8) "as-needed" linking >> OSX is the only one that fails during "make". > > That's the "library layering" bug report, I presume? (Which I > responded to earlier today) > Naive question - does static vs dynamic linking make any difference here? > Requiring static linking obviously isn't ideal, but would be a > workable stop-gap. OSX testers, please. >> On the other >> (older) systems >> problems probably only happen when doing "make install >> DESTDIR=/some/where/else". > > Which is a relatively unusual invocation. > Yes - it needs to be fixed properly, but doesn't feel to be a show-stopper. ACK. >>> 9) OS X embedded perl > >> Shall we hold off enabling embedded perl by default on OSX? > > If it doesn't work, then yes! :-) We need to find out whether it's broken on OSX for most-if-not-all or just this single person/setup. OSX testers, please! (Didn't I just say that?) +Thomas -- Thomas Anders (thomas.anders at blue-cable.de) ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys -- and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ Net-snmp-coders mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/net-snmp-coders
