#!/bin/sh
# ****************************************************************************
# Copyright (c) 2001 Digi International Inc., All Rights Reserved
# 
# This software contains proprietary and confidential information of Digi
# International Inc.  By accepting transfer of this copy, Recipient agrees
# to retain this software in confidence, to prevent disclosure to others,
# and to make no use of this software other than that for which it was
# delivered.  This is an unpublished copyrighted work of Digi International
# Inc.  Except as permitted by federal law, 17 USC 117, copying is strictly
# prohibited.
# 
# Restricted Rights Legend
#
# Use, duplication, or disclosure by the Government is subject to
# restrictions set forth in sub-paragraph (c)(1)(ii) of The Rights in
# Technical Data and Computer Software clause at DFARS 252.227-7031 or
# subparagraphs (c)(1) and (2) of the Commercial Computer Software -
# Restricted Rights at 48 CFR 52.227-19, as applicable.
#
# Digi International Inc. 11001 Bren Road East, Minnetonka, MN 55343
#
# ***************************************************************************

DG_PATH=/opt/dg

OS_DIR=`uname -m | sed -e s/i.86/linux-intel/ -e s/arm.*/linux-alpha/ -e s/sa110/linux-alpha/ -e s/alpha/linux-alpha/`

PATH=$PATH:/usr/bin/X11:/usr/openwin/bin:/usr/X/bin:/usr/dt/bin:${DG_PATH}/tcl-tk8.3.2/$OS_DIR/bin
export PATH

LD_LIBRARY_PATH=${DG_PATH}/tcl-tk8.3.2/$OS_DIR/lib:$LD_LIBRARY_PATH
export LD_LIBRARY_PATH

echo "Using TCL/TK on " $DISPLAY
${DG_PATH}/tcl-tk8.3.2/$OS_DIR/bin/wish8.3 ${DG_PATH}/sme/management/main.tcl $OS_DIR


