DataMuseum.dk

Presents historical artifacts from the history of:

Regnecentalen RC-900

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about Regnecentalen RC-900

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download

⟦26ffe2607⟧ TextFile

    Length: 869 (0x365)
    Types: TextFile
    Notes: UNIX file
    Names: »puninstall«

Derivation

└─⟦a0a611847⟧ Bits:30004636/disk1.imd INTERACTIVE Motif Environment Development System
└─⟦a0a611847⟧ UNIX Filesystem
    └─⟦this⟧ »xt/install/puninstall« 

TextFile

#	Restore saved conflicting Athena Widget stuff, and tell the
#	user that this is being done.
#
TOOLKIT=/usr/lib/libXt.a
TOOLKITOLD=/usr/lib/libXtA.a

if test -f $TOOLKITOLD
then
    echo "    386/ix X11 intrinsics library (without OSF/Motif enhancements) found."
    echo "    Restoring toolkit to: $TOOLKIT"
    echo
    mv $TOOLKITOLD $TOOLKIT
fi

SAVEDIR=/usr/include/X11A
INCL=/usr/include/X11

SAVE=0
for i in VendorP.h Vendor.h StringDefs.h ShellP.h Shell.h Selection.h \
    Quarks.h IntrinsicP.h Intrinsic.h CoreP.h Core.h Constraint.h \
    ConstrainP.h CompositeP.h Composite.h
do
    if test -f $SAVEDIR/$i
    then
	if test "$SAVE" = "0"
	then
	    echo "The following 386/ix X11 toolkit header files are being restored:"
	    echo
	    SAVE=1
	fi
        echo "    moving" $SAVEDIR/$i "to" $INCL/$i
        mv $SAVEDIR/$i $INCL/$i
    fi
done
echo
exit 0