Re: Option to use static link instead of shared object

2007-08-07 Thread Dave Shield
On 07/08/07, Raymond Pau <[EMAIL PROTECTED]> wrote: > Yes. We do plan to use/support SNMPv3 authentication. MD5-based or SHA-based authentication? The basic Net-SNMP code includes built-in support for MD5-based authentication. If this is sufficient for you, then you don't need the OpenSSL librar

Re: Option to use static link instead of shared object

2007-08-07 Thread Raymond Pau
Sent: Tuesday, August 07, 2007 4:11 PM Subject: Re: Option to use static link instead of shared object > On 07/08/07, Raymond Pau <[EMAIL PROTECTED]> wrote: >> But snmpd is still linked to libcrypto.so which is more than 1MB. >> Does snmpd required all 1MB of libcrypto.s

Re: Option to use static link instead of shared object

2007-08-07 Thread Dave Shield
On 07/08/07, Raymond Pau <[EMAIL PROTECTED]> wrote: > But snmpd is still linked to libcrypto.so which is more than 1MB. > Does snmpd required all 1MB of libcrypto.so? > Can snmpd be configured to statically link only those functions required > rather than putting in the 1MB shared library? It shou

Re: Option to use static link instead of shared object

2007-08-07 Thread Raymond Pau
required rather than putting in the 1MB shared library? Thanks. - Original Message - From: "Dave Shield" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: "net-snmp-users" Sent: Monday, August 06, 2007 5:39 PM Subject: Re: Option to use static link instead

Re: Option to use static link instead of shared object

2007-08-06 Thread Dave Shield
On 06/08/07, Raymond Pau <[EMAIL PROTECTED]> wrote: > Ok. The --enable-static builds the static library (ex. libnetsnmp.a); > But make install did not build snmpd with the static library; it is still > linking to the shared library. Try configure --enable-static --disable-shared If you don't

RE: Option to use static link instead of shared object

2007-08-06 Thread Ward, Martin
ECTED] Cc: net-snmp-users Subject: Re: Option to use static link instead of shared object Ok. The --enable-static builds the static library (ex. libnetsnmp.a); But make install did not build snmpd with the static library; it is still linking to the s

RE: Option to use static link instead of shared object

2007-08-06 Thread Simon Edwards
ailto:[EMAIL PROTECTED] On Behalf Of Raymond Pau Sent: 06 August 2007 10:38 To: [EMAIL PROTECTED] Cc: net-snmp-users Subject: Re: Option to use static link instead of shared object Ok. The --enable-static builds the static library (ex. libnetsnmp.a); But make install did not build snmpd with the st

Re: Option to use static link instead of shared object

2007-08-06 Thread Raymond Pau
-users Sent: Monday, August 06, 2007 1:53 PM Subject: Re: Option to use static link instead of shared object On 8/6/07, Raymond Pau <[EMAIL PROTECTED]> wrote: Is there an option in configure to make snmpd use static link instead of shared libs(.so). Ie. instead of distribu

Re: Option to use static link instead of shared object

2007-08-05 Thread rakesh zingade
On 8/6/07, Raymond Pau <[EMAIL PROTECTED]> wrote: > > Is there an option in configure to make snmpd use static link instead of > shared libs(.so). > Ie. instead of distributing 5 files (snmpd + 4 libnetsnmp*.so shared > library), distribute 1 highly compact snmpd file without any external > librar

Option to use static link instead of shared object

2007-08-05 Thread Raymond Pau
Is there an option in configure to make snmpd use static link instead of shared libs(.so). Ie. instead of distributing 5 files (snmpd + 4 libnetsnmp*.so shared library), distribute 1 highly compact snmpd file without any external library dependancy. Thank you.