scsh-checkins
[Top] [All Lists]

[Scsh-checkins] CVS: scsh-0.6 acconfig.h,1.5,1.6 configure.in,1.11,1.12

To: scsh-checkins@sourceforge.net
Subject: [Scsh-checkins] CVS: scsh-0.6 acconfig.h,1.5,1.6 configure.in,1.11,1.12
From: Martin Gasbichler <mainzelm@users.sourceforge.net>
Date: Tue, 09 Jan 2001 07:49:26 -0800
List-id: <scsh-checkins.lists.sourceforge.net>
Sender: scsh-checkins-admin@lists.sourceforge.net
Update of /cvsroot/scsh/scsh-0.6
In directory usw-pr-cvs1:/tmp/cvs-serv1029

Modified Files:
        acconfig.h configure.in 
Log Message:
Changes for Cygwin.


Index: acconfig.h
===================================================================
RCS file: /cvsroot/scsh/scsh-0.6/acconfig.h,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** acconfig.h  2000/12/20 15:26:11     1.5
--- acconfig.h  2001/01/09 15:49:23     1.6
***************
*** 39,45 ****
  #undef HAVE_CONST_SYS_ERRLIST
  
- /* Include info we know about the system from config.scsh */
- #include "scsh/machine/sysdep.h"
- 
  /* Define if you have the nlist() function.  This is a
     not-very-portable way of looking up external symbols. */
--- 39,42 ----
***************
*** 56,59 ****
--- 53,58 ----
  #undef HAVE_HARRIS
  @BOTTOM@
+ /* Include info we know about the system from config.scsh */
+ #include "../scsh/machine/sysdep.h"
  
  #include "fake/sigact.h"

Index: configure.in
===================================================================
RCS file: /cvsroot/scsh/scsh-0.6/configure.in,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -r1.11 -r1.12
*** configure.in        2000/12/20 15:26:11     1.11
--- configure.in        2001/01/09 15:49:23     1.12
***************
*** 66,70 ****
        AC_MSG_CHECKING([underscore before symbols])
        echo 'main() { return 0; } fnord() {}' >conftest.c
!       if ${CC} ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} conftest.c ${LIBS} &&
        nm a.out | grep _fnord >/dev/null; then
                AC_MSG_RESULT([yes])
--- 66,70 ----
        AC_MSG_CHECKING([underscore before symbols])
        echo 'main() { return 0; } fnord() {}' >conftest.c
!       if ${CC} ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} -o a.out conftest.c ${LIBS} &&
        nm a.out | grep _fnord >/dev/null; then
                AC_MSG_RESULT([yes])
***************
*** 155,159 ****
    AC_DEFINE_UNQUOTED(SIGNR_30, `./scsh_aux 30`, scsh interrupt for signal 30)
    AC_DEFINE_UNQUOTED(SIGNR_31, `./scsh_aux 31`, scsh interrupt for signal 31)
!   rm -f scsh_aux      
  ])
  dnl -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
--- 155,159 ----
    AC_DEFINE_UNQUOTED(SIGNR_30, `./scsh_aux 30`, scsh interrupt for signal 30)
    AC_DEFINE_UNQUOTED(SIGNR_31, `./scsh_aux 31`, scsh interrupt for signal 31)
!   rm -f scsh_aux scsh_aux.exe 
  ])
  dnl -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
***************
*** 360,364 ****
       S48_USCORE
       S48_RDYNAMIC
!      SCSH_TZNAME
       SCSH_GMTOFF
       SCSH_CONST_SYS_ERRLIST   
--- 360,364 ----
       S48_USCORE
       S48_RDYNAMIC
!      AC_STRUCT_TIMEZONE
       SCSH_GMTOFF
       SCSH_CONST_SYS_ERRLIST   



<Prev in Thread] Current Thread [Next in Thread>
  • [Scsh-checkins] CVS: scsh-0.6 acconfig.h,1.5,1.6 configure.in,1.11,1.12, Martin Gasbichler <=