Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

android support #7

Open
wants to merge 35 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
07b8173
android support
olunx Apr 9, 2014
beab887
android support
olunx Apr 9, 2014
c44138a
Merge remote-tracking branch 'origin/master'
olunx Apr 25, 2014
994c6fb
android support
olunx Apr 9, 2014
01d74df
Merge remote-tracking branch 'origin/master'
Jan 25, 2015
f5ece76
Add Xcode project.
Jan 25, 2015
9dbcec5
更改为静态库
Jan 28, 2015
9dd008e
Update
Jan 28, 2015
91c67b8
android support
olunx Apr 9, 2014
b05d4cc
Add Xcode project.
Jan 25, 2015
f54ad25
更改为静态库
Jan 28, 2015
8a1355f
Update
Jan 28, 2015
06c7a4a
Merge commit '9dd008e5faf2c6b448d1589e21b923001b6dede1'
Feb 1, 2015
5531281
Update Xcode project.
Feb 12, 2015
f64323b
Update to XCode 8
Dec 25, 2016
5e30c0b
android support
olunx Apr 9, 2014
7d9f675
Add Xcode project.
Jan 25, 2015
5d0cb05
更改为静态库
Jan 28, 2015
e77f0f1
Update
Jan 28, 2015
e6109b0
更改为静态库
Jan 28, 2015
10e8a6c
Update
Jan 28, 2015
52e2e21
Update Xcode project.
Feb 12, 2015
6b90b61
Update to XCode 8
Dec 25, 2016
114a7bf
Merge branch 'master' of https://github.com/olunx/libusbmuxd
Dec 25, 2016
ee9ad31
Update libusbmuxd
Dec 25, 2016
3394271
android support
olunx Apr 9, 2014
3664ef5
Add Xcode project.
Jan 25, 2015
391da78
更改为静态库
Jan 28, 2015
f43fa48
Update
Jan 28, 2015
f10c9cc
Update Xcode project.
Feb 12, 2015
cc21a66
Update to XCode 8
Dec 25, 2016
39df04f
更改为静态库
Jan 28, 2015
9f39004
Update
Jan 28, 2015
f5d7f31
Update libusbmuxd
Dec 25, 2016
97257a2
Merge branch 'master' of https://github.com/lunzii/libusbmuxd
Jul 18, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,12 @@
*.lo
*.la
autom4te.cache/*
*.in
*/.deps/*
m4/*
swig/*
*.swp
*.patch
aclocal.m4
config.h
config.log
config.sub
config.guess
Expand All @@ -37,3 +35,4 @@ docs/html
libusbmuxd.pc
tools/.libs/*
tools/iproxy
.DS_Store
64 changes: 64 additions & 0 deletions Xcode/config.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
/* config.h. Manual generated for Xcode. */

/* Define to 1 if you have the <dlfcn.h> header file. */
#define HAVE_DLFCN_H 1

/* Define if compiled with -fvisibility=hidden */
#define HAVE_FVISIBILITY 1

/* Define if you have inotify support (linux only) */
/* #undef HAVE_INOTIFY */

/* Define to 1 if you have the <inttypes.h> header file. */
#define HAVE_INTTYPES_H 1

/* Define to 1 if your system has a GNU libc compatible `malloc' function, and
to 0 otherwise. */
#define HAVE_MALLOC 1

/* Define to 1 if you have the <memory.h> header file. */
#define HAVE_MEMORY_H 1

/* Define to 1 if your system has a GNU libc compatible `realloc' function,
and to 0 otherwise. */
#define HAVE_REALLOC 1

/* Define to 1 if you have the <stdint.h> header file. */
#define HAVE_STDINT_H 1

/* Define to 1 if you have the <stdlib.h> header file. */
#define HAVE_STDLIB_H 1

/* Define to 1 if you have the `strcasecmp' function. */
#define HAVE_STRCASECMP 1

/* Define to 1 if you have the `strdup' function. */
#define HAVE_STRDUP 1

/* Define to 1 if you have the `strerror' function. */
#define HAVE_STRERROR 1

/* Define to 1 if you have the <strings.h> header file. */
#define HAVE_STRINGS_H 1

/* Define to 1 if you have the <string.h> header file. */
#define HAVE_STRING_H 1

/* Define to 1 if you have the `strndup' function. */
#define HAVE_STRNDUP 1

/* Define to 1 if you have the <sys/inotify.h> header file. */
/* #undef HAVE_SYS_INOTIFY_H */

/* Define to 1 if you have the <sys/stat.h> header file. */
#define HAVE_SYS_STAT_H 1

/* Define to 1 if you have the <sys/types.h> header file. */
#define HAVE_SYS_TYPES_H 1

/* Define to 1 if you have the <unistd.h> header file. */
#define HAVE_UNISTD_H 1

/* Define to 1 if you have the ANSI C header files. */
#define STDC_HEADERS 1

Loading