Commit 98e5932d authored by Felix Paul Kühne's avatar Felix Paul Kühne

configure: fixed Growl framework detection

parent 0bc58744
...@@ -1730,14 +1730,14 @@ dnl ...@@ -1730,14 +1730,14 @@ dnl
dnl Growl notification plugin dnl Growl notification plugin
dnl dnl
AC_ARG_ENABLE(growl, AC_ARG_ENABLE(growl,
[AS_HELP_STRING([--enable-growl], [ --enable-growl growl notification plugin (default disabled)],,
[enable growl notifications (default disabled)])],, [enable_growl=no])
[enable_growl="no"])
AS_IF([test "${enable_growl}" != "no"], [ AS_IF([test "${enable_growl}" != "no"], [
VLC_ADD_PLUGIN([growl_udp]) VLC_ADD_PLUGIN([growl_udp])
AC_CHECK_HEADERS(Growl/GrowlDefines.h, [ AC_CHECK_HEADERS(${CONTRIB_DIR}/Growl/Growl.framework/Versions/A/Headers/GrowlDefines.h, [
VLC_ADD_PLUGIN([growl]) VLC_ADD_PLUGIN([growl])
VLC_ADD_LDFLAGS([growl], [-Wl,-framework,Growl,-framework,AppKit]) VLC_ADD_LDFLAGS([growl], [-F${CONTRIB_DIR}/Growl -Wl,-framework,Growl,-framework,CoreFoundation])
VLC_ADD_OBJCFLAGS([growl], [-F${CONTRIB_DIR}/Growl])
VLC_ADD_OBJCFLAGS([growl], [-fobjc-exceptions] ) VLC_ADD_OBJCFLAGS([growl], [-fobjc-exceptions] )
]) ])
] ]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment