mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
Fixed:
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
This commit is contained in:
parent
8610de3f47
commit
134c459abe
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=57273
4 changed files with 34 additions and 12 deletions
|
@ -68,10 +68,10 @@ pre-extract:
|
|||
.endif
|
||||
.if !defined(WITH_LIBA52)
|
||||
@${ECHO_MSG}
|
||||
@${ECHO_MSG} "You can enable liba52 support by defining WITH_LIBDV"
|
||||
@${ECHO_MSG} "You can enable liba52 support by defining WITH_LIBA52"
|
||||
.else
|
||||
@${ECHO_MSG}
|
||||
@${ECHO_MSG} "You enabled liba52 support by defining WITH_LIBDV"
|
||||
@${ECHO_MSG} "You enabled liba52 support by defining WITH_LIBA52"
|
||||
.endif
|
||||
.if defined(WITHOUT_AVIFILE)
|
||||
@${ECHO_MSG}
|
||||
|
@ -83,10 +83,10 @@ pre-extract:
|
|||
|
||||
.if !defined(WITH_NASM)
|
||||
@${ECHO_MSG}
|
||||
@${ECHO_MSG} "You can enable the nasm dependent moduley by defining WITH_NASM"
|
||||
@${ECHO_MSG} "You can enable the nasm dependent modules by defining WITH_NASM"
|
||||
.else
|
||||
@${ECHO_MSG}
|
||||
@${ECHO_MSG} "You enabled nsdm support by defining WITH_NASM"
|
||||
@${ECHO_MSG} "You enabled nasm support by defining WITH_NASM"
|
||||
.endif(WITH_NASM)
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1,5 +1,16 @@
|
|||
--- configure.org Tue Dec 18 18:12:10 2001
|
||||
+++ configure Tue Dec 18 18:12:31 2001
|
||||
--- 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
|
||||
|
|
|
@ -68,10 +68,10 @@ pre-extract:
|
|||
.endif
|
||||
.if !defined(WITH_LIBA52)
|
||||
@${ECHO_MSG}
|
||||
@${ECHO_MSG} "You can enable liba52 support by defining WITH_LIBDV"
|
||||
@${ECHO_MSG} "You can enable liba52 support by defining WITH_LIBA52"
|
||||
.else
|
||||
@${ECHO_MSG}
|
||||
@${ECHO_MSG} "You enabled liba52 support by defining WITH_LIBDV"
|
||||
@${ECHO_MSG} "You enabled liba52 support by defining WITH_LIBA52"
|
||||
.endif
|
||||
.if defined(WITHOUT_AVIFILE)
|
||||
@${ECHO_MSG}
|
||||
|
@ -83,10 +83,10 @@ pre-extract:
|
|||
|
||||
.if !defined(WITH_NASM)
|
||||
@${ECHO_MSG}
|
||||
@${ECHO_MSG} "You can enable the nasm dependent moduley by defining WITH_NASM"
|
||||
@${ECHO_MSG} "You can enable the nasm dependent modules by defining WITH_NASM"
|
||||
.else
|
||||
@${ECHO_MSG}
|
||||
@${ECHO_MSG} "You enabled nsdm support by defining WITH_NASM"
|
||||
@${ECHO_MSG} "You enabled nasm support by defining WITH_NASM"
|
||||
.endif(WITH_NASM)
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1,5 +1,16 @@
|
|||
--- configure.org Tue Dec 18 18:12:10 2001
|
||||
+++ configure Tue Dec 18 18:12:31 2001
|
||||
--- 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
|
||||
|
|
Loading…
Add table
Reference in a new issue