fix build error
authorYong Yeon Kim <yy9875.kim@samsung.com>
Sat, 18 Feb 2012 08:23:56 +0000 (17:23 +0900)
committerYong Yeon Kim <yy9875.kim@samsung.com>
Sat, 18 Feb 2012 08:23:56 +0000 (17:23 +0900)
Makefile.am
configure.ac
debian/changelog
lib/include/.media-util-register.h.swp [new file with mode: 0644]
lib/include/media-util-register.h
lib/media-util-register.c

index df4cd48..b47cbd8 100755 (executable)
@@ -43,8 +43,9 @@ libmedia_utils_la_LIBADD  =  $(MEDIA_INFO_LIBS) \
 ### file-manager-server ###
 bin_PROGRAMS = media-server
 
-media_server_SOURCES = common/media-server-common.c \
-                       common/media-server-thumb.c \
+media_server_SOURCES = common/media-server-utils.c \
+                       common/media-server-db-svc.c \
+                       common/media-server-external-storage.c \
                        common/media-server-inotify-internal.c \
                        common/media-server-inotify.c \
                        common/media-server-scan-internal.c \
index 1b9ba34..5a57b2a 100755 (executable)
@@ -76,10 +76,6 @@ PKG_CHECK_MODULES(PHONESTATUS, vconf)
 AC_SUBST(PHONESTATUS_CFLAGS)
 AC_SUBST(PHONESTATUS_LIBS)
 
-PKG_CHECK_MODULES(UTIL, heynoti)
-AC_SUBST(UTIL_CFLAGS)
-AC_SUBST(UTIL_LIBS)
-
 PKG_CHECK_MODULES(MM_FILEINFO, mm-fileinfo)
 AC_SUBST(MM_FILEINFO_CFLAGS)
 AC_SUBST(MM_FILEINFO_LIBS)
index 2a63fcb..39b4114 100755 (executable)
@@ -1,3 +1,11 @@
+media-server (0.1.53) unstable; urgency=low
+
+  * fix build error
+  * Git : pkgs/m/media-server
+  * Tag : media-server_0.1.53
+
+ -- Yong Yeon Kim <yy9875.kim@samsung.com>  Sat, 18 Feb 2012 17:22:51 +0900
+
 media-server (0.1.52) unstable; urgency=low
 
   * for beta release
diff --git a/lib/include/.media-util-register.h.swp b/lib/include/.media-util-register.h.swp
new file mode 100644 (file)
index 0000000..c6c9aaf
Binary files /dev/null and b/lib/include/.media-util-register.h.swp differ
index e61d19d..a5684b6 100755 (executable)
@@ -78,7 +78,7 @@ int main()
  */
 int media_file_register(const char *file_full_path);
 
- typedef GArray* media_list;
+typedef GArray* media_list;
 
 int media_list_new(media_list *list);
 
index 4793d69..d65b47f 100755 (executable)
@@ -35,6 +35,7 @@
 #include <fcntl.h>
 #include <sys/socket.h>
 #include <string.h>
+#include <stdbool.h>
 
 #include <media-svc.h>
 #include <audio-svc.h>