From 7c946bfafe961c1dda51d19b5c29a5600ef1e5ec Mon Sep 17 00:00:00 2001 From: Eduardo Chappa Date: Sun, 26 Jul 2015 08:29:05 -0600 Subject: * Fix compilation error in arg.c when pwdcertdir was being freed, even though a password file might have not been defined. * Work on reducing the number of warnings in OSX. --- pith/osdep/mimedisp.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'pith/osdep') diff --git a/pith/osdep/mimedisp.c b/pith/osdep/mimedisp.c index 2ee99293..7917a716 100644 --- a/pith/osdep/mimedisp.c +++ b/pith/osdep/mimedisp.c @@ -412,12 +412,21 @@ osx_build_mime_type_cmd(mime_type, cmd, cmdlen, sp_hndlp) CFStringRef str_ref = NULL, ret_str_ref = NULL; CFURLRef url_ref = NULL; +#ifdef AVAILABLE_MAC_OS_X_VERSION_10_10_AND_LATER + if(&LSCopyDefaultApplicationURLForContentType == NULL) + return 0; +#else if(&LSCopyApplicationForMIMEType == NULL) return 0; +#endif if((str_ref = CFStringCreateWithCString(NULL, mime_type, kCFStringEncodingASCII)) == NULL) return 0; +#ifdef AVAILABLE_MAC_OS_X_VERSION_10_10_AND_LATER + if(LSCopyDefaultApplicationURLForContentType(str_ref, kLSRolesAll, &url_ref) +#else if(LSCopyApplicationForMIMEType(str_ref, kLSRolesAll, &url_ref) +#endif != kLSApplicationNotFoundErr){ if((ret_str_ref = CFURLGetString(url_ref)) == NULL) return 0; @@ -454,8 +463,13 @@ osx_build_mime_ext_cmd(mime_ext, cmd, cmdlen, sp_hndlp) ? mime_ext+1 : mime_ext, kCFStringEncodingASCII)) == NULL) return 0; +#ifdef AVAILABLE_MAC_OS_X_VERSION_10_10_AND_LATER + if(LSCopyDefaultApplicationURLForContentType(str_ref, + kLSRolesAll, &url_ref) +#else if(LSGetApplicationForInfo(kLSUnknownType, kLSUnknownCreator, str_ref, kLSRolesAll, NULL, &url_ref) +#endif != kLSApplicationNotFoundErr){ if((ret_str_ref = CFURLGetString(url_ref)) == NULL) return 0; -- cgit v1.2.3-70-g09d2