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

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

[Dotgnu-pnet-commits] CVS: pnet ChangeLog,1.2487,1.2488 configure.in,1.


From: Rhys Weatherley <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnet ChangeLog,1.2487,1.2488 configure.in,1.132,1.133
Date: Sun, 29 Jun 2003 17:26:22 -0400

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

Modified Files:
        ChangeLog configure.in 
Log Message:


configure.in: Made gcc threading model detected occur only if
the system isn't windows or linux (windows and linux have default
forced threading models).

engine/layout.c: Fixed bug so that classes that don't implement
interfaces nor have static fields are properly identified as
managed or unmanaged.



Index: ChangeLog
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnet/ChangeLog,v
retrieving revision 1.2487
retrieving revision 1.2488
diff -C2 -r1.2487 -r1.2488
*** ChangeLog   28 Jun 2003 05:42:18 -0000      1.2487
--- ChangeLog   29 Jun 2003 21:26:20 -0000      1.2488
***************
*** 1,3 ****
--- 1,13 ----
  
+ 2003-06-29  Thong Nguyen  <address@hidden>
+ 
+       * configure.in: Made gcc threading model detected occur only if
+       the system isn't windows or linux (windows and linux have default
+       forced threading models).
+       
+       * engine/layout.c: Fixed bug so that classes that don't implement
+       interfaces nor have static fields are properly identified as
+       managed or unmanaged.  
+ 
  2003-06-28  Rhys Weatherley  <address@hidden>
  

Index: configure.in
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnet/configure.in,v
retrieving revision 1.132
retrieving revision 1.133
diff -C2 -r1.132 -r1.133
*** configure.in        27 Jun 2003 21:45:36 -0000      1.132
--- configure.in        29 Jun 2003 21:26:20 -0000      1.133
***************
*** 106,116 ****
  AC_MSG_CHECKING([for threads package to use])
  AC_ARG_ENABLE(threads, [  --enable-threads=TYPE   choose threading package],
!   THREADS=$enableval,
!   [ AC_MSG_CHECKING([for thread model used by GCC])
!     THREADS=`$CC -v 2>&1 | sed -n 's/^Thread model: //p'`
!     if test -z "$THREADS"; then
!       THREADS=no
!     fi
!     AC_MSG_RESULT([$THREADS])])
  
  dnl Force pthreads for GNU/Linux and win32 threads for Cygwin systems.
--- 106,110 ----
  AC_MSG_CHECKING([for threads package to use])
  AC_ARG_ENABLE(threads, [  --enable-threads=TYPE   choose threading package],
!   THREADS=$enableval, THREADS=no)
  
  dnl Force pthreads for GNU/Linux and win32 threads for Cygwin systems.
***************
*** 123,127 ****
                        THREADS=posix
                        ;;
!               *-*-mingw*|*-*-cygwin*)
                        THREADS=win32
                        ;;
--- 117,121 ----
                        THREADS=posix
                        ;;
!       *-*-mingw*|*-*-cygwin*)
                        THREADS=win32
                        ;;
***************
*** 129,132 ****
--- 123,133 ----
  fi
  
+ if test "$THREADS" = "no" ; then
+     AC_MSG_CHECKING([for thread model used by GCC])
+     THREADS=`$CC -v 2>&1 | sed -n 's/^Thread model: //p'`
+ fi    
+ 
+ AC_MSG_RESULT([$THREADS])
+       
  THREADLIBS=
  case "$THREADS" in





reply via email to

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