[vlc-commits] configure: Specify a build ID when building with breakpad on windows

Hugo Beauzée-Luyssen git at videolan.org
Sat Dec 23 21:47:46 CET 2017


vlc | branch: master | Hugo Beauzée-Luyssen <hugo at beauzee.fr> | Tue Dec 19 16:42:00 2017 +0100| [ec2f6b5faa80b6156c91ea04c905c6ea6d0e7f43] | committer: Hugo Beauzée-Luyssen

configure: Specify a build ID when building with breakpad on windows

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=ec2f6b5faa80b6156c91ea04c905c6ea6d0e7f43
---

 configure.ac | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/configure.ac b/configure.ac
index 7278b4c2d3..e569fe8184 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3850,7 +3850,9 @@ AS_IF([test "$with_breakpad" != "no"], [
       AC_MSG_RESULT([yes])
     ])
   ],[
-    PKG_CHECK_MODULES([BREAKPAD], [breakpad-client],, [
+    PKG_CHECK_MODULES([BREAKPAD], [breakpad-client], [
+      LDFLAGS="${LDFLAGS} -Wl,--build-id"
+    ], [
       AC_MSG_ERROR(["breakpad not found"])
     ])
   ])



More information about the vlc-commits mailing list