f8fbbc5b1a
* New versions of photopile, strange. * Fixed flicker in pipes, cubestorm, and noof. * Minor fixes to circuit, polyhedra, tangram, gears, pinion, substrate, xanalogtv. * Fixed some leaks in xanalogtv and apple2. * Better seeding of the RNG.
65 lines
2.2 KiB
Plaintext
65 lines
2.2 KiB
Plaintext
$OpenBSD: patch-configure,v 1.13 2010/04/15 09:16:07 ajacoutot Exp $
|
|
--- configure.orig Tue Apr 13 22:37:06 2010
|
|
+++ configure Thu Apr 15 11:06:36 2010
|
|
@@ -9874,7 +9874,7 @@ if test "${ac_cv_lib_intl_bindtextdomain+set}" = set;
|
|
$as_echo_n "(cached) " >&6
|
|
else
|
|
ac_check_lib_save_LIBS=$LIBS
|
|
-LIBS="-lintl $LIBS"
|
|
+LIBS="-lintl -liconv $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
/* confdefs.h. */
|
|
_ACEOF
|
|
@@ -9945,7 +9945,7 @@ if test "${ac_cv_lib_intl_dgettext+set}" = set; then
|
|
$as_echo_n "(cached) " >&6
|
|
else
|
|
ac_check_lib_save_LIBS=$LIBS
|
|
-LIBS="-lintl $LIBS"
|
|
+LIBS="-lintl -liconv $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
/* confdefs.h. */
|
|
_ACEOF
|
|
@@ -10018,7 +10018,7 @@ fi
|
|
fi
|
|
|
|
if test "$gt_cv_func_dgettext_libintl" = "yes"; then
|
|
- LIBS="$LIBS -lintl";
|
|
+ LIBS="$LIBS -liconv -lintl";
|
|
fi
|
|
|
|
if test "$gt_cv_func_dgettext_libc" = "yes" \
|
|
@@ -17118,18 +17118,18 @@ $as_echo "adding \"$osx_crud\" to GL_LIBS" >&6; }
|
|
fi
|
|
|
|
|
|
- # Some versions of MesaGL are compiled to require -lpthread.
|
|
- # So if the Mesa headers exist, and -lpthread exists, then always
|
|
- # link -lpthread after the Mesa libs (be they named -lGL or -lMesaGL.)
|
|
+ # Some versions of MesaGL are compiled to require -pthread.
|
|
+ # So if the Mesa headers exist, and -pthread exists, then always
|
|
+ # link -pthread after the Mesa libs (be they named -lGL or -lMesaGL.)
|
|
#
|
|
if test "$ac_have_mesa_gl" = yes; then
|
|
- { $as_echo "$as_me:$LINENO: checking for pthread_create in -lpthread" >&5
|
|
-$as_echo_n "checking for pthread_create in -lpthread... " >&6; }
|
|
+ { $as_echo "$as_me:$LINENO: checking for pthread_create in -pthread" >&5
|
|
+$as_echo_n "checking for pthread_create in -pthread... " >&6; }
|
|
if test "${ac_cv_lib_pthread_pthread_create+set}" = set; then
|
|
$as_echo_n "(cached) " >&6
|
|
else
|
|
ac_check_lib_save_LIBS=$LIBS
|
|
-LIBS="-lpthread $LIBS"
|
|
+LIBS="-pthread $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
/* confdefs.h. */
|
|
_ACEOF
|
|
@@ -17189,7 +17189,7 @@ fi
|
|
{ $as_echo "$as_me:$LINENO: result: $ac_cv_lib_pthread_pthread_create" >&5
|
|
$as_echo "$ac_cv_lib_pthread_pthread_create" >&6; }
|
|
if test "x$ac_cv_lib_pthread_pthread_create" = x""yes; then
|
|
- GL_LIBS="-lpthread"
|
|
+ GL_LIBS="-pthread"
|
|
fi
|
|
|
|
fi
|