MOON
Server: Apache
System: Linux vps.thepromohut.com 2.6.18-398.el5 #1 SMP Tue Sep 16 20:51:48 EDT 2014 i686
User: caretrak (507)
PHP: 5.2.10
Disabled: NONE
Upload Files
File: //usr/bin/net-snmp-config
#!/bin/sh
#
# net-snmp-config
#
# this shell script is designed to merely dump the configuration
# information about how the net-snmp package was compiled.  The
# information is particularily useful for applications that need to
# link against the net-snmp libraries and hence must know about any
# other libraries that must be linked in as well.

# this particular shell script calls arch specific script to avoid
# multilib conflicts

# Supported arches ix86 ia64 ppc ppc64 s390 s390x x86_64

arch=`arch`
echo $arch | grep -q i.86
if [ $? -eq 0 ] ; then
    net-snmp-config-i386 $*
    exit 0
fi
if [ "$arch" = "ia64" ] ; then
    net-snmp-config-ia64 $*
    exit 0
fi
if [ "$arch" = "ppc" ] ; then
    net-snmp-config-ppc $*
    exit 0
fi
if [ "$arch" = "ppc64" ] ; then
    net-snmp-config-ppc64 $*
    exit 0
fi
if [ "$arch" = "s390" ] ; then
    net-snmp-config-s390 $*
    exit 0
fi
if [ "$arch" = "s390x" ] ; then
    net-snmp-config-s390x $*
    exit 0
fi
if [ "$arch" = "x86_64" ] ; then
    net-snmp-config-x86_64 $*
    exit 0
fi

echo "Cannot determine architecture"