diff options
author | Todd Zullinger | 2009-05-10 22:53:58 -0400 |
---|---|---|
committer | Matt Colyer | 2009-05-11 08:07:59 -0700 |
commit | 9e59d5ad283d7ff8d22ec224b6a144edfa6adba5 (patch) | |
tree | 527ed79e70f1bbaa5b98b39cb56209d1d461f9bc | |
parent | f56e085ba3d74f595c7708047dd082ef31e828cd (diff) | |
download | libimobiledevice-9e59d5ad283d7ff8d22ec224b6a144edfa6adba5.tar.gz libimobiledevice-9e59d5ad283d7ff8d22ec224b6a144edfa6adba5.tar.bz2 |
Drop plist/ prefix from libplist includes
If this works, the libplist.pc file would need reworking. The problem
seems to be that pkg-config excludes /usr/include from libgpod_CFLAGS.
Signed-off-by: Matt Colyer <matt@colyer.name>
-rw-r--r-- | swig/iphone.i | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/swig/iphone.i b/swig/iphone.i index ae2e97f..bf66352 100644 --- a/swig/iphone.i +++ b/swig/iphone.i @@ -4,7 +4,7 @@ %{ /* Includes the header in the wrapper code */ #include <libiphone/libiphone.h> - #include <plist/plist.h> + #include <plist.h> #include "../src/utils.h" typedef struct { iphone_device_t dev; @@ -29,7 +29,7 @@ MobileSync* my_new_MobileSync(Lockdownd* lckd); %} /* Parse the header file to generate wrappers */ %include "stdint.i" -%include "plist/swig/plist.i" +%include "swig/plist.i" #define DBGMASK_ALL 0xFFFF #define DBGMASK_NONE 0x0000 |