cdev-1.7.2n

This commit is contained in:
2022-12-13 12:44:04 +01:00
commit b3b88fc333
1357 changed files with 338883 additions and 0 deletions
BIN
View File
Binary file not shown.
BIN
View File
Binary file not shown.
BIN
View File
Binary file not shown.
BIN
View File
Binary file not shown.
BIN
View File
Binary file not shown.
BIN
View File
Binary file not shown.
BIN
View File
Binary file not shown.
+1
View File
@@ -0,0 +1 @@
../1.7.2
BIN
View File
Binary file not shown.
Binary file not shown.
BIN
View File
Binary file not shown.
Binary file not shown.
BIN
View File
Binary file not shown.
Binary file not shown.
BIN
View File
Binary file not shown.
Binary file not shown.
BIN
View File
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
View File
Binary file not shown.
BIN
View File
Binary file not shown.
BIN
View File
Binary file not shown.
BIN
View File
Binary file not shown.
BIN
View File
Binary file not shown.
+17
View File
@@ -0,0 +1,17 @@
#
# source this file (source /usr/local/cdev/cdev.csh) in csh,tcsh to set
# up paths for CDEV.
#
setenv CDEV /usr/local/i386-glibc22-linux/cdev-1.7.2n
setenv CDEVINCLUDE $CDEV/include
setenv CDEVSHOBJ $CDEV/lib/$SYSNAME
setenv CDEVLIB $CDEVSHOBJ
if ( $?CDEVDDL ) setenv CDEVDDLOLD $CDEVDDL
if ( -f $SLSBDBASE/config/ddl/BdMaster.bdd ) then
setenv CDEVDDL $SLSBDBASE/config/ddl/BdMaster.bdd
else
if ( -f /work/bd/config/ddl/BdMaster.bdd ) setenv CDEVDDL /work/bd/config/ddl/BdMaster.bdd
endif
setenv CDEV_NAME_SERVER "`/bin/hostname -f`"
setenv CDEV_VERSION 1.7.2
setenv LD_LIBRARY_PATH "${CDEVSHOBJ}:$LD_LIBRARY_PATH"
+23
View File
@@ -0,0 +1,23 @@
#
# source this file (. /usr/local/cdev/cdev.sh) in sh,ksh,zsh,bash to set
# up paths for CDEV.
#
if [ -z "$SYSNAME" ] ;then
SYSNAME="`/bin/uname`"; export SYSNAME
fi
CDEV=/usr/local/i386-glibc22-linux/cdev-1.7.2n
CDEVINCLUDE=$CDEV/include
CDEVSHOBJ=$CDEV/lib/$SYSNAME
CDEVLIB=$CDEVSHOBJ
if [ -n "$CDEVDDL" ] ;then
CDEVDDLOLD=$CDEVDDL
fi
if [ -f $SLSBDBASE/config/ddl/BdMaster.bdd ] ;then
CDEVDDL=$SLSBDBASE/config/ddl/BdMaster.bdd
elif [ -f /work/bd/config/ddl/BdMaster.bdd ] ;then
CDEVDDL=/work/bd/config/ddl/BdMaster.bdd
fi
CDEV_NAME_SERVER="`/bin/hostname -f`"
CDEV_VERSION=1.7.2
LD_LIBRARY_PATH="$CDEVSHOBJ:$LD_LIBRARY_PATH"
export CDEV CDEVINCLUDE CDEVSHOBJ CDEVLIB CDEVDDL CDEVDDLOLD CDEV_NAME_SERVER CDEV_VERSION LD_LIBRARY_PATH