guile-cvs
[Top][All Lists]
Advanced

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

guile/guile-tcltk ChangeLog configure.in


From: Mikael Djurfeldt
Subject: guile/guile-tcltk ChangeLog configure.in
Date: Sun, 17 Nov 2002 18:38:12 -0500

CVSROOT:        /cvs
Module name:    guile
Changes by:     Mikael Djurfeldt <address@hidden>       02/11/17 18:38:12

Modified files:
        guile-tcltk    : ChangeLog configure.in 

Log message:
        * configure.in: Make thread support test depend on the existence
        of scm_internal_select instead of -lqthreads GUILE_LIBS.

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-tcltk/ChangeLog.diff?cvsroot=OldCVS&tr1=1.68&tr2=1.69&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-tcltk/configure.in.diff?cvsroot=OldCVS&tr1=1.31&tr2=1.32&r1=text&r2=text

Patches:
Index: guile/guile-tcltk/ChangeLog
diff -c guile/guile-tcltk/ChangeLog:1.68 guile/guile-tcltk/ChangeLog:1.69
*** guile/guile-tcltk/ChangeLog:1.68    Sun Nov 17 18:03:03 2002
--- guile/guile-tcltk/ChangeLog Sun Nov 17 18:38:11 2002
***************
*** 1,5 ****
--- 1,8 ----
  2002-11-17  Mikael Djurfeldt  <address@hidden>
  
+       * configure.in: Make thread support test depend on the existence
+       of scm_internal_select instead of -lqthreads GUILE_LIBS.
+ 
        * Makefile.am (INCLUDES): Define INCLUDES to GUILE_CFLAGS.
  
  2002-11-14  Mikael Djurfeldt  <address@hidden>
Index: guile/guile-tcltk/configure.in
diff -c guile/guile-tcltk/configure.in:1.31 guile/guile-tcltk/configure.in:1.32
*** guile/guile-tcltk/configure.in:1.31 Thu Nov 14 13:19:08 2002
--- guile/guile-tcltk/configure.in      Sun Nov 17 18:38:12 2002
***************
*** 149,163 ****
  GUILE_LIBS="$GUILE_LDFLAGS"
  AC_SUBST(GUILE_LIBS)
  
! case "$GUILE_LIBS" in
!   *-lqthreads* )
      LIBOBJS="tclUnixNotfy.o $LIBOBJS"
      ## If we're creating a shared library (using libtool!), then we'll
      ## need to generate a list of .lo files corresponding to the .o files
      ## given in LIBOBJS.  We'll call it LIBLOBJS.
      LIBLOBJS="`echo ${LIBOBJS} | sed 's/\.o/.lo/g'`"
!   ;;
! esac
  AC_SUBST(LIBLOBJS)
  
  TCLTKDIR="`$GUILE_CONFIG info pkgdatadir`/tcltk"
--- 149,166 ----
  GUILE_LIBS="$GUILE_LDFLAGS"
  AC_SUBST(GUILE_LIBS)
  
! saved_LIBS="$LIBS"
! LIBS="$GUILE_LIBS $LIBS"
! AC_CHECK_FUNCS(scm_internal_select)
! LIBS="$saved_LIBS"
!       
! if test "$ac_cv_func_scm_internal_select" = "yes"; then
      LIBOBJS="tclUnixNotfy.o $LIBOBJS"
      ## If we're creating a shared library (using libtool!), then we'll
      ## need to generate a list of .lo files corresponding to the .o files
      ## given in LIBOBJS.  We'll call it LIBLOBJS.
      LIBLOBJS="`echo ${LIBOBJS} | sed 's/\.o/.lo/g'`"
! fi
  AC_SUBST(LIBLOBJS)
  
  TCLTKDIR="`$GUILE_CONFIG info pkgdatadir`/tcltk"




reply via email to

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