gmyth-stream/libgnomevfs2/modules/Makefile.am
author morphbr
Tue May 29 21:24:48 2007 +0100 (2007-05-29)
branchtrunk
changeset 718 3fbcd3d9b2d1
permissions -rw-r--r--
[svn r724] * GMyth-Streamer version 0.3 released
- Improved Log architecture;
- Creation of a history for the transcoder's actions
- Creation of an id for each transcoder instanciated
- Also wrapps default actions for python's default logger

- Created new functions to make use of this new Log architecture;
- serve_new_id
- serve_get_log
- serve_get_all_log

- _Lot_ of small bug fixes;

- Inserted header for all files;

- Splited files with too many lines (more than 1 class per file)
in more files;
     1 INCLUDES = \
     2 	-I$(top_srcdir) \
     3 	-I$(top_builddir) \
     4 	$(GNOME_VFS_CFLAGS) \
     5 	$(LIBMYTHSTREAM_CFLAGS) \
     6 	-D_FILE_OFFSET_BITS=64 \
     7 	-D_BSD_SOURCE \
     8 	-D_LARGEFILE64_SOURCE \
     9 	-D_POSIX_PTHREAD_SEMANTICS \
    10 	-D_REENTRANT \
    11 	-DG_DISABLE_DEPRECATED \
    12 	-DG_LOG_DOMAIN=\"gnome-vfs-modules\"
    13 
    14 EXTRA_DIST = \
    15 	gmythstream-module.conf 
    16 
    17 modulesconfdir = $(sysconfdir)/gnome-vfs-2.0/modules
    18 modulesconf_DATA = \
    19 	gmythstream-module.conf
    20 			
    21 module_flags = -export_dynamic -avoid-version -module -no-undefined
    22 modulesdir = $(libdir)/gnome-vfs-2.0/modules
    23 modules_LTLIBRARIES = libgmythstream.la 
    24 
    25 libgmythstream_la_SOURCES = gmythstream-method.c
    26 libgmythstream_la_LDFLAGS = $(module_flags)
    27 libgmythstream_la_LIBADD = \
    28 	$(GNOME_VFS_LIBS) \
    29 	$(LIBMYTHSTREAM_LIBS)