Changeset 1410
- Timestamp:
- 10/13/06 18:59:57 (2 years ago)
- Location:
- plugins/opie-sync
- Files:
-
- 2 modified
-
configure.ac (modified) (1 diff)
-
src/opie_format.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
plugins/opie-sync/configure.ac
r1407 r1410 47 47 AC_SUBST(OPENSYNC_HEADERDIR) ## Here are the headers that a user interface may need (if any) 48 48 49 #### check for glib2-devel >= 2.10 #### 50 pkg-config --atleast-version=2.10 glib-2.0 && AC_DEFINE([NEW_GLIB_VER],1,[Define to 1 if glib2-devel >= 2.10]) 51 49 52 AC_OUTPUT([ 50 53 Makefile -
plugins/opie-sync/src/opie_format.c
r1306 r1410 26 26 #include "opie_xml.h" 27 27 #include "opie_format.h" 28 #include "config.h" 28 29 29 30 #include <opensync/opensync-xml.h> … … 1068 1069 /* Record the start date for use later */ 1069 1070 startdate = g_date_new(); 1071 #ifdef NEW_GLIB_VER 1070 1072 g_date_set_time_t(startdate, starttime); 1073 #else 1074 /* This is deprecated */ 1075 GTime g_starttime = (GTime)starttime; 1076 g_date_set_time(startdate, g_starttime); 1077 #endif /* NEW_GLIB_VER */ 1071 1078 } 1072 1079 else if(!strcasecmp(iprop->name, "end"))
