forked from Lainports/freebsd-ports
transcode's configure doesn't find libdv because it fails to link in -ldl. Enclosed is a new patch-ag. Also, the port's Makefile has a couple of typos PR: 36703 Submitted by: mreimer@vpop.net
22 lines
599 B
Text
22 lines
599 B
Text
--- configure Thu Dec 13 13:17:56 2001
|
|
+++ configure Wed Apr 3 12:42:10 2002
|
|
@@ -10724,8 +10724,8 @@
|
|
dv_libs=""
|
|
fi;
|
|
|
|
-EXTRA_LIBS="$LIBS $GLIB_LIBS -ldl -lm"
|
|
-DV_EXTRA_LIBS="$GLIB_LIBS -ldl -lm"
|
|
+EXTRA_LIBS="$LIBS $GLIB_LIBS -lm"
|
|
+DV_EXTRA_LIBS="$GLIB_LIBS -lm"
|
|
|
|
if test x$with_dv = "x"yes ; then
|
|
|
|
@@ -10747,7 +10747,7 @@
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
ac_check_lib_save_LIBS=$LIBS
|
|
-LIBS="-ldv -L$with_dv_l -ldv ${EXTRA_LIBS} $LIBS"
|
|
+LIBS="-ldv -L$with_dv_l -ldv ${EXTRA_LIBS} $LIBS -llthread"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line 10752 "configure"
|
|
#include "confdefs.h"
|