52c07b36c9
Recordmydesktop produces a file(default out.ogg) that contains a video and audio recording of a desktop session. The default behavior of recording is to mark areas that have changed(through libxdamage) and update the frame. with patch from bernd@ to make sound recording work.
30 lines
1.0 KiB
Plaintext
30 lines
1.0 KiB
Plaintext
$OpenBSD: patch-configure,v 1.1.1.1 2008/07/04 21:15:24 jasper Exp $
|
|
--- configure.orig Mon Jun 9 12:26:56 2008
|
|
+++ configure Mon Jun 9 12:27:27 2008
|
|
@@ -8087,13 +8087,13 @@ echo "$as_me: error: Can't find libtheora" >&2;}
|
|
fi
|
|
|
|
|
|
-{ echo "$as_me:$LINENO: checking for pthread_mutex_lock in -lpthread" >&5
|
|
-echo $ECHO_N "checking for pthread_mutex_lock in -lpthread... $ECHO_C" >&6; }
|
|
+{ echo "$as_me:$LINENO: checking for pthread_mutex_lock in -pthread" >&5
|
|
+echo $ECHO_N "checking for pthread_mutex_lock in -pthread... $ECHO_C" >&6; }
|
|
if test "${ac_cv_lib_pthread_pthread_mutex_lock+set}" = set; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
ac_check_lib_save_LIBS=$LIBS
|
|
-LIBS="-lpthread $LIBS"
|
|
+LIBS="-pthread $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
/* confdefs.h. */
|
|
_ACEOF
|
|
@@ -8153,7 +8153,7 @@ if test $ac_cv_lib_pthread_pthread_mutex_lock = yes; t
|
|
#define HAVE_LIBPTHREAD 1
|
|
_ACEOF
|
|
|
|
- LIBS="-lpthread $LIBS"
|
|
+ LIBS="-pthread $LIBS"
|
|
|
|
else
|
|
{ { echo "$as_me:$LINENO: error: Can't find libpthread" >&5
|