scsh-checkins
[Top] [All Lists]

[Scsh-checkins] CVS: scsh/cig image2script,1.2,1.3

To: scsh-checkins@lists.sourceforge.net
Subject: [Scsh-checkins] CVS: scsh/cig image2script,1.2,1.3
From: "Brian D. Carlstrom" <bdc@users.sourceforge.net>
Date: Sun, 25 Feb 2001 11:51:58 -0800
List-id: <scsh-checkins.lists.sourceforge.net>
Sender: scsh-checkins-admin@lists.sourceforge.net
Update of /cvsroot/scsh/scsh/cig
In directory usw-pr-cvs1:/tmp/cvs-serv25287/cig

Modified Files:
        image2script 
Log Message:
Summary: 

Three changes
- Updated 0.5.2 to 0.5.3
- Updated for latest cygwin, removing MKS dependency
- Added cleaned up ODBC code

Details:

Updated 0.5.2 to 0.5.3

        M RELEASE
        M scsh.spec
        M bin/scsh-release
        M bin/scsh-test
        M doc/scsh-manual/front.tex
        M doc/scsh-manual/man.tex
        M scsh/minor-version-number
        M scsh/oldtop.scm
        M scsh/scsh-version.scm

Rebuilt to get new version number

        M initial.image

Remove MKS dependency now that Cygwin cat works on binary files
without munging with carriage returns and newlines.

        M cig/image2script

Changed cygwin32 to cygwin.

        M scsh/Makefile.in

Added #ifndef __CYGWIN__ around some pesky extern references.

        M scsh/scsh/network1.c
        M scsh/scsh/time1.c

Updated with optional ODBC bits. This is going to be hard to make nice
and clean. 

        M scsh/Makefile.in

New ODBC code

        A scsh/odbc/odbc.txt
        A scsh/odbc/odbc0.c
        A scsh/odbc/odbc0.scm
        A scsh/odbc/odbc1.c
        A scsh/odbc/odbc1.scm
        A scsh/odbc/odbc2.c
        A scsh/odbc/odbc2.scm
        A scsh/odbc/scsh-odbc.c

New odbc-interface and odbc-package

        M scsh/scsh/scsh-interfaces.scm
        M scsh/scsh/scsh-package.scm


Index: image2script
===================================================================
RCS file: /cvsroot/scsh/scsh/cig/image2script,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** image2script        1999/06/21 04:35:20     1.2
--- image2script        2001/02/25 19:51:56     1.3
***************
*** 15,23 ****
  fi
  
! if [ ! "${OSTYPE}" = "cygwin32" ] ; then
!     exec cat
! else
!     exec /mksnt/cat
! fi
  
  # This program reads an S48 image from stdin and turns it into
--- 15,19 ----
  fi
  
! exec cat
  
  # This program reads an S48 image from stdin and turns it into



<Prev in Thread] Current Thread [Next in Thread>
  • [Scsh-checkins] CVS: scsh/cig image2script,1.2,1.3, Brian D. Carlstrom <=