dotgnu-pnet-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Dotgnu-pnet-commits] CVS: treecc ChangeLog,1.55,1.56 README,1.6,1.7 co


From: Rhys Weatherley <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: treecc ChangeLog,1.55,1.56 README,1.6,1.7 configure.in,1.21,1.22
Date: Sat, 14 Dec 2002 23:09:07 -0500

Update of /cvsroot/dotgnu-pnet/treecc
In directory subversions:/tmp/cvs-serv25213

Modified Files:
        ChangeLog README configure.in 
Log Message:


Always turn off cygwin builds under Win32.


Index: ChangeLog
===================================================================
RCS file: /cvsroot/dotgnu-pnet/treecc/ChangeLog,v
retrieving revision 1.55
retrieving revision 1.56
diff -C2 -r1.55 -r1.56
*** ChangeLog   15 Dec 2002 04:03:27 -0000      1.55
--- ChangeLog   15 Dec 2002 04:09:04 -0000      1.56
***************
*** 11,14 ****
--- 11,16 ----
        binary so that we don't have any more skeleton path search problems.
  
+       * README, configure.in: always turn off cygwin builds under Win32.
+ 
  2002-11-24  Gopal V  <address@hidden>
        

Index: README
===================================================================
RCS file: /cvsroot/dotgnu-pnet/treecc/README,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** README      3 Nov 2002 07:06:15 -0000       1.6
--- README      15 Dec 2002 04:09:04 -0000      1.7
***************
*** 42,56 ****
  install the program.
  
! If you are building treecc under Cygwin on Windows and you want to be
! able to run treecc outside the Cygwin environment, then you should
! configure the program as follows:
! 
!     $ ./configure --disable-cygwin
! 
! This forces treecc to be built in such a way that it can be run as a
! regular Windows program.  Otherwise you will need to run treecc within
! the Cygwin environment, using CYGWIN1.DLL.
! 
! If you want to add a new output languages, see "doc/extending.txt".
  
  Copyright Considerations
--- 42,46 ----
  install the program.
  
! If you want to add a new output language, see "doc/extending.txt".
  
  Copyright Considerations

Index: configure.in
===================================================================
RCS file: /cvsroot/dotgnu-pnet/treecc/configure.in,v
retrieving revision 1.21
retrieving revision 1.22
diff -C2 -r1.21 -r1.22
*** configure.in        23 Nov 2002 06:43:41 -0000      1.21
--- configure.in        15 Dec 2002 04:09:04 -0000      1.22
***************
*** 5,19 ****
  AM_MAINTAINER_MODE
  
! dnl Option to disable cygwin1.dll under Windows.
! AC_ARG_ENABLE(cygwin,
! [  --disable-cygwin        Disable cygwin1.dll under Windows],
! [case "${enableval}" in
!   yes) cygwin=true ;;
!   no)  cygwin=false ;;
!   *) AC_MSG_ERROR(bad value ${enableval} for --enable-cygwin) ;;
! esac],[cygwin=true])
! if test x$cygwin = xfalse ; then
!   CFLAGS="$CFLAGS -mno-cygwin"
! fi
  
  dnl Checks for programs.
--- 5,20 ----
  AM_MAINTAINER_MODE
  
! dnl Turn off the cygwin library if building for Win32.
! AC_MSG_CHECKING([if building for some Win32 platform])
! case "$host" in
!       *-*-mingw*|*-*-cygwin*)
!               platform_win32=yes
!               CC="gcc -mno-cygwin"
!               ;;
!       *)
!               platform_win32=no
!               ;;
! esac
! AC_MSG_RESULT($platform_win32)
  
  dnl Checks for programs.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]