Mercurial > hg > xemacs-beta
view etc/check_cygwin_setup.sh @ 2420:ad56e5a6d09f
[xemacs-hg @ 2004-12-06 03:46:06 by ben]
(none)
README.packages: Document use of --package-prefix.
Fix error in specifying standard package location.
make-docfile.c: Use QXE_PATH_MAX.
info.el: Correct doc string giving example package path.
menubar-items.el: Move Prefix Rectangle command up one level.
xemacs/packages.texi: Add long form of Lisp Reference Manual to links.
Add links pointing to Lisp Reference Manual for more detailed
package discussion.
lispref/range-tables.texi: Document range-table changes.
internals/internals.texi: Update history section.
elhash.c, elhash.h, profile.c: Create inchash_eq() to allow direct incrementing of hash-table
entry. Use in profile.c to try to reduce profiling overhead.
Increase initial size of profile hash tables to reduce profiling
overhead.
buffer.c, device-msw.c, dialog-msw.c, dired-msw.c, editfns.c, event-msw.c, events.c, glyphs-msw.c, keymap.c, objects-msw.c, process-nt.c, syswindows.h, text.c, text.h, unexnt.c: Rename xetcs* -> qxetcs* for consistency with qxestr*.
Rename ei*_c(_*) -> ei*_ascii(_*) since they work with ASCII-only
strings not "C strings", whatever those are. This is the last
place where "c" was incorrectly being used for "ascii".
dialog-msw.c, dumper.c, event-msw.c, fileio.c, glyphs-gtk.c, glyphs-x.c, nt.c, process-nt.c, realpath.c, sysdep.c, sysfile.h, unexcw.c, unexnext.c, unexnt.c: Try to avoid differences in systems that do or do not include
final null byte in PATH_MAX. Create PATH_MAX_INTERNAL and
PATH_MAX_EXTERNAL and use them everywhere. Rewrite code in
dumper.c to avoid use of PATH_MAX. When necessary in nt.c,
use _MAX_PATH instead of MAX_PATH to be consistent with
other places.
text.c: Code to short-circuit when binary or Unicode was not working
due to EOL wrapping. Fix this code to work when either no
EOL autodetection or no CR's or LF's in the text.
lisp.h, rangetab.c, rangetab.h, regex.c, search.c: Implement different types of ranges (open/closed start and end).
Change default to be start-closed, end-open.
author | ben |
---|---|
date | Mon, 06 Dec 2004 03:46:07 +0000 |
parents | 98fb34b6fbe9 |
children |
line wrap: on
line source
#! bash yorn() { echo -n " [y/n] " read YN junk if [ "$YN" = "n" ] then return -1; else return 0; fi } echo -n "checking for cygwin..." if ! uname -v then echo "couldn't find uname please add cygwin to your path." exit -1 fi OSversion="`uname -v | sed 's/^\(.\).*$/\1/'`" shell=`type sh | sed 's/sh is //'` distdir=`dirname $shell | sed 's!^//\(.\)/\(.*\)!\1:/\2!'` echo "cygwin installed in $distdir" echo "checking paths ..." if [ ! -d "/bin" ]; then echo "You don't have a /bin directory. Would you like to mount cygwin as /bin ?" if yorn; then mkdir /bin mount -b $distdir /bin fi #this appears bogus. --ben #elif [ "$distdir" != "/bin" ]; then # echo "Warning: you have /bin but it's not the cygwin installation." fi if [ ! -d "/tmp" ]; then echo -n "You don't have /tmp - create it?" if yorn; then mkdir /tmp fi else echo "you have /tmp" fi if [ ! -d "/etc" ]; then echo -n "You don't have /etc - create it?" if yorn; then mkdir /etc fi else echo "you have /etc" fi if [ -d "/etc" ] then if [ ! -f "/etc/termcap" ]; then echo -n "You don't have /etc/termcap - create it?" if yorn; then if [ ! -f "$distdir/../etc/termcap" ] then distdir=`mount | grep "$distdir" | sed -e "s/ .*$//"` echo "Retrieving termcap from $distdir/../etc" fi if [ -f "$distdir/../etc/termcap" ] then cp "$distdir/../etc/termcap" /etc else echo "Error: can't find termcap file" fi fi else echo "you have /etc/termcap" fi if [ ! -f "/etc/passwd" ]; then echo -n "You don't have /etc/passwd - create it?" if yorn; then if [ "$OS" = "Windows_NT" ] then echo -n "Running on NT, create domain or local password file [d/l] " read DL junk if [ "$DL" = "d" ] then mkpasswd -d > /etc/passwd else mkpasswd -l > /etc/passwd fi else echo "Please enter your userid e.g. andyp" read userid junk echo "Please enter your user name e.g. Andy Piper" read username junk echo "Administrator::500:513:::/bin/sh" > /etc/passwd echo "$userid::1000:513:$username::/bin/sh" >> /etc/passwd fi fi else echo "you have /etc/passwd" userid=`id | sed -e "s/[^(]*(\([^)]*\)).*/\1/"` fi echo "userid is $userid" if [ ! -f "/etc/group" ]; then echo -n "You don't have /etc/group - create it?" if yorn; then if [ "$OS" = "Windows_NT" ] then echo -n "Running on NT, create domain or local group file [d/l] " read DL junk if [ "$DL" = "d" ] then mkgroup -d > /etc/group else mkgroup -l > /etc/group fi else echo "None::513:" > /etc/group echo "Everyone::0:" >> /etc/group fi fi else echo "you have /etc/group" fi # this is bogus. i have no hosts file and no problems. --ben # if [ ! -f "/etc/hosts" ]; then # echo -n "You don't have /etc/hosts - create it?" # if yorn; then # mname=`uname -n` # echo "Machine name is $mname" # echo -n "Please enter your ip address " # read mipaddr junk # echo "$mname $mipaddr" > /etc/hosts # echo "localhost 127.0.0.1" >> /etc/hosts # fi # else # echo "you have /etc/hosts" # fi else echo "Can't create /etc files because /etc does not exist" fi echo "checking environment ..." if [ "$HOME" = "" ]; then echo -n "HOME is not set, rectify?" if yorn; then if [ "$OS" = "Windows_NT" ] then echo "please enter your home path [/winnt/profiles/$userid]" read HOME junk if [ "$HOME" = "" ]; then HOME="/winnt/profiles/$userid" fi else echo "please enter your home path [/]" read HOME junk if [ "$HOME" = "" ]; then HOME="/" fi fi echo "HOME=$HOME; export HOME" >> $HOME/.bashrc fi else echo "HOME is $HOME" fi if [ "$TERM" != "ansi" -a "$TERM" != "linux" ]; then echo -n "TERM is not set to linux or ansi, rectify?" if yorn; then echo "TERM=linux; export TERM" >> $HOME/.bashrc fi else echo "TERM is $TERM" fi if echo $CYGWIN | grep -w tty > /dev/null; then echo "CYGWIN is $CYGWIN" else echo "CYGWIN does not contain \"tty\"; you may experience problems with subprocess or terminal handling. To rectify this add CYGWIN=tty to your environment. (Note this cannot be done in bash as it needs to be read when cygwin1.dll initializes.)" fi