[vlc-devel] [RFC PATCH 3/7] Rework breakpad detection to enable it on windows as well
Hugo Beauzée-Luyssen
hugo at beauzee.fr
Wed Dec 20 11:34:37 CET 2017
---
bin/Makefile.am | 2 ++
configure.ac | 32 ++++++++++++++++++--------------
2 files changed, 20 insertions(+), 14 deletions(-)
diff --git a/bin/Makefile.am b/bin/Makefile.am
index d464b08959..a1ae4ef0d7 100644
--- a/bin/Makefile.am
+++ b/bin/Makefile.am
@@ -41,6 +41,7 @@ vlc_osx_LDFLAGS += -Xlinker -rpath -Xlinker "@executable_path/plugins/"
if HAVE_BREAKPAD
vlc_osx_LDFLAGS += -Wl,-framework,Breakpad
vlc_osx_OBJCFLAGS = -F$(CONTRIB_DIR)/Frameworks
+vlc_osx_CPPFLAGS = -DHAVE_BREAKPAD
endif
vlc_osx_LDADD = ../lib/libvlc.la
@@ -56,6 +57,7 @@ vlc_osx_static_LDADD = $(vlc_osx_LDADD)
if HAVE_BREAKPAD
vlc_osx_static_LDFLAGS += -Wl,-framework,Breakpad
vlc_osx_static_OBJCFLAGS += -F$(CONTRIB_DIR)/Frameworks
+vlc_osx_static_CPPFLAGS = -DHAVE_BREAKPAD
endif
diff --git a/configure.ac b/configure.ac
index acbee6c0b1..085e432ee9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3834,24 +3834,28 @@ AS_IF([test "$with_breakpad" != "no"], [
AC_MSG_ERROR([You need to supply the CrashDragon Server URL as value for --with-breakpad])
])
- AS_IF([test "$HAVE_OSX" != "1"], [
- AC_MSG_ERROR([Breakpad currently only works on macOS])
- ])
-
- AC_MSG_CHECKING([for Breakpad framework])
- AS_IF([test ! -d ${CONTRIB_DIR}/Breakpad.framework -a \
- ! -d ${CONTRIB_DIR}/Frameworks/Breakpad.framework], [
- AC_MSG_RESULT([no])
- AC_MSG_ERROR([Breakpad framework is required and was not found in ${CONTRIB_DIR}])
- ], [
- AC_MSG_RESULT([yes])
- AC_DEFINE([HAVE_BREAKPAD], [1], [Define to 1 if breakpad is enabled.])
- AC_SUBST(BREAKPAD_URL, ["${with_breakpad}"])
+ AS_IF([test "$HAVE_OSX" = "1"], [
+ AC_MSG_CHECKING([for Breakpad framework])
+ AS_IF([test ! -d ${CONTRIB_DIR}/Breakpad.framework -a \
+ ! -d ${CONTRIB_DIR}/Frameworks/Breakpad.framework], [
+ AC_MSG_RESULT([no])
+ with_breakpad="no"
+ AC_MSG_ERROR([Breakpad framework is required and was not found in ${CONTRIB_DIR}])
+ ], [
+ AC_MSG_RESULT([yes])
+ ])
+ ],[
+ PKG_CHECK_MODULES([BREAKPAD], [breakpad-client],, [
+ wiht_breakpad="no"
+ AC_MSG_WARN(["Breakpad not found"])
+ ])
])
-
])
AM_CONDITIONAL(HAVE_BREAKPAD, [test "$with_breakpad" != "no"])
+AS_IF([test "$with_breakpad" != "no"], [
+ AC_SUBST(BREAKPAD_URL, ["${with_breakpad}"])
+])
dnl
dnl Minimal Mac OS X module
--
2.11.0
More information about the vlc-devel
mailing list