0002-Fix-header-lookup-within-ios.git.patch 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. From 8e254a6f0677d868b27f14241c29cad9b88e89cc Mon Sep 17 00:00:00 2001
  2. From: =?UTF-8?q?Felix=20Paul=20K=C3=BChne?= <fkuehne@videolan.org>
  3. Date: Sun, 15 Dec 2013 17:27:12 +0100
  4. Subject: [PATCH 2/3] Fix header lookup within ios.git
  5. ---
  6. client/iOS/BWCrashReportTextFormatter.h | 2 +-
  7. client/iOS/BWCrashReportTextFormatter.m | 2 +-
  8. client/iOS/BWQuincyManager.m | 2 +-
  9. client/iOS/QuincyLib/QuincyLib.xcodeproj/project.pbxproj | 8 ++++++++
  10. 4 files changed, 11 insertions(+), 3 deletions(-)
  11. diff --git a/client/iOS/BWCrashReportTextFormatter.h b/client/iOS/BWCrashReportTextFormatter.h
  12. index 4088994..4319a85 100644
  13. --- a/client/iOS/BWCrashReportTextFormatter.h
  14. +++ b/client/iOS/BWCrashReportTextFormatter.h
  15. @@ -34,7 +34,7 @@
  16. #import <Foundation/Foundation.h>
  17. -#import <CrashReporter/PLCrashReport.h>
  18. +#import "PLCrashReport.h"
  19. @interface BWCrashReportTextFormatter : NSObject {
  20. diff --git a/client/iOS/BWCrashReportTextFormatter.m b/client/iOS/BWCrashReportTextFormatter.m
  21. index cb89a63..79e4569 100644
  22. --- a/client/iOS/BWCrashReportTextFormatter.m
  23. +++ b/client/iOS/BWCrashReportTextFormatter.m
  24. @@ -31,7 +31,7 @@
  25. * OTHER DEALINGS IN THE SOFTWARE.
  26. */
  27. -#import <CrashReporter/CrashReporter.h>
  28. +#import "CrashReporter.h"
  29. #import "BWCrashReportTextFormatter.h"
  30. diff --git a/client/iOS/BWQuincyManager.m b/client/iOS/BWQuincyManager.m
  31. index 04b56ff..e025f35 100644
  32. --- a/client/iOS/BWQuincyManager.m
  33. +++ b/client/iOS/BWQuincyManager.m
  34. @@ -27,7 +27,7 @@
  35. * OTHER DEALINGS IN THE SOFTWARE.
  36. */
  37. -#import <CrashReporter/CrashReporter.h>
  38. +#import "CrashReporter.h"
  39. #import <SystemConfiguration/SystemConfiguration.h>
  40. #import <UIKit/UIKit.h>
  41. #import "BWQuincyManager.h"
  42. diff --git a/client/iOS/QuincyLib/QuincyLib.xcodeproj/project.pbxproj b/client/iOS/QuincyLib/QuincyLib.xcodeproj/project.pbxproj
  43. index 11fb230..df75985 100644
  44. --- a/client/iOS/QuincyLib/QuincyLib.xcodeproj/project.pbxproj
  45. +++ b/client/iOS/QuincyLib/QuincyLib.xcodeproj/project.pbxproj
  46. @@ -197,6 +197,10 @@
  47. );
  48. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  49. GCC_PREFIX_HEADER = "";
  50. + HEADER_SEARCH_PATHS = (
  51. + "$(inherited)",
  52. + "\"$(SRCROOT)/../../../../PLCrashReporter/Source\"",
  53. + );
  54. OTHER_LDFLAGS = "-ObjC";
  55. PRODUCT_NAME = "$(TARGET_NAME)";
  56. SKIP_INSTALL = YES;
  57. @@ -214,6 +218,10 @@
  58. );
  59. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  60. GCC_PREFIX_HEADER = "";
  61. + HEADER_SEARCH_PATHS = (
  62. + "$(inherited)",
  63. + "\"$(SRCROOT)/../../../../PLCrashReporter/Source\"",
  64. + );
  65. OTHER_LDFLAGS = "-ObjC";
  66. PRODUCT_NAME = "$(TARGET_NAME)";
  67. SKIP_INSTALL = YES;
  68. --
  69. 1.8.3.4 (Apple Git-47)