Blame SOURCES/net-snmp-config

9a6c41
#!/bin/sh
9a6c41
#
9a6c41
# net-snmp-config
9a6c41
#
9a6c41
# this shell script is designed to merely dump the configuration
9a6c41
# information about how the net-snmp package was compiled.  The
9a6c41
# information is particularily useful for applications that need to
9a6c41
# link against the net-snmp libraries and hence must know about any
9a6c41
# other libraries that must be linked in as well.
9a6c41
9a6c41
# this particular shell script calls arch specific script to avoid
9a6c41
# multilib conflicts
9a6c41
9a6c41
# Supported arches ix86 ia64 ppc ppc64 s390 s390x x86_64 alpha sparc sparc64
9a6c41
9a6c41
arch=`arch`
9a6c41
echo $arch | grep -q i.86
9a6c41
if [ $? -eq 0 ] ; then
9a6c41
    net-snmp-config-i386 $*
9a6c41
    exit 0
9a6c41
fi
9a6c41
if [ "$arch" = "ia64" ] ; then
9a6c41
    net-snmp-config-ia64 $*
9a6c41
    exit 0
9a6c41
fi
9a6c41
if [ "$arch" = "ppc" ] ; then
9a6c41
    net-snmp-config-ppc $*
9a6c41
    exit 0
9a6c41
fi
9a6c41
if [ "$arch" = "ppc64" ] ; then
9a6c41
    net-snmp-config-ppc64 $*
9a6c41
    exit 0
9a6c41
fi
9a6c41
if [ "$arch" = "s390" ] ; then
9a6c41
    net-snmp-config-s390 $*
9a6c41
    exit 0
9a6c41
fi
9a6c41
if [ "$arch" = "s390x" ] ; then
9a6c41
    net-snmp-config-s390x $*
9a6c41
    exit 0
9a6c41
fi
9a6c41
if [ "$arch" = "x86_64" ] ; then
9a6c41
    net-snmp-config-x86_64 $*
9a6c41
    exit 0
9a6c41
fi
9a6c41
if [ "$arch" = "alpha" ] ; then
9a6c41
    net-snmp-config-alpha $*
9a6c41
    exit 0
9a6c41
fi
9a6c41
if [ "$arch" = "sparc" ] ; then
9a6c41
    net-snmp-config-sparc $*
9a6c41
    exit 0
9a6c41
fi
9a6c41
if [ "$arch" = "sparc64" ] ; then
9a6c41
    net-snmp-config-sparc64 $*
9a6c41
    exit 0
9a6c41
fi
9a6c41
echo "Cannot determine architecture"