Re: [Nagios-devel] NDOUtils 1.4b1 Released

Support forum for Nagios Core, Nagios Plugins, NCPA, NRPE, NSCA, NDOUtils and more. Engage with the community of users including those using the open source solutions.
Locked
Guest

Re: [Nagios-devel] NDOUtils 1.4b1 Released

Post by Guest »

This is a multi-part message in MIME format.
--------------080607010801080104000805
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit

Ethan Galstad wrote:
> Its been quite a while since I released an update to the NDOUtils addon,
> but the time has finally arrived. I just squashed some big bugs and
> released 1.4b1, so give it a try and let me know (on the -devel list)
> what does/doesn't work. Its a beta release, so don't if you're using a
> prior version for production purposes, use caution with this.
>
> The new release has a slightly different DB structure (there's a script
> that should upgrade the 1.3 table structures) and the default table
> prefix is now "nagios_" instead of "ndo_". Should work with Nagios 2.x
> and the Nagios 3 alpha CVS code.
>
> The new release also has a separate PDF document describing the DB
> structure. Its 55 or so pages and doesn't cover the ~20 tables
> containing configuration data yet, but that will get filled in for
> future releases. Thanks to Marlo Bell for his early Visio diagram
> several months back - it was a great start for the docs!
>
>
> Ethan Galstad,
> Nagios Developer
> ---
> Email: [email protected]
> Website: http://www.nagios.org
>
> -------------------------------------------------------------------------
> 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 ... CID=DEVDEV
> _______________________________________________
> Nagios-devel mailing list
> [email protected]
> https://lists.sourceforge.net/lists/lis ... gios-devel
>
>

Hi Ethan, hi list,

thanks for updating ndoutils, many users out of the german
"nagios-portal.de" have are very interested in and ndo is used mainly
for the visual addon nagvis (www.nagvis.org)

On an AMD64 arch there are one linking error caused of using "-fPIC" and
-shared together while some object were compiled without "-fPIC".

After some search I've edited the Makefile to compile io.o and utils.o
with the -fPIC, too. After this patch I can compile ndoutils on a AMD64
without any trouble.

Hope this doesn't break anything.

Best wishes
Hendrik



--------------080607010801080104000805
Content-Type: text/x-patch;
name="ndoutils-1.4b1.patch"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
filename="ndoutils-1.4b1.patch"

diff -Naur ndoutils-1.4b1/src/Makefile.in ndoutils-1.4b1-mod/src/Makefile.in
--- ndoutils-1.4b1/src/Makefile.in 2007-01-08 01:35:49.000000000 +0100
+++ ndoutils-1.4b1-mod/src/Makefile.in 2007-01-08 20:14:52.000000000 +0100
@@ -72,10 +72,10 @@
$(CC) $(CFLAGS) -o $@ sockdebug.c $(COMMON_OBJS) $(LDFLAGS) $(LIBS) $(MATHLIBS) $(SOCKETLIBS) $(OTHERLIBS)

io.o: io.c $(SRC_INCLUDE)/io.h
- $(CC) $(CFLAGS) -c -o $@ io.c
+ $(CC) $(MOD_CFLAGS) $(CFLAGS) -c -o $@ io.c

utils.o: utils.c $(SRC_INCLUDE)/utils.h
- $(CC) $(CFLAGS) -c -o $@ utils.c
+ $(CC) $(MOD_CFLAGS) $(CFLAGS) -c -o $@ utils.c

db.o: db.c $(SRC_INCLUDE)/db.h
$(CC) $(CFLAGS) -c -o $@ db.c

--------------080607010801080104000805--





This post was automatically imported from historical nagios-devel mailing list archives
Original poster: [email protected]
Locked