March 10 - FOX STABLE 1.6.32 * Fixed FXPath::simplify(). Backport from FOX 1.7. * Fixed Adie CPU load issue caused by clock updating. * Fixed FXURL::fileFromURL(). November 16 - FOX STABLE 1.6.31 * Bug fix to strtoull() for systems which have no native strtoull(). * Missing tr() added in FXMDIClient. * Fix for FXRuby in FXMDIClient (don't test for message==0 in notify message). October 6 - FOX STABLE 1.6.30 * Fixed some issues with flush() in FXBZFileStream and FXGZFileStream. * FXDial didn't issue SEL_COMMAND when driven from keyboard. * Small typo found in fxfilematch() was found which affected character-range matching. * Problem in FX7Segment fixed. August 9 - FOX STABLE 1.6.29 * Added ".jpeg" as additional extension for JPEG images in FXIconSource. * Fix in FXSplashWindow not killing timer if it gets destroyed before timer goes off. * FX7Segment had bug in onCmdGetStringValue() implementation (it was not returning the string). * Cruft removed from FXMat3f. * Bold style fixed in FXText. * Read outside buffer problem (flagged in valgrind occasionally) fixed in FXText. * Bugs in FXListBox and FXTreeListBox fixed. 1.6.28: not described
39 lines
1.4 KiB
Text
39 lines
1.4 KiB
Text
$NetBSD: patch-aa,v 1.8 2008/04/25 05:21:30 wiz Exp $
|
|
|
|
--- configure.orig 2008-03-11 04:09:40.000000000 +0100
|
|
+++ configure
|
|
@@ -22648,13 +22648,13 @@ fi
|
|
|
|
PTHREAD_LIBS=notfound
|
|
if test "x$PTHREAD_LIBS" = xnotfound; then
|
|
-{ echo "$as_me:$LINENO: checking for pthread_exit in -lpthread" >&5
|
|
-echo $ECHO_N "checking for pthread_exit in -lpthread... $ECHO_C" >&6; }
|
|
+{ echo "$as_me:$LINENO: checking for pthread_exit in ${PTHREAD_LDFLAGS} ${REAL_PTHREAD_LIBS}" >&5
|
|
+echo $ECHO_N "checking for pthread_exit in ${PTHREAD_LDFLAGS} ${REAL_PTHREAD_LIBS}... $ECHO_C" >&6; }
|
|
if test "${ac_cv_lib_pthread_pthread_exit+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
ac_check_lib_save_LIBS=$LIBS
|
|
-LIBS="-lpthread $LIBS"
|
|
+LIBS="${PTHREAD_LDFLAGS} ${REAL_PTHREAD_LIBS} $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
/* confdefs.h. */
|
|
_ACEOF
|
|
@@ -22710,7 +22710,7 @@ fi
|
|
{ echo "$as_me:$LINENO: result: $ac_cv_lib_pthread_pthread_exit" >&5
|
|
echo "${ECHO_T}$ac_cv_lib_pthread_pthread_exit" >&6; }
|
|
if test $ac_cv_lib_pthread_pthread_exit = yes; then
|
|
- PTHREAD_LIBS="-lpthread"
|
|
+ PTHREAD_LIBS="${PTHREAD_LDFLAGS} ${REAL_PTHREAD_LIBS}"
|
|
fi
|
|
|
|
fi
|
|
@@ -22777,7 +22777,7 @@ fi
|
|
{ echo "$as_me:$LINENO: result: $ac_cv_lib_pthreads_pthread_exit" >&5
|
|
echo "${ECHO_T}$ac_cv_lib_pthreads_pthread_exit" >&6; }
|
|
if test $ac_cv_lib_pthreads_pthread_exit = yes; then
|
|
- PTHREAD_LIBS="-lpthreads"
|
|
+ PTHREAD_LIBS="${PTHREAD_LDFLAGS} ${REAL_PTHREAD_LIBS}"
|
|
fi
|
|
|
|
fi
|