When csh scripts have DOS line endings, tcsh 6.12.00 sometimes parses them incorrectly. This seems to happen with scripts that have while loops, once the scripts get big enough. Converting the script to unix line endings fixes the problem.
The attached script, cshbug, is about as small as it can be to show the problem. It needs to be run with a valid argument, in my case cshbug -inst /usr/local/IMOD The standard error output is: =: Command not found. The attached file bugout2 is the output from csh -v cshbug -inst /usr/local/IMOD After the first trip through the while loop, it jumps back up to the middle of a line before the loop: = "unsigned int" If the variable setting section of the script is made smaller, such as by removing the first 13 lines, the problem goes away. This problem has been present for the past year at least. David Mastronarde Boulder Laboratory for 3-D Electron Microscopy of Cells
#!/bin/csh ############################################################################# # $Id: setup,v 3.41 2004/04/08 18:10:24 mast Exp $ # Set up configuration file for building BL3DFS Software. # $Author: mast $ # # $Date: 2004/04/08 18:10:24 $ # # $Revision: 3.41 $ # Log at end of file # # # Global setup # set imod_copyright = '1994-2004' set lab_name1 = 'Boulder Laboratory for 3-Dimensional' set lab_name2 = 'Electron Microscopy of Cells' set source_dir = `pwd` set endian_dir = include set configure = configure set hconfigure = include/imodconfig.tmp set hconffinal = include/imodconfig.h set debug = false set bin_dir = $source_dir/bin/ set inc_dir = $source_dir/include/ set lib_dir = $source_dir/buildlib/ set include_flags = "-I. -I$inc_dir" set optimization = "-O2" set gfx = default set compiler = default set machine = set defines = set target_computer = manual_overide set shared_libs = default set flags = set fallback = set swap_ieee = true set no_xlibs = false set distname = "" set packqt = false set qtthread = true set m64bit = false set inst_dir = default set tifflibs = default set dummytiff = set usfftdir = default set blockio = set imsubsobj = '*.o' set tiltalilib = set tilt_dir = flib/tilt set fbpswitch = fbpswitch-def.inc set midas_dir = midas set sendevent_dir = sendevent set imod_dir = imod set plugsrc_dir = plugs set libdiaqt_dir = libdiaqt set etomo_dir = Etomo set scripts_dir = scripts set midas_qconf = midas/qconfigure set imod_qconf = imod/qconfigure set sendevent_qconf = sendevent/qconfigure set fort_cpplibs = set ctrl_string = Ctrl set ld_lib_var = LD_LIBRARY_PATH set qtapp_path = set xplax = qtplax.o set objext = o set binext = set limod = -limod set liimod = -liimod set ltiff = -ltiff set ldnmncar = -ldnmncar set lifft = -lifft set ldfflags = set dllext = '$(LIBEXT)' set moc = '$(QTDIR)/bin/moc' set rgbprogs = set makestaticlib = "ar ruv " set staticranlib = ranlib set makenondll = '$(AR) $(ARFLAGS)' set modelallo = 'model/*.$(OBJEXT)' set b3dbyte = "char" set ubyte = "unsigned char" set int16 = "short int" set uint16 = "unsigned short int" set int32 = "int" set uint32 = "unsigned int" set float32 = "float" # # Input options # set optlist = while($#argv > 0) # Prepare to build list of options for make dist to use # set savearg = $argv[1] @ numbefore = $#argv set dumparg = 1 switch($argv[1]) case -d: case -debug: set debug = true breaksw case -shared: set shared_libs = true breaksw case -no_shared: set shared_libs = false breaksw case -tiff: set tifflibs = true breaksw case -no_tiff: set tifflibs = false breaksw case -m: case -mach: case -machine: shift set machine = $argv[1] breaksw case -flags: shift set flags = "$argv[1]" breaksw case -i: case -inst: shift set inst_dir = $argv[1] set dumparg = 0 breaksw case -compiler: shift set compiler = $argv[1] breaksw case -swapieee: set swap_ieee = true breaksw case -swapvms: set swap_ieee = false breaksw case -no_xlibs: set no_xlibs = true breaksw case -name: shift set distname = _$argv[1] breaksw case -packqt: set packqt = true breaksw case -h: case -help: goto usage default: echo Bad option goto usage breaksw endsw # Add selected options to list, quoting values # if ($dumparg == 1) then set optlist = "$optlist $savearg" if ($#argv < $numbefore) set optlist = "$optlist "\""$argv[1]"\" endif shift end
set imod_copyright = '1994-2004' set lab_name1 = 'Boulder Laboratory for 3-Dimensional' set lab_name2 = 'Electron Microscopy of Cells' set source_dir = `pwd` set endian_dir = include set configure = configure set hconfigure = include/imodconfig.tmp set hconffinal = include/imodconfig.h set debug = false set bin_dir = $source_dir/bin/ set inc_dir = $source_dir/include/ set lib_dir = $source_dir/buildlib/ set include_flags = "-I. -I$inc_dir" set optimization = "-O2" set gfx = default set compiler = default set machine = set defines = set target_computer = manual_overide set shared_libs = default set flags = set fallback = set swap_ieee = true set no_xlibs = false set distname = "" set packqt = false set qtthread = true set m64bit = false set inst_dir = default set tifflibs = default set dummytiff = set usfftdir = default set blockio = set imsubsobj = '*.o' set tiltalilib = set tilt_dir = flib/tilt set fbpswitch = fbpswitch-def.inc set midas_dir = midas set sendevent_dir = sendevent set imod_dir = imod set plugsrc_dir = plugs set libdiaqt_dir = libdiaqt set etomo_dir = Etomo set scripts_dir = scripts set midas_qconf = midas/qconfigure set imod_qconf = imod/qconfigure set sendevent_qconf = sendevent/qconfigure set fort_cpplibs = set ctrl_string = Ctrl set ld_lib_var = LD_LIBRARY_PATH set qtapp_path = set xplax = qtplax.o set objext = o set binext = set limod = -limod set liimod = -liimod set ltiff = -ltiff set ldnmncar = -ldnmncar set lifft = -lifft set ldfflags = set dllext = '$(LIBEXT)' set moc = '$(QTDIR)/bin/moc' set rgbprogs = set makestaticlib = "ar ruv " set staticranlib = ranlib set makenondll = '$(AR) $(ARFLAGS)' set modelallo = 'model/*.$(OBJEXT)' set b3dbyte = "char" set ubyte = "unsigned char" set int16 = "short int" set uint16 = "unsigned short int" set int32 = "int" set uint32 = "unsigned int" set float32 = "float" set optlist = while ( $#argv > 0 ) set savearg = $argv[1] @ numbefore = $#argv set dumparg = 1 switch ( $argv[1] ) shift set inst_dir = $argv[1] set dumparg = 0 breaksw if ( $dumparg == 1 ) then shift end = "unsigned int" =: Command not found. set float32 = "float" set optlist = while ( $#argv > 0 )
Cygwin Win95/NT Configuration Diagnostics Current System Time: Fri Apr 09 16:53:22 2004 Windows XP Professional Ver 5.1 Build 2600 Service Pack 1 Path: . C:\cygwin\home\mast\CYGMOD\bin c:\j2sdk1.4.2_02\bin C:\cygwin\usr\local\emacs-21.3\bin c:\Progra~1\Ghostgum\gsview C:\cygwin\usr\local\bin C:\cygwin\bin C:\cygwin\bin C:\cygwin\usr\X11R6\bin c:\Progra~1\Micros~4\Common\Tools\WinNT c:\Progra~1\Micros~4\Common\Tools\ c:\Progra~1\Micros~4\Common\MSDev98\bin c:\Progra~1\Micros~4\VC98\bin c:\Progra~1\Intel\EDB70 c:\Progra~1\Intel\Compiler70\IA32\Bin c:\Progra~1\Common~1\Intel\Shared~1\Ia32\Bin c:\WINDOWS\system32 c:\WINDOWS c:\WINDOWS\System32\Wbem c:\tecnai\exe c:\tecnai\exe\service c:\SFU\common\ c:\DOCUME~1\mast\bin C:\cygwin\bin c:\Qt\3.3.1\bin c:\Progra~1\GnuWin32\bin Output from C:\cygwin\bin\id.exe (nontsec) UID: 1005(mast) GID: 513(None) 513(None) Output from C:\cygwin\bin\id.exe (ntsec) UID: 1005(mast) GID: 513(None) 0(root) 513(None) 544(Administrators) 545(Users) SysDir: C:\WINDOWS\System32 WinDir: C:\WINDOWS HOME = `C:\cygwin\home\mast' LD_LIBRARY_PATH = `C:\cygwin\usr\lib:\usr\X11R6\lib' MAKE_MODE = `unix' PWD = `/home/mast' USER = `mast' ALLUSERSPROFILE = `C:\Documents and Settings\All Users' APPDATA = `C:\Documents and Settings\mast\Application Data' COMMONPROGRAMFILES = `C:\Program Files\Common Files' COMPUTERNAME = `B3DTOSHI' COMSPEC = `C:\WINDOWS\system32\cmd.exe' CVSROOT = `:ext:[EMAIL PROTECTED]:/home/cvsroot' CVS_RSH = `ssh' DISPLAY = `localhost:0.0' EDITOR = `/usr/bin/emacs' ESHELL = `/bin/csh' GROUP = `None' HOMEDRIVE = `C:' HOMEPATH = `\Documents and Settings\mast' HOST = `B3DTOSHI' HOSTTYPE = `i386' IMOD_DIR = `C:\cygwin\home\mast\CYGMOD' INCLUDE = `C:\Program Files\Microsoft Visual Studio\VC98\atl\include;C:\Program Files\Microsoft Visual Studio\VC98\mfc\include;C:\Program Files\Microsoft Visual Studio\VC98\include;C:\Program Files\Intel\Compiler70\IA32\Include' INTEL_LICENSE_FILE = `C:\Program Files\Common Files\Intel\Licenses' INTERIX_ROOT = `/dev/fs/C/SFU/' INTERIX_ROOT_WIN = `C:\SFU\' LIB = `C:\Program Files\Intel\Compiler70\IA32\Lib;C:\Program Files\Common Files\Intel\Shared Files\Ia32\Lib;C:\Program Files\Microsoft Visual Studio\VC98\mfc\lib;C:\Program Files\Microsoft Visual Studio\VC98\lib;' LOGNAME = `mast' LOGONSERVER = `\\B3DTOSHI' MACHTYPE = `i386' MANPATH = `:/usr/ssl/man' NUMBER_OF_PROCESSORS = `1' OPENNT_ROOT = `/dev/fs/C/SFU/' OS = `Windows_NT' OSTYPE = `posix' PAGER = `less' PATHEXT = `.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH' PROCESSOR_ARCHITECTURE = `x86' PROCESSOR_IDENTIFIER = `x86 Family 6 Model 9 Stepping 5, GenuineIntel' PROCESSOR_LEVEL = `6' PROCESSOR_REVISION = `0905' PROGRAMFILES = `C:\Program Files' PROMPT = `$P$G' QMAKESPEC = `win32-icc' QTDIR = `C:\Qt\3.3.1' SESSIONNAME = `Console' SFUDIR = `C:\SFU\' SFUDIR_INTERIX = `/dev/fs/C/SFU/' SHLVL = `1' SYSTEMDRIVE = `C:' SYSTEMROOT = `C:\WINDOWS' TERM = `cygwin' TZ = `MST7MDT6,M4.1.0/2,M10.5.0/2' USERDOMAIN = `B3DTOSHI' USERNAME = `mast' USERPROFILE = `C:\Documents and Settings\mast' VENDOR = `intel' VISUAL = `/usr/bin/emacs' WINDIR = `C:\WINDOWS' XAPPLRESDIR = `/usr/X11R6/lib/X11/app-defaults' XCMSDB = `/usr/X11R6/lib/X11/Xcms.txt' XKEYSYMDB = `/usr/X11R6/lib/X11/XKeysymDB' XNLSPATH = `/usr/X11R6/lib/X11/locale' POSIXLY_CORRECT = `1' HKEY_CURRENT_USER\Software\Cygnus Solutions HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\mounts v2 HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\Program Options HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2 (default) = `/cygdrive' cygdrive flags = 0x00000022 HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/ (default) = `C:\cygwin' flags = 0x0000000a HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/usr/bin (default) = `C:\cygwin/bin' flags = 0x0000000a HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/usr/lib (default) = `C:\cygwin/lib' flags = 0x0000000a HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/usr/X11R6/lib/X11/fonts (default) = `C:\cygwin\usr\X11R6\lib\X11\fonts' flags = 0x0000000a HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\Program Options c: hd NTFS 18998Mb 43% CP CS UN PA FC d: cd N/A N/A e: hd FAT32 19193Mb 11% CP UN C:\cygwin / system binmode C:\cygwin/bin /usr/bin system binmode C:\cygwin/lib /usr/lib system binmode C:\cygwin\usr\X11R6\lib\X11\fonts /usr/X11R6/lib/X11/fonts system binmode . /cygdrive system binmode,cygdrive Found: C:\cygwin\bin\awk.exe Found: C:\cygwin\bin\bash.exe Found: C:\cygwin\bin\cat.exe Found: c:\SFU\common\cat.exe Warning: C:\cygwin\bin\cat.exe hides c:\SFU\common\cat.exe Found: C:\cygwin\bin\cp.exe Found: c:\SFU\common\cp.exe Warning: C:\cygwin\bin\cp.exe hides c:\SFU\common\cp.exe Found: C:\cygwin\bin\cpp.exe Found: C:\cygwin\bin\find.exe Found: c:\SFU\common\find.exe Warning: C:\cygwin\bin\find.exe hides c:\SFU\common\find.exe Found: C:\cygwin\bin\gcc.exe Found: C:\cygwin\bin\gdb.exe Found: C:\cygwin\bin\grep.exe Found: c:\SFU\common\grep.exe Warning: C:\cygwin\bin\grep.exe hides c:\SFU\common\grep.exe Found: C:\cygwin\bin\ld.exe Found: C:\cygwin\bin\ls.exe Found: c:\SFU\common\ls.exe Warning: C:\cygwin\bin\ls.exe hides c:\SFU\common\ls.exe Found: C:\cygwin\bin\make.exe Found: C:\cygwin\bin\mv.exe Found: c:\SFU\common\mv.exe Warning: C:\cygwin\bin\mv.exe hides c:\SFU\common\mv.exe Found: C:\cygwin\bin\rm.exe Found: c:\SFU\common\rm.exe Warning: C:\cygwin\bin\rm.exe hides c:\SFU\common\rm.exe Found: C:\cygwin\bin\sed.exe Found: c:\SFU\common\sed.exe Warning: C:\cygwin\bin\sed.exe hides c:\SFU\common\sed.exe Found: C:\cygwin\bin\sh.exe Found: C:\cygwin\bin\tar.exe 61k 2003/08/09 C:\cygwin\bin\cygbz2-1.dll - os=4.0 img=1.0 sys=4.0 "cygbz2-1.dll" v0.0 ts=2003/8/9 0:35 7k 2003/10/19 C:\cygwin\bin\cygcrypt-0.dll - os=4.0 img=1.0 sys=4.0 "cygcrypt-0.dll" v0.0 ts=2003/10/19 1:57 841k 2004/03/17 C:\cygwin\bin\cygcrypto-0.9.7.dll - os=4.0 img=1.0 sys=4.0 "cygcrypto-0.9.7.dll" v0.0 ts=2004/3/17 15:58 155k 2004/01/07 C:\cygwin\bin\cygexpat-0.dll - os=4.0 img=1.0 sys=4.0 "cygexpat-0.dll" v0.0 ts=2004/1/7 9:14 129k 2004/03/11 C:\cygwin\bin\cygfontconfig-1.dll - os=4.0 img=1.0 sys=4.0 "cygfontconfig-1.dll" v0.0 ts=2004/3/10 17:12 45k 2001/04/25 C:\cygwin\bin\cygform5.dll - os=4.0 img=1.0 sys=4.0 "cygform5.dll" v0.0 ts=2001/4/24 23:28 35k 2002/01/09 C:\cygwin\bin\cygform6.dll - os=4.0 img=1.0 sys=4.0 "cygform6.dll" v0.0 ts=2002/1/8 23:03 48k 2003/08/09 C:\cygwin\bin\cygform7.dll - os=4.0 img=1.0 sys=4.0 "cygform7.dll" v0.0 ts=2003/8/9 3:25 361k 2003/10/25 C:\cygwin\bin\cygfreetype-6.dll - os=4.0 img=1.0 sys=4.0 "cygfreetype-6.dll" v0.0 ts=2003/10/21 22:18 28k 2003/07/20 C:\cygwin\bin\cyggdbm-3.dll - os=4.0 img=1.0 sys=4.0 "cyggdbm-3.dll" v0.0 ts=2003/7/20 1:58 30k 2003/08/11 C:\cygwin\bin\cyggdbm-4.dll - os=4.0 img=1.0 sys=4.0 "cyggdbm-4.dll" v0.0 ts=2003/8/10 20:12 19k 2003/03/22 C:\cygwin\bin\cyggdbm.dll - os=4.0 img=1.0 sys=4.0 "cyggdbm.dll" v0.0 ts=2002/2/19 20:05 15k 2003/07/20 C:\cygwin\bin\cyggdbm_compat-3.dll - os=4.0 img=1.0 sys=4.0 "cyggdbm_compat-3.dll" v0.0 ts=2003/7/20 2:00 15k 2003/08/11 C:\cygwin\bin\cyggdbm_compat-4.dll - os=4.0 img=1.0 sys=4.0 "cyggdbm_compat-4.dll" v0.0 ts=2003/8/10 20:13 69k 2003/08/10 C:\cygwin\bin\cyggettextlib-0-12-1.dll - os=4.0 img=1.0 sys=4.0 "cyggettextlib-0-12-1.dll" v0.0 ts=2003/8/10 16:10 12k 2003/08/10 C:\cygwin\bin\cyggettextpo-0.dll - os=4.0 img=1.0 sys=4.0 "cyggettextpo-0.dll" v0.0 ts=2003/8/10 16:11 134k 2003/08/10 C:\cygwin\bin\cyggettextsrc-0-12-1.dll - os=4.0 img=1.0 sys=4.0 "cyggettextsrc-0-12-1.dll" v0.0 ts=2003/8/10 16:10 17k 2001/06/28 C:\cygwin\bin\cyghistory4.dll - os=4.0 img=1.0 sys=4.0 "cyghistory4.dll" v0.0 ts=2001/1/6 21:34 29k 2003/08/10 C:\cygwin\bin\cyghistory5.dll - os=4.0 img=1.0 sys=4.0 "cyghistory5.dll" v0.0 ts=2003/8/10 17:16 958k 2003/08/10 C:\cygwin\bin\cygiconv-2.dll - os=4.0 img=1.0 sys=4.0 "cygiconv-2.dll" v0.0 ts=2003/8/10 14:57 22k 2001/12/13 C:\cygwin\bin\cygintl-1.dll - os=4.0 img=1.0 sys=4.0 "cygintl-1.dll" v0.0 ts=2001/12/13 2:28 37k 2003/08/10 C:\cygwin\bin\cygintl-2.dll - os=4.0 img=1.0 sys=4.0 "cygintl-2.dll" v0.0 ts=2003/8/10 15:50 21k 2001/06/20 C:\cygwin\bin\cygintl.dll - os=4.0 img=1.0 sys=4.0 "cygintl.dll" v0.0 ts=2001/6/20 11:09 132k 2003/08/11 C:\cygwin\bin\cygjpeg-62.dll - os=4.0 img=1.0 sys=4.0 "cygjpeg-62.dll" v0.0 ts=2003/8/10 18:37 119k 2002/02/09 C:\cygwin\bin\cygjpeg6b.dll - os=4.0 img=1.0 sys=4.0 "cygjpeg6b.dll" v0.0 ts=2002/2/8 22:19 26k 2001/04/25 C:\cygwin\bin\cygmenu5.dll - os=4.0 img=1.0 sys=4.0 "cygmenu5.dll" v0.0 ts=2001/4/24 23:27 20k 2002/01/09 C:\cygwin\bin\cygmenu6.dll - os=4.0 img=1.0 sys=4.0 "cygmenu6.dll" v0.0 ts=2002/1/8 23:03 29k 2003/08/09 C:\cygwin\bin\cygmenu7.dll - os=4.0 img=1.0 sys=4.0 "cygmenu7.dll" v0.0 ts=2003/8/9 3:25 15k 2003/11/20 C:\cygwin\bin\cygminires.dll - os=4.0 img=0.97 sys=4.0 "cygminires.dll" v0.0 ts=2003/11/19 18:55 156k 2001/04/25 C:\cygwin\bin\cygncurses++5.dll - os=4.0 img=1.0 sys=4.0 "cygncurses++5.dll" v0.0 ts=2001/4/24 23:29 175k 2002/01/09 C:\cygwin\bin\cygncurses++6.dll - os=4.0 img=1.0 sys=4.0 "cygncurses++6.dll" v0.0 ts=2002/1/8 23:03 226k 2001/04/25 C:\cygwin\bin\cygncurses5.dll - os=4.0 img=1.0 sys=4.0 "cygncurses5.dll" v0.0 ts=2001/4/24 23:17 202k 2002/01/09 C:\cygwin\bin\cygncurses6.dll - os=4.0 img=1.0 sys=4.0 "cygncurses6.dll" v0.0 ts=2002/1/8 23:03 224k 2003/08/09 C:\cygwin\bin\cygncurses7.dll - os=4.0 img=1.0 sys=4.0 "cygncurses7.dll" v0.0 ts=2003/8/9 3:24 15k 2001/04/25 C:\cygwin\bin\cygpanel5.dll - os=4.0 img=1.0 sys=4.0 "cygpanel5.dll" v0.0 ts=2001/4/24 23:27 12k 2002/01/09 C:\cygwin\bin\cygpanel6.dll - os=4.0 img=1.0 sys=4.0 "cygpanel6.dll" v0.0 ts=2002/1/8 23:03 19k 2003/08/09 C:\cygwin\bin\cygpanel7.dll - os=4.0 img=1.0 sys=4.0 "cygpanel7.dll" v0.0 ts=2003/8/9 3:24 62k 2003/12/11 C:\cygwin\bin\cygpcre-0.dll - os=4.0 img=1.0 sys=4.0 "cygpcre-0.dll" v0.0 ts=2003/12/11 10:01 63k 2003/04/11 C:\cygwin\bin\cygpcre.dll - os=4.0 img=1.0 sys=4.0 "cygpcre.dll" v0.0 ts=2003/4/11 2:31 9k 2003/12/11 C:\cygwin\bin\cygpcreposix-0.dll - os=4.0 img=1.0 sys=4.0 "cygpcreposix-0.dll" v0.0 ts=2003/12/11 10:01 61k 2003/04/11 C:\cygwin\bin\cygpcreposix.dll - os=4.0 img=1.0 sys=4.0 "cygpcreposix.dll" v0.0 ts=2003/4/11 2:31 173k 2003/08/10 C:\cygwin\bin\cygpng12.dll - os=4.0 img=1.0 sys=4.0 "cygpng12.dll" v0.0 ts=2003/8/10 16:35 22k 2002/06/09 C:\cygwin\bin\cygpopt-0.dll - os=4.0 img=1.0 sys=4.0 "cygpopt-0.dll" v0.0 ts=2002/6/8 23:45 108k 2001/06/28 C:\cygwin\bin\cygreadline4.dll - os=4.0 img=1.0 sys=4.0 "cygreadline4.dll" v0.0 ts=2001/1/6 21:34 148k 2003/08/10 C:\cygwin\bin\cygreadline5.dll - os=4.0 img=1.0 sys=4.0 "cygreadline5.dll" v0.0 ts=2003/8/10 17:16 171k 2004/03/17 C:\cygwin\bin\cygssl-0.9.7.dll - os=4.0 img=1.0 sys=4.0 "cygssl-0.9.7.dll" v0.0 ts=2004/3/17 15:58 281k 2003/02/24 C:\cygwin\bin\cygtiff3.dll - os=4.0 img=1.0 sys=4.0 "cygtiff3.dll" v0.0 ts=2003/2/23 21:58 282k 2003/08/11 C:\cygwin\bin\cygtiff4.dll - os=4.0 img=1.0 sys=4.0 "cygtiff4.dll" v0.0 ts=2003/8/10 20:32 61k 2003/12/04 C:\cygwin\bin\cygz.dll - os=4.0 img=1.0 sys=4.0 "cygz.dll" v0.0 ts=2003/12/3 20:03 1100k 2004/03/19 C:\cygwin\bin\cygwin1.dll - os=4.0 img=1.0 sys=4.0 "cygwin1.dll" v0.0 ts=2004/3/18 21:05 Cygwin DLL version info: DLL version: 1.5.9 DLL epoch: 19 DLL bad signal mask: 19005 DLL old termios: 5 DLL malloc env: 28 API major: 0 API minor: 112 Shared data: 4 DLL identifier: cygwin1 Mount registry: 2 Cygnus registry name: Cygnus Solutions Cygwin registry name: Cygwin Program options name: Program Options Cygwin mount registry name: mounts v2 Cygdrive flags: cygdrive flags Cygdrive prefix: cygdrive prefix Cygdrive default prefix: Build date: Thu Mar 18 23:05:18 EST 2004 Shared id: cygwin1S4 237k 2004/03/19 C:\cygwin\usr\X11R6\bin\cygdps-1.dll - os=4.0 img=1.0 sys=4.0 "cygdps-1.dll" v0.0 ts=2004/3/18 16:28 25k 2004/03/19 C:\cygwin\usr\X11R6\bin\cygdpstk-1.dll - os=4.0 img=1.0 sys=4.0 "cygdpstk-1.dll" v0.0 ts=2004/3/18 16:28 373k 2004/03/19 C:\cygwin\usr\X11R6\bin\cygGL-1.dll - os=4.0 img=1.0 sys=4.0 "cygGL-1.dll" v0.0 ts=2004/3/18 16:28 439k 2004/03/19 C:\cygwin\usr\X11R6\bin\cygGLU-1.dll - os=4.0 img=1.0 sys=4.0 "cygGLU-1.dll" v0.0 ts=2004/3/18 16:28 74k 2004/03/19 C:\cygwin\usr\X11R6\bin\cygICE-6.dll - os=4.0 img=1.0 sys=4.0 "cygICE-6.dll" v0.0 ts=2004/3/18 16:27 9k 2004/03/19 C:\cygwin\usr\X11R6\bin\cygoldX-6.dll - os=4.0 img=1.0 sys=4.0 "cygoldX-6.dll" v0.0 ts=2004/3/18 16:26 20k 2004/03/19 C:\cygwin\usr\X11R6\bin\cygpsres-1.dll - os=4.0 img=1.0 sys=4.0 "cygpsres-1.dll" v0.0 ts=2004/3/18 16:28 30k 2004/03/19 C:\cygwin\usr\X11R6\bin\cygSM-6.dll - os=4.0 img=1.0 sys=4.0 "cygSM-6.dll" v0.0 ts=2004/3/18 16:27 864k 2004/03/19 C:\cygwin\usr\X11R6\bin\cygX11-6.dll - os=4.0 img=1.0 sys=4.0 "cygX11-6.dll" v0.0 ts=2004/3/18 16:26 253k 2004/03/19 C:\cygwin\usr\X11R6\bin\cygXaw-6.dll - os=4.0 img=1.0 sys=4.0 "cygXaw-6.dll" v0.0 ts=2004/3/18 16:27 355k 2004/03/19 C:\cygwin\usr\X11R6\bin\cygXaw-7.dll - os=4.0 img=1.0 sys=4.0 "cygXaw-7.dll" v0.0 ts=2004/3/18 16:27 29k 2004/03/19 C:\cygwin\usr\X11R6\bin\cygXcursor-1.dll - os=4.0 img=1.0 sys=4.0 "cygXcursor-1.dll" v0.0 ts=2004/3/18 16:29 49k 2004/03/19 C:\cygwin\usr\X11R6\bin\cygXext-6.dll - os=4.0 img=1.0 sys=4.0 "cygXext-6.dll" v0.0 ts=2004/3/18 16:27 56k 2004/03/11 C:\cygwin\usr\X11R6\bin\cygXft-1.dll - os=4.0 img=1.0 sys=4.0 "cygXft-1.dll" v0.0 ts=2003/11/17 18:42 63k 2004/03/23 C:\cygwin\usr\X11R6\bin\cygXft-2.dll - os=4.0 img=1.0 sys=4.0 "cygXft-2.dll" v0.0 ts=2004/3/23 15:20 27k 2004/03/19 C:\cygwin\usr\X11R6\bin\cygXi-6.dll - os=4.0 img=1.0 sys=4.0 "cygXi-6.dll" v0.0 ts=2004/3/18 16:28 76k 2004/03/19 C:\cygwin\usr\X11R6\bin\cygXmu-6.dll - os=4.0 img=1.0 sys=4.0 "cygXmu-6.dll" v0.0 ts=2004/3/18 16:27 11k 2004/03/19 C:\cygwin\usr\X11R6\bin\cygXmuu-1.dll - os=4.0 img=1.0 sys=4.0 "cygXmuu-1.dll" v0.0 ts=2004/3/18 16:27 26k 2004/03/19 C:\cygwin\usr\X11R6\bin\cygXp-6.dll - os=4.0 img=1.0 sys=4.0 "cygXp-6.dll" v0.0 ts=2004/3/18 16:28 51k 2004/03/19 C:\cygwin\usr\X11R6\bin\cygXpm-4.dll - os=4.0 img=1.0 sys=4.0 "cygXpm-4.dll" v0.0 ts=2004/3/18 16:27 11k 2004/03/19 C:\cygwin\usr\X11R6\bin\cygXrandr-2.dll - os=4.0 img=1.0 sys=4.0 "cygXrandr-2.dll" v0.0 ts=2004/3/18 16:29 26k 2004/03/19 C:\cygwin\usr\X11R6\bin\cygXrender-1.dll - os=4.0 img=1.0 sys=4.0 "cygXrender-1.dll" v0.0 ts=2004/3/18 16:28 282k 2004/03/19 C:\cygwin\usr\X11R6\bin\cygXt-6.dll - os=4.0 img=1.0 sys=4.0 "cygXt-6.dll" v0.0 ts=2004/3/18 16:27 27k 2004/03/19 C:\cygwin\usr\X11R6\bin\cygXTrap-6.dll - os=4.0 img=1.0 sys=4.0 "cygXTrap-6.dll" v0.0 ts=2004/3/18 16:29 17k 2004/03/19 C:\cygwin\usr\X11R6\bin\cygXtst-6.dll - os=4.0 img=1.0 sys=4.0 "cygXtst-6.dll" v0.0 ts=2004/3/18 16:28 Cygwin Package Information Last downloaded files to: C:\Documents and Settings\mast\Desktop Last downloaded files from: ftp://ftp.nas.nasa.gov/mirrors/cygwin.com/pub/cygwin Package Version _update-info-dir 00227-1 ash 20040127-1 base-files 2.6-1 base-passwd 1.1-1 bash 2.05b-16 binutils 20040312-1 bzip2 1.0.2-5 crypt 1.1-1 cvs 1.11.6-3 cygutils 1.2.5-1 cygwin 1.5.9-1 cygwin-doc 1.3-7 diffutils 2.8.4-1 editrights 1.01-1 expat 1.95.7-1 fileutils 4.1-2 findutils 4.1.7-4 fontconfig 2.2.2-1 freetype2 2.1.5-1 gawk 3.1.3-4 gcc 3.3.1-3 gcc-g++ 3.3.1-3 gcc-g77 3.3.1-3 gcc-mingw-core 20031020-1 gcc-mingw-g++ 20031020-1 gcc-mingw-g77 20031020-1 gdb 20030919-1 gdbm 1.8.3-7 gettext 0.12.1-3 grep 2.5-1 groff 1.18.1-2 gzip 1.3.5-1 jpeg 6b-11 less 381-1 libbz2_1 1.0.2-5 libfontconfig1 2.2.2-1 libfreetype26 2.1.5-1 libgdbm 1.8.0-5 libgdbm-devel 1.8.3-7 libgdbm3 1.8.3-3 libgdbm4 1.8.3-7 libgettextpo0 0.12.1-3 libiconv2 1.9.1-3 libintl 0.10.38-3 libintl1 0.10.40-1 libintl2 0.12.1-3 libjpeg62 6b-11 libjpeg6b 6b-8 libncurses5 5.2-1 libncurses6 5.2-8 libncurses7 5.3-4 libpcre 4.1-1 libpcre0 4.5-1 libpng12 1.2.5-4 libpopt0 1.6.4-4 libreadline4 4.1-2 libreadline5 4.3-5 libtiff-devel 3.6.0-5 libtiff3 3.6.0-2 libtiff4 3.6.0-5 libXft 2.1.6-1 libXft1 1.0.0-1 libXft2 2.1.6-1 login 1.9-7 make 3.80-1 man 1.5k-3 mingw-runtime 3.2-1 minires 0.97-1 mktemp 1.5-3 ncurses 5.3-4 openssh 3.8p1-1 openssl 0.9.7d-1 pcre 4.5-1 pcre-doc 4.5-1 readline 4.3-5 sed 4.0.9-2 sh-utils 2.0.15-4 tar 1.13.25-5 tcltk 20030901-1 tcsh 6.12.00-7 termcap 20021106-2 terminfo 5.3_20030726-1 texinfo 4.2-4 textutils 2.0.21-1 time 1.7-1 unzip 5.50-5 w32api 2.5-1 which 1.5-2 X-startup-scripts 1.0.4-1 XFree86-base 4.3.0-9 XFree86-bin 4.3.0-19 XFree86-etc 4.3.0-11 XFree86-fenc 4.3.0-1 XFree86-fnts 4.3.0-1 XFree86-lib 4.3.0-2 XFree86-xserv 4.3.0-60 xterm 185-3 zip 2.3-6 zlib 1.2.1-1 Use -h to see help about each section
-- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/