diff options
| -rw-r--r-- | src/Makefile.am | 12 | ||||
| -rw-r--r-- | src/libimobiledevice-1.0.pc.in | 2 | ||||
| -rw-r--r-- | tools/Makefile.am | 36 |
3 files changed, 25 insertions, 25 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 9933277..1ef47fc 100644 --- a/src/Makefile.am +++ b/src/Makefile.am | |||
| @@ -21,10 +21,10 @@ AM_LDFLAGS = \ | |||
| 21 | $(openssl_LIBS) \ | 21 | $(openssl_LIBS) \ |
| 22 | $(PTHREAD_LIBS) | 22 | $(PTHREAD_LIBS) |
| 23 | 23 | ||
| 24 | lib_LTLIBRARIES = libimobiledevice.la | 24 | lib_LTLIBRARIES = libimobiledevice-1.0.la |
| 25 | libimobiledevice_la_LIBADD = $(top_builddir)/common/libinternalcommon.la | 25 | libimobiledevice_1_0_la_LIBADD = $(top_builddir)/common/libinternalcommon.la |
| 26 | libimobiledevice_la_LDFLAGS = $(AM_LDFLAGS) -version-info $(LIBIMOBILEDEVICE_SO_VERSION) -no-undefined | 26 | libimobiledevice_1_0_la_LDFLAGS = $(AM_LDFLAGS) -version-info $(LIBIMOBILEDEVICE_SO_VERSION) -no-undefined |
| 27 | libimobiledevice_la_SOURCES = \ | 27 | libimobiledevice_1_0_la_SOURCES = \ |
| 28 | idevice.c idevice.h \ | 28 | idevice.c idevice.h \ |
| 29 | service.c service.h \ | 29 | service.c service.h \ |
| 30 | property_list_service.c property_list_service.h \ | 30 | property_list_service.c property_list_service.h \ |
| @@ -53,8 +53,8 @@ libimobiledevice_la_SOURCES = \ | |||
| 53 | syslog_relay.c syslog_relay.h | 53 | syslog_relay.c syslog_relay.h |
| 54 | 54 | ||
| 55 | if WIN32 | 55 | if WIN32 |
| 56 | libimobiledevice_la_LDFLAGS += -avoid-version -static-libgcc | 56 | libimobiledevice_1_0_la_LDFLAGS += -avoid-version -static-libgcc |
| 57 | libimobiledevice_la_LIBADD += -lole32 -lws2_32 -lgdi32 | 57 | libimobiledevice_1_0_la_LIBADD += -lole32 -lws2_32 -lgdi32 |
| 58 | endif | 58 | endif |
| 59 | 59 | ||
| 60 | pkgconfigdir = $(libdir)/pkgconfig | 60 | pkgconfigdir = $(libdir)/pkgconfig |
diff --git a/src/libimobiledevice-1.0.pc.in b/src/libimobiledevice-1.0.pc.in index 023ce54..c37654b 100644 --- a/src/libimobiledevice-1.0.pc.in +++ b/src/libimobiledevice-1.0.pc.in | |||
| @@ -6,7 +6,7 @@ includedir=@includedir@ | |||
| 6 | Name: @PACKAGE_NAME@ | 6 | Name: @PACKAGE_NAME@ |
| 7 | Description: A library to communicate with services running on Apple iOS devices. | 7 | Description: A library to communicate with services running on Apple iOS devices. |
| 8 | Version: @PACKAGE_VERSION@ | 8 | Version: @PACKAGE_VERSION@ |
| 9 | Libs: -L${libdir} -limobiledevice | 9 | Libs: -L${libdir} -limobiledevice-1.0 |
| 10 | Cflags: -I${includedir} | 10 | Cflags: -I${includedir} |
| 11 | Requires: libplist-2.0 >= @LIBPLIST_VERSION@ | 11 | Requires: libplist-2.0 >= @LIBPLIST_VERSION@ |
| 12 | Requires.private: libusbmuxd-2.0 >= @LIBUSBMUXD_VERSION@ @ssl_requires@ | 12 | Requires.private: libusbmuxd-2.0 >= @LIBUSBMUXD_VERSION@ @ssl_requires@ |
diff --git a/tools/Makefile.am b/tools/Makefile.am index 7e6487f..8ed8ad9 100644 --- a/tools/Makefile.am +++ b/tools/Makefile.am | |||
| @@ -41,89 +41,89 @@ bin_PROGRAMS = \ | |||
| 41 | ideviceinfo_SOURCES = ideviceinfo.c | 41 | ideviceinfo_SOURCES = ideviceinfo.c |
| 42 | ideviceinfo_CFLAGS = $(AM_CFLAGS) | 42 | ideviceinfo_CFLAGS = $(AM_CFLAGS) |
| 43 | ideviceinfo_LDFLAGS = $(top_builddir)/common/libinternalcommon.la $(AM_LDFLAGS) | 43 | ideviceinfo_LDFLAGS = $(top_builddir)/common/libinternalcommon.la $(AM_LDFLAGS) |
| 44 | ideviceinfo_LDADD = $(top_builddir)/src/libimobiledevice.la | 44 | ideviceinfo_LDADD = $(top_builddir)/src/libimobiledevice-1.0.la |
| 45 | 45 | ||
| 46 | idevicename_SOURCES = idevicename.c | 46 | idevicename_SOURCES = idevicename.c |
| 47 | idevicename_CFLAGS = $(AM_CFLAGS) | 47 | idevicename_CFLAGS = $(AM_CFLAGS) |
| 48 | idevicename_LDFLAGS = $(AM_LDFLAGS) | 48 | idevicename_LDFLAGS = $(AM_LDFLAGS) |
| 49 | idevicename_LDADD = $(top_builddir)/src/libimobiledevice.la | 49 | idevicename_LDADD = $(top_builddir)/src/libimobiledevice-1.0.la |
| 50 | 50 | ||
| 51 | idevicepair_SOURCES = idevicepair.c | 51 | idevicepair_SOURCES = idevicepair.c |
| 52 | idevicepair_CFLAGS = -I$(top_srcdir) $(AM_CFLAGS) | 52 | idevicepair_CFLAGS = -I$(top_srcdir) $(AM_CFLAGS) |
| 53 | idevicepair_LDFLAGS = $(top_builddir)/common/libinternalcommon.la $(AM_LDFLAGS) $(libusbmuxd_LIBS) | 53 | idevicepair_LDFLAGS = $(top_builddir)/common/libinternalcommon.la $(AM_LDFLAGS) $(libusbmuxd_LIBS) |
| 54 | idevicepair_LDADD = $(top_builddir)/src/libimobiledevice.la | 54 | idevicepair_LDADD = $(top_builddir)/src/libimobiledevice-1.0.la |
| 55 | 55 | ||
| 56 | idevicesyslog_SOURCES = idevicesyslog.c | 56 | idevicesyslog_SOURCES = idevicesyslog.c |
| 57 | idevicesyslog_CFLAGS = $(AM_CFLAGS) | 57 | idevicesyslog_CFLAGS = $(AM_CFLAGS) |
| 58 | idevicesyslog_LDFLAGS = $(AM_LDFLAGS) | 58 | idevicesyslog_LDFLAGS = $(AM_LDFLAGS) |
| 59 | idevicesyslog_LDADD = $(top_builddir)/src/libimobiledevice.la | 59 | idevicesyslog_LDADD = $(top_builddir)/src/libimobiledevice-1.0.la |
| 60 | 60 | ||
| 61 | idevice_id_SOURCES = idevice_id.c | 61 | idevice_id_SOURCES = idevice_id.c |
| 62 | idevice_id_CFLAGS = $(AM_CFLAGS) | 62 | idevice_id_CFLAGS = $(AM_CFLAGS) |
| 63 | idevice_id_LDFLAGS = $(AM_LDFLAGS) | 63 | idevice_id_LDFLAGS = $(AM_LDFLAGS) |
| 64 | idevice_id_LDADD = $(top_builddir)/src/libimobiledevice.la | 64 | idevice_id_LDADD = $(top_builddir)/src/libimobiledevice-1.0.la |
| 65 | 65 | ||
| 66 | idevicebackup_SOURCES = idevicebackup.c | 66 | idevicebackup_SOURCES = idevicebackup.c |
| 67 | idevicebackup_CFLAGS = $(AM_CFLAGS) | 67 | idevicebackup_CFLAGS = $(AM_CFLAGS) |
| 68 | idevicebackup_LDFLAGS = $(top_builddir)/common/libinternalcommon.la $(AM_LDFLAGS) | 68 | idevicebackup_LDFLAGS = $(top_builddir)/common/libinternalcommon.la $(AM_LDFLAGS) |
| 69 | idevicebackup_LDADD = $(top_builddir)/src/libimobiledevice.la | 69 | idevicebackup_LDADD = $(top_builddir)/src/libimobiledevice-1.0.la |
| 70 | 70 | ||
| 71 | idevicebackup2_SOURCES = idevicebackup2.c | 71 | idevicebackup2_SOURCES = idevicebackup2.c |
| 72 | idevicebackup2_CFLAGS = $(AM_CFLAGS) | 72 | idevicebackup2_CFLAGS = $(AM_CFLAGS) |
| 73 | idevicebackup2_LDFLAGS = $(top_builddir)/common/libinternalcommon.la $(AM_LDFLAGS) | 73 | idevicebackup2_LDFLAGS = $(top_builddir)/common/libinternalcommon.la $(AM_LDFLAGS) |
| 74 | idevicebackup2_LDADD = $(top_builddir)/src/libimobiledevice.la | 74 | idevicebackup2_LDADD = $(top_builddir)/src/libimobiledevice-1.0.la |
| 75 | 75 | ||
| 76 | ideviceimagemounter_SOURCES = ideviceimagemounter.c | 76 | ideviceimagemounter_SOURCES = ideviceimagemounter.c |
| 77 | ideviceimagemounter_CFLAGS = $(AM_CFLAGS) | 77 | ideviceimagemounter_CFLAGS = $(AM_CFLAGS) |
| 78 | ideviceimagemounter_LDFLAGS = $(top_builddir)/common/libinternalcommon.la $(AM_LDFLAGS) | 78 | ideviceimagemounter_LDFLAGS = $(top_builddir)/common/libinternalcommon.la $(AM_LDFLAGS) |
| 79 | ideviceimagemounter_LDADD = $(top_builddir)/src/libimobiledevice.la | 79 | ideviceimagemounter_LDADD = $(top_builddir)/src/libimobiledevice-1.0.la |
| 80 | 80 | ||
| 81 | idevicescreenshot_SOURCES = idevicescreenshot.c | 81 | idevicescreenshot_SOURCES = idevicescreenshot.c |
| 82 | idevicescreenshot_CFLAGS = $(AM_CFLAGS) | 82 | idevicescreenshot_CFLAGS = $(AM_CFLAGS) |
| 83 | idevicescreenshot_LDFLAGS = $(AM_LDFLAGS) | 83 | idevicescreenshot_LDFLAGS = $(AM_LDFLAGS) |
| 84 | idevicescreenshot_LDADD = $(top_builddir)/src/libimobiledevice.la | 84 | idevicescreenshot_LDADD = $(top_builddir)/src/libimobiledevice-1.0.la |
| 85 | 85 | ||
| 86 | ideviceenterrecovery_SOURCES = ideviceenterrecovery.c | 86 | ideviceenterrecovery_SOURCES = ideviceenterrecovery.c |
| 87 | ideviceenterrecovery_CFLAGS = $(AM_CFLAGS) | 87 | ideviceenterrecovery_CFLAGS = $(AM_CFLAGS) |
| 88 | ideviceenterrecovery_LDFLAGS = $(AM_LDFLAGS) | 88 | ideviceenterrecovery_LDFLAGS = $(AM_LDFLAGS) |
| 89 | ideviceenterrecovery_LDADD = $(top_builddir)/src/libimobiledevice.la | 89 | ideviceenterrecovery_LDADD = $(top_builddir)/src/libimobiledevice-1.0.la |
| 90 | 90 | ||
| 91 | idevicedate_SOURCES = idevicedate.c | 91 | idevicedate_SOURCES = idevicedate.c |
| 92 | idevicedate_CFLAGS = $(AM_CFLAGS) | 92 | idevicedate_CFLAGS = $(AM_CFLAGS) |
| 93 | idevicedate_LDFLAGS = $(AM_LDFLAGS) | 93 | idevicedate_LDFLAGS = $(AM_LDFLAGS) |
| 94 | idevicedate_LDADD = $(top_builddir)/src/libimobiledevice.la | 94 | idevicedate_LDADD = $(top_builddir)/src/libimobiledevice-1.0.la |
| 95 | 95 | ||
| 96 | ideviceprovision_SOURCES = ideviceprovision.c | 96 | ideviceprovision_SOURCES = ideviceprovision.c |
| 97 | ideviceprovision_CFLAGS = $(AM_CFLAGS) | 97 | ideviceprovision_CFLAGS = $(AM_CFLAGS) |
| 98 | ideviceprovision_LDFLAGS = $(top_builddir)/common/libinternalcommon.la $(AM_LDFLAGS) | 98 | ideviceprovision_LDFLAGS = $(top_builddir)/common/libinternalcommon.la $(AM_LDFLAGS) |
| 99 | ideviceprovision_LDADD = $(top_builddir)/src/libimobiledevice.la | 99 | ideviceprovision_LDADD = $(top_builddir)/src/libimobiledevice-1.0.la |
| 100 | 100 | ||
| 101 | idevicedebugserverproxy_SOURCES = idevicedebugserverproxy.c | 101 | idevicedebugserverproxy_SOURCES = idevicedebugserverproxy.c |
| 102 | idevicedebugserverproxy_CFLAGS = -I$(top_srcdir) $(AM_CFLAGS) | 102 | idevicedebugserverproxy_CFLAGS = -I$(top_srcdir) $(AM_CFLAGS) |
| 103 | idevicedebugserverproxy_LDFLAGS = $(top_builddir)/common/libinternalcommon.la $(AM_LDFLAGS) | 103 | idevicedebugserverproxy_LDFLAGS = $(top_builddir)/common/libinternalcommon.la $(AM_LDFLAGS) |
| 104 | idevicedebugserverproxy_LDADD = $(top_builddir)/src/libimobiledevice.la | 104 | idevicedebugserverproxy_LDADD = $(top_builddir)/src/libimobiledevice-1.0.la |
| 105 | 105 | ||
| 106 | idevicediagnostics_SOURCES = idevicediagnostics.c | 106 | idevicediagnostics_SOURCES = idevicediagnostics.c |
| 107 | idevicediagnostics_CFLAGS = $(AM_CFLAGS) | 107 | idevicediagnostics_CFLAGS = $(AM_CFLAGS) |
| 108 | idevicediagnostics_LDFLAGS = $(AM_LDFLAGS) | 108 | idevicediagnostics_LDFLAGS = $(AM_LDFLAGS) |
| 109 | idevicediagnostics_LDADD = $(top_builddir)/src/libimobiledevice.la | 109 | idevicediagnostics_LDADD = $(top_builddir)/src/libimobiledevice-1.0.la |
| 110 | 110 | ||
| 111 | idevicedebug_SOURCES = idevicedebug.c | 111 | idevicedebug_SOURCES = idevicedebug.c |
| 112 | idevicedebug_CFLAGS = $(AM_CFLAGS) | 112 | idevicedebug_CFLAGS = $(AM_CFLAGS) |
| 113 | idevicedebug_LDFLAGS = $(top_builddir)/common/libinternalcommon.la $(AM_LDFLAGS) | 113 | idevicedebug_LDFLAGS = $(top_builddir)/common/libinternalcommon.la $(AM_LDFLAGS) |
| 114 | idevicedebug_LDADD = $(top_builddir)/src/libimobiledevice.la | 114 | idevicedebug_LDADD = $(top_builddir)/src/libimobiledevice-1.0.la |
| 115 | 115 | ||
| 116 | idevicenotificationproxy_SOURCES = idevicenotificationproxy.c | 116 | idevicenotificationproxy_SOURCES = idevicenotificationproxy.c |
| 117 | idevicenotificationproxy_CFLAGS = $(AM_CFLAGS) | 117 | idevicenotificationproxy_CFLAGS = $(AM_CFLAGS) |
| 118 | idevicenotificationproxy_LDFLAGS = $(AM_LDFLAGS) | 118 | idevicenotificationproxy_LDFLAGS = $(AM_LDFLAGS) |
| 119 | idevicenotificationproxy_LDADD = $(top_builddir)/src/libimobiledevice.la | 119 | idevicenotificationproxy_LDADD = $(top_builddir)/src/libimobiledevice-1.0.la |
| 120 | 120 | ||
| 121 | idevicecrashreport_SOURCES = idevicecrashreport.c | 121 | idevicecrashreport_SOURCES = idevicecrashreport.c |
| 122 | idevicecrashreport_CFLAGS = -I$(top_srcdir) $(AM_CFLAGS) | 122 | idevicecrashreport_CFLAGS = -I$(top_srcdir) $(AM_CFLAGS) |
| 123 | idevicecrashreport_LDFLAGS = $(top_builddir)/common/libinternalcommon.la $(AM_LDFLAGS) | 123 | idevicecrashreport_LDFLAGS = $(top_builddir)/common/libinternalcommon.la $(AM_LDFLAGS) |
| 124 | idevicecrashreport_LDADD = $(top_builddir)/src/libimobiledevice.la | 124 | idevicecrashreport_LDADD = $(top_builddir)/src/libimobiledevice-1.0.la |
| 125 | 125 | ||
| 126 | idevicesetlocation_SOURCES = idevicesetlocation.c | 126 | idevicesetlocation_SOURCES = idevicesetlocation.c |
| 127 | idevicesetlocation_CFLAGS = $(AM_CFLAGS) | 127 | idevicesetlocation_CFLAGS = $(AM_CFLAGS) |
| 128 | idevicesetlocation_LDFLAGS = $(top_builddir)/common/libinternalcommon.la $(AM_LDFLAGS) | 128 | idevicesetlocation_LDFLAGS = $(top_builddir)/common/libinternalcommon.la $(AM_LDFLAGS) |
| 129 | idevicesetlocation_LDADD = $(top_builddir)/src/libimobiledevice.la | 129 | idevicesetlocation_LDADD = $(top_builddir)/src/libimobiledevice-1.0.la |
