Changeset 74d2017 in git


Ignore:
Timestamp:
Sep 23, 2004, 12:03:30 PM (20 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', '17f1d200f27c5bd38f5dfc6e8a0879242279d1d8')
Children:
daf8e173eb494f2eded1d6f2f0908fae7c441082
Parents:
481ed7f68993bf02f4d42dd61ae707209d68f66d
Message:
*hannes: 2-1-99


git-svn-id: file:///usr/local/Singular/svn/trunk@7487 2c84dea3-7e68-4137-9b89-c4e89433aadc
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • MP/MP/MP_TcpTransp.c

    r481ed7 r74d2017  
    7474
    7575#ifndef lint
    76 static char vcid[] = "@(#) $Id: MP_TcpTransp.c,v 1.11 2001-11-05 17:11:11 Singular Exp $";
     76static char vcid[] = "@(#) $Id: MP_TcpTransp.c,v 1.12 2004-09-23 10:03:29 Singular Exp $";
    7777#endif /* lint */
    7878
     
    768768    sprintf(cport,"%d",tcp_rec->peerport);
    769769    argv[7] = cport;
    770 
     770#ifndef NO_LOGGING
     771    sprintf(log_msg, "open_tcp_fork:  child starti (pid=%d)",getpid());
     772#endif
    771773    /* establish connection */
    772774    stat = open_tcp_connect_mode(link, 8, argv);
  • Makefile.in

    r481ed7 r74d2017  
    129129install_prefix  = ${localdir}/Singular/${S_VERSION}
    130130
    131 BINDIST_DIRS    = Singular doc IntegerProgramming
     131BINDIST_DIRS    = kernel Singular doc IntegerProgramming
    132132PLU_BINDIST_DIRS = Singular doc
    133133SHAREDIST_DIRS  = Singular doc emacs
  • Singular/grammar.y

    r481ed7 r74d2017  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: grammar.y,v 1.102 2004-08-27 12:18:46 Singular Exp $ */
     4/* $Id: grammar.y,v 1.103 2004-09-23 10:03:30 Singular Exp $ */
    55/*
    66* ABSTRACT: SINGULAR shell grammatik
     
    603603
    604604exprlist:
    605         expr ',' exprlist
     605        exprlist ',' expr
    606606          {
    607607            leftv v = &$1;
  • configure

    r481ed7 r74d2017  
    597597SINGULAR_MAJOR_VERSION=2
    598598SINGULAR_MINOR_VERSION=1
    599 SINGULAR_SUB_VERSION=2
     599SINGULAR_SUB_VERSION=99
    600600VERSION_SEP="-"
    601601SINGULAR_SHORT_VERSION="${SINGULAR_MAJOR_VERSION}${VERSION_SEP}${SINGULAR_MINOR_VERSION}"
    602602SINGULAR_VERSION="${SINGULAR_SHORT_VERSION}${VERSION_SEP}${SINGULAR_SUB_VERSION}"
    603603SINGULAR_RPM_VERSION="${SINGULAR_MAJOR_VERSION}.${SINGULAR_MINOR_VERSION}.${SINGULAR_SUB_VERSION}"
    604 VERSION_DATE="July 2003"
     604VERSION_DATE="August 2004"
    605605SINGULAR_ROOT_DIR=$pwd
    606606
  • configure.in

    r481ed7 r74d2017  
    1111SINGULAR_MAJOR_VERSION=2
    1212SINGULAR_MINOR_VERSION=1
    13 SINGULAR_SUB_VERSION=2
     13SINGULAR_SUB_VERSION=99
    1414VERSION_SEP="-"
    1515SINGULAR_SHORT_VERSION="${SINGULAR_MAJOR_VERSION}${VERSION_SEP}${SINGULAR_MINOR_VERSION}"
    1616SINGULAR_VERSION="${SINGULAR_SHORT_VERSION}${VERSION_SEP}${SINGULAR_SUB_VERSION}"
    1717SINGULAR_RPM_VERSION="${SINGULAR_MAJOR_VERSION}.${SINGULAR_MINOR_VERSION}.${SINGULAR_SUB_VERSION}"
    18 VERSION_DATE="July 2003"
     18VERSION_DATE="August 2004"
    1919SINGULAR_ROOT_DIR=$pwd
    2020
Note: See TracChangeset for help on using the changeset viewer.