diff options
| author | 2010-04-01 02:55:54 +0200 | |
|---|---|---|
| committer | 2010-04-01 14:38:46 +0200 | |
| commit | 76de20d18914577936e6cfce1747c04b4facb78b (patch) | |
| tree | 66b3af7aced3e8c608159df3fbf0281f03fecba5 /src | |
| parent | 7b976601048a8b613b0a7aaced5911868b7ba2bd (diff) | |
| download | ideviceinstaller-76de20d18914577936e6cfce1747c04b4facb78b.tar.gz ideviceinstaller-76de20d18914577936e6cfce1747c04b4facb78b.tar.bz2 | |
Allow compiling with libimobiledevice < 1.0.0 again
Diffstat (limited to 'src')
| -rw-r--r-- | src/ideviceinstaller.c | 12 | 
1 files changed, 11 insertions, 1 deletions
| diff --git a/src/ideviceinstaller.c b/src/ideviceinstaller.c index ab62809..d13fdb9 100644 --- a/src/ideviceinstaller.c +++ b/src/ideviceinstaller.c @@ -20,6 +20,9 @@   * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301    * USA   */ +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif  #include <stdlib.h>  #define _GNU_SOURCE 1  #define __USE_GNU 1 @@ -62,8 +65,11 @@ int op_completed = 0;  int err_occured = 0;  int notified = 0; - +#ifdef HAVE_LIBIMOBILEDEVICE_1_0  static void notifier(const char *notification, void *unused) +#else +static void notifier(const char *notification) +#endif  {  	/* printf("notification received: %s\n", notification);*/  	notified = 1; @@ -348,7 +354,11 @@ int main(int argc, char **argv)  		goto leave_cleanup;  	} +#ifdef HAVE_LIBIMOBILEDEVICE_1_0  	np_set_notify_callback(np, notifier, NULL); +#else +	np_set_notify_callback(np, notifier); +#endif  	const char *noties[3] = { NP_APP_INSTALLED, NP_APP_UNINSTALLED, NULL }; | 
