0001-Fix-compilation-in-the-VLC-context.patch 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. From 20b7b86cb1fa8e221ab001de520397eeec4734d1 Mon Sep 17 00:00:00 2001
  2. From: =?UTF-8?q?Felix=20Paul=20K=C3=BChne?= <fkuehne@videolan.org>
  3. Date: Thu, 23 Jan 2014 16:18:50 +0100
  4. Subject: [PATCH 1/3] Fix compilation in the VLC context
  5. ---
  6. client/iOS/BWCrashReportTextFormatter.h | 2 +-
  7. client/iOS/BWCrashReportTextFormatter.m | 2 +-
  8. client/iOS/BWQuincyManager.h | 2 +-
  9. client/iOS/BWQuincyManager.m | 2 +-
  10. 4 files changed, 4 insertions(+), 4 deletions(-)
  11. diff --git a/client/iOS/BWCrashReportTextFormatter.h b/client/iOS/BWCrashReportTextFormatter.h
  12. index 207d9cd..86d63f0 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. // Dictionary keys for array elements returned by arrayOfAppUUIDsForCrashReport:
  20. #ifndef kBWBinaryImageKeyUUID
  21. diff --git a/client/iOS/BWCrashReportTextFormatter.m b/client/iOS/BWCrashReportTextFormatter.m
  22. index 3607510..76204ce 100644
  23. --- a/client/iOS/BWCrashReportTextFormatter.m
  24. +++ b/client/iOS/BWCrashReportTextFormatter.m
  25. @@ -31,7 +31,7 @@
  26. * OTHER DEALINGS IN THE SOFTWARE.
  27. */
  28. -#import <CrashReporter/CrashReporter.h>
  29. +#import "CrashReporter.h"
  30. #import "BWCrashReportTextFormatter.h"
  31. diff --git a/client/iOS/BWQuincyManager.h b/client/iOS/BWQuincyManager.h
  32. index dce403d..45692e9 100644
  33. --- a/client/iOS/BWQuincyManager.h
  34. +++ b/client/iOS/BWQuincyManager.h
  35. @@ -30,7 +30,7 @@
  36. #import <Foundation/Foundation.h>
  37. -#import <CrashReporter/CrashReporter.h>
  38. +#import "CrashReporter.h"
  39. #import "BWQuincyManagerDelegate.h"
  40. diff --git a/client/iOS/BWQuincyManager.m b/client/iOS/BWQuincyManager.m
  41. index db08b2f..8fa3200 100644
  42. --- a/client/iOS/BWQuincyManager.m
  43. +++ b/client/iOS/BWQuincyManager.m
  44. @@ -28,7 +28,7 @@
  45. * OTHER DEALINGS IN THE SOFTWARE.
  46. */
  47. -#import <CrashReporter/CrashReporter.h>
  48. +#import "CrashReporter.h"
  49. #import <SystemConfiguration/SystemConfiguration.h>
  50. #import <UIKit/UIKit.h>
  51. --
  52. 1.8.3.4 (Apple Git-47)