compiling netsnmp on solaris 8

 
Thread Tools Search this Thread
Special Forums UNIX and Linux Applications Infrastructure Monitoring compiling netsnmp on solaris 8
# 1  
Old 10-07-2009
compiling netsnmp on solaris 8

Hello all

Currently I am trying to install net-snmp-5.5 on a V480 Solaris 8 machine however things are hardly going smooth. I'm running configure will the following options.

./configure --prefix=/usr/local --with-mib-modules="smux ucd-snmp/diskio ucd-snmp/lmSensors host" --enable-mfd-rewrites --enable-ucd-snmp-
compatibility --with-defaults --with-out-mib-modules=mibII/ipv6 --without-perl-modules

make gives the following error and goes kaput

libtool: link: : .libs/libnetsnmp.a
libtool: link: ( cd ".libs" && rm -f "libnetsnmp.la" && ln -s "../libnetsnmp.la" "libnetsnmp.la" )
: libnetsnmp.la
make[1]: Leaving directory `/net-snmp-5.5/snmplib'
making all in /net-snmp-5.5/agent
make[1]: Entering directory `/net-snmp-5.5/agent'
Makefile:346: *** commands commence before first target. Stop.
make[1]: Leaving directory `/net-snmp-5.5/agent'
make: *** [subdirs] Error 1

I've tried various versions. I've been able to compile net-snmp-5.2.5.1 without the if-mib which we need as it is a basic requirement of ours.
I'm using gcc version 3.4.6 and GNU make 3.81. Any help in this matter will be appreciated.
# 2  
Old 10-08-2009
what is on line 346 of Makefile? Make sure there are no trailing spaces after any slashes "\" at the end of the line.

Please post the output of this command using CODE tags before modifying the file.

Code:
awk 'NR==346' Makefile|od -cx

# 3  
Old 10-08-2009
Output of the code is mentioned below

Code:
000000  \t   f   i  \n
            0966    690a
0000004

awk 'NR==346' Makefile show output of code from lines 342 to 346 is

Code:
pythontest:
    @(dir=`pwd`; cd python; $(PYMAKE) test --basedir=$$dir) ; \
        if test $$? != 0 ; then \
    exit 1 ; \
    fi

Thanks for your reply. I will appreciate ver much if help me out Smilie
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX Benchmarks

error compiling bm software under Solaris 10

anyone tried it , under Solaris 10 using make (part of SUNWsprot) and gcc 4.6 compiler.. got an error complaining about the Makefile script syntax... I don't think that's compatible at all... (2 Replies)
Discussion started by: ppchu99
2 Replies

2. Solaris

Compiling Error in Samba 3.4.1 on Solaris 10

Hi all, I am getting the following error While installing Samba 3.4.1 on Solaris 10. #./autogen.sh ./autogen.sh : autoheader : not found ./autogen.sh : test : argument expected Please help me as I am in a critical state of the project. Warm regards, Sathya (10 Replies)
Discussion started by: sathya47
10 Replies

3. Infrastructure Monitoring

Solaris 9 netsnmp-5.4.2.1 and WUG.

Hi, I have set up netsnmp-5.4.2.1 as below on a Solaris 9 SPARC server, but it is still not working with What's Up Gold. gzip -dc /mnt/sysinstall/Net-SNMP/libgcc-3.4.6-sol9-sparc-local.gz > libgcc-3.4.6-sol9-sparc-local pkgadd -d libgcc-3.4.6-sol9-sparc-local gzip -dc... (0 Replies)
Discussion started by: sparcman
0 Replies

4. Programming

Sun Solaris C++ Compiling Error

Hello. I'm using SunStudio 12 Update 1. When compiling for x86, everything works fine. When compiling for SPARC, I get the following errors. I linked libCstd.so.1 explicitly, but I get the same errors. Would anyone be kind enough to step me through resolving this? Thank you very much. **... (2 Replies)
Discussion started by: acheong87
2 Replies

5. Solaris

problem compiling apache on solaris

Hi I'm trying to install apache 2.2.14 on Solaris with Openssl. I'm using following configure options: ./configure --prefix=/usr/local/apache2 --enable-ssl --enable-module=so --enable-proxy=shared --enable-proxy-http=shared --enable-proxy-ajp=shared --with-ssl=/usr/local/openssl ... (3 Replies)
Discussion started by: Aelfric
3 Replies

6. Solaris

Compiling IRSSI on Solaris 10

How does one go aout compiling irssi locally on a fresh installation of Solaris 10, Out put from ./configure m command /download/1rss1-0.8.12 checking for a BSD-compatible install... ./install-sh -c checking whether build environment is sane... yes checking for gawk... no checking... (2 Replies)
Discussion started by: FloridaBSD
2 Replies

7. Solaris

compiling Seamonkey 1.1.9 on Solaris 9 sparc

I have gotten tired of getting error messages from SeaMonkey about not being on the latest version. I have downloaded the source for SeaMonkey, and when I attempt to make it with "gmake -f client.mk build" , I get the following error message: configure: error: Library requirements (pango... (0 Replies)
Discussion started by: tderscheid
0 Replies

8. Solaris

Compiling and Running C Program on Solaris

Hello Guys, I am using Solaris Developer Express Edition 9/07, I am a beginner. Please tell me how to compile and execute a C program. Please give me your answers clearly, for the compilers cc,c89,c99. please....... reply to me. I not getting the answer anywhere.. Advance... (2 Replies)
Discussion started by: selva_ss
2 Replies

9. UNIX for Advanced & Expert Users

compiling php5 on solaris 9. please help.

I'm trying to compile PHP5. I've installed mysql5 successfully and apache1.3 is working great, but I get the message below when I compile PHP5. I double checked if I have libxml2 installed and I do. I installed libxml2 binary from sunfreeware. Please see below for details: ./configure... (5 Replies)
Discussion started by: xnightcrawl
5 Replies

10. Programming

Compiling in Solaris

Hi, I'm new to Unix. I'm trying to compile a shared library in Solaris running on x86. I get "void value not ignored as it ought to be" error when trying "make". But it compiles fine in Fedora. How can this happen? I think both are using the same type of compiler. What can I do to get around... (8 Replies)
Discussion started by: runnerb
8 Replies
Login or Register to Ask a Question