Patrick Williams | b48b7b4 | 2016-08-17 15:04:38 -0500 | [diff] [blame] | 1 | Fix link error with gcc 5 toolchains |
| 2 | |
| 3 | afc.c:258: error: undefined reference to 'debug_buffer' |
| 4 | collect2: error: ld returned 1 exit status |
| 5 | |
| 6 | debug.h header was declaring things inline without providing a definition. |
| 7 | Files that included this header then failed to link against the corresponding |
| 8 | external symbol in debug.c, because the linker took the 'inline' keyword |
| 9 | seriously rather than ignoring it. |
| 10 | |
| 11 | --- libimobiledevice-1.1.4/src/debug.h.orig 2015-10-03 16:24:08.758740386 -0700 |
| 12 | +++ libimobiledevice-1.1.4/src/debug.h 2015-10-03 16:24:22.706740355 -0700 |
| 13 | @@ -44,14 +44,14 @@ |
| 14 | #define debug_plist(a) |
| 15 | #endif |
| 16 | |
| 17 | -LIBIMOBILEDEVICE_INTERNAL inline void debug_info_real(const char *func, |
| 18 | +LIBIMOBILEDEVICE_INTERNAL void debug_info_real(const char *func, |
| 19 | const char *file, |
| 20 | int line, |
| 21 | const char *format, ...); |
| 22 | |
| 23 | -LIBIMOBILEDEVICE_INTERNAL inline void debug_buffer(const char *data, const int length); |
| 24 | -LIBIMOBILEDEVICE_INTERNAL inline void debug_buffer_to_file(const char *file, const char *data, const int length); |
| 25 | -LIBIMOBILEDEVICE_INTERNAL inline void debug_plist_real(const char *func, |
| 26 | +LIBIMOBILEDEVICE_INTERNAL void debug_buffer(const char *data, const int length); |
| 27 | +LIBIMOBILEDEVICE_INTERNAL void debug_buffer_to_file(const char *file, const char *data, const int length); |
| 28 | +LIBIMOBILEDEVICE_INTERNAL void debug_plist_real(const char *func, |
| 29 | const char *file, |
| 30 | int line, |
| 31 | plist_t plist); |