pkgsrc/x11/fox/patches/patch-aa
wiz c49427ac2c Update to 1.4.34, latest from 1.4.x series:
New in 1.4.34:
* Fixed buglet in own strtoll which is only used on machines which
don't have native one.

1.4.32
* Back-ported fixes for GCC 4.1 C++ Language Changes [Friend Injection].

1.4.26
* Fixed SUN Solaris compile issue with threads.
* Missing fxcheckTIF(), fxcheckPNG(), fxcheckJPG() declarations if
TIF, PNG, and JPEG support is stubbed out.

1.4.24
* Fixed small issue in FXVec4{d,f} distance() routine.

1.4.23
* Fixed compile issue with new GetOwnModuleHandle() function.
* Delete thread local storage key upon global destructor in FXThread.

1.4.22
* Fixed bug in fxloadGIF [and thus also in FXGIFIcon and FXGIFImage;
some subltety with the LZW implementation was wrong. It is very
rare as we've lived with this flaw for a long time before discovering
it. The symptom is that the decoder complains that the image is
truncated [it isn't!].
* Bug in FXSettings causes trouble when writing large integer
numbers back to the registry file.

1.4.21
* The getDisplay() API now returns the proper HINSTANCE on Windows;
thanks to Henrik and Claus Wann Jensen feedback on this problem.
The solution fixes some instability problems in .DLL use of FOX on
Windows.


1.4.20
* Set active window to owner when dialog closes on Windows.
* Fixed Thread Local Storage handle leak on Windows.
* Fixed GDI HICON handle leak for FXTopLevel's big/small icons on Windows.
2006-07-17 19:20:45 +00:00

47 lines
1.7 KiB
Text

$NetBSD: patch-aa,v 1.5 2006/07/17 19:20:45 wiz Exp $
--- configure.orig 2006-06-13 02:24:25.000000000 +0000
+++ configure
@@ -1845,7 +1845,6 @@ LT_AGE=`expr $FOX_INTERFACE_VERSION - $F
-CXXFLAGS=""
echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5
echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6
@@ -23331,13 +23330,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} ${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
@@ -23396,7 +23395,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
@@ -25467,7 +25466,7 @@ fi;
echo "$as_me:$LINENO: result: $enable_release" >&5
echo "${ECHO_T}$enable_release" >&6
if test "x$enable_release" = "xyes" ; then
-CXXFLAGS="${CXXFLAGS} -O2 -DNDEBUG"
+CXXFLAGS="${CXXFLAGS} -DNDEBUG"
if test "${GXX}" = "yes" ; then
CXXFLAGS="${CXXFLAGS} -Wuninitialized -ffast-math -fno-strict-aliasing -finline-functions -fomit-frame-pointer -fexpensive-optimizations"
fi