diff options
author | Nikias Bassen | 2011-05-27 14:55:31 +0200 |
---|---|---|
committer | Nikias Bassen | 2011-05-27 14:55:31 +0200 |
commit | 024e755d9f3c33e742ce158542b1ded057a88f4f (patch) | |
tree | 7f80705e0c3dd35fd86fcd943dbf0d0c6b9b78ab /test | |
parent | 94cb55d34dd9cb9bda539999dc017af76ec64a4f (diff) | |
download | libplist-024e755d9f3c33e742ce158542b1ded057a88f4f.tar.gz libplist-024e755d9f3c33e742ce158542b1ded057a88f4f.tar.bz2 |
Make libplist glib free
Diffstat (limited to 'test')
-rw-r--r-- | test/CMakeLists.txt | 2 | ||||
-rw-r--r-- | test/plist_cmp.c | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index f933cc1..1b3d2f7 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -1,6 +1,6 @@ #build the test executable -INCLUDE_DIRECTORIES( ${GLIB2_INCLUDE_DIR} ) +INCLUDE_DIRECTORIES( ${CMAKE_SOURCE_DIR}/libcnary/include ) SET(plist_test_SRC plist_test.c) diff --git a/test/plist_cmp.c b/test/plist_cmp.c index af54c4c..a07452b 100644 --- a/test/plist_cmp.c +++ b/test/plist_cmp.c @@ -27,7 +27,7 @@ #include <string.h> #include <sys/stat.h> -#include <glib.h> +#include <node.h> #ifdef _MSC_VER #pragma warning(disable:4996) @@ -35,12 +35,12 @@ static plist_t plist_get_first_child(plist_t node) { - return (plist_t) g_node_first_child((GNode *) node); + return (plist_t) node_first_child((node_t*) node); } static plist_t plist_get_next_sibling(plist_t node) { - return (plist_t) g_node_next_sibling((GNode *) node); + return (plist_t) node_next_sibling((node_t*) node); } static char compare_plist(plist_t node_l, plist_t node_r) |