mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-28 00:49:01 +08:00
2017886818
- Setup and use pkg-config for ffmpeg dependencies. https://github.com/microsoft/vcpkg/pull/38011#discussion_r1623174355. - Export actual c++ link libraries for fdk-aac via pkg-config. (Same pattern as lerc, geos.) - Rectify link libraries in pkg-config for alsa, libsrt, snappy, x265. - Burn-in dllimport for libsrt and x265. - Pass detected STRIP to ffmpeg. Fixes https://github.com/microsoft/vcpkg/issues/36852.
13 lines
368 B
Diff
13 lines
368 B
Diff
diff --git a/configure.ac b/configure.ac
|
|
index 7a152a4..324adf8 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -261,6 +261,7 @@ HAVE_LIBDL=
|
|
if test "$have_libdl" = "yes"; then
|
|
AC_SEARCH_LIBS([dlsym], [dl], [HAVE_LIBDL="yes"])
|
|
if test "$HAVE_LIBDL" = "yes" ; then
|
|
+ ALSA_DEPLIBS="$ALSA_DEPLIBS -ldl"
|
|
AC_DEFINE([HAVE_LIBDL], 1, [Have libdl])
|
|
fi
|
|
else
|