Changeset 121
- Timestamp:
- 09/09/06 23:12:15 (5 years ago)
- Location:
- fm_server/trunk
- Files:
-
- 5 added
- 6 modified
-
configure (modified) (2 diffs)
-
configure.in (modified) (1 diff)
-
libtool (modified) (2 diffs)
-
src/Makefile.am (modified) (2 diffs)
-
src/Makefile.in (modified) (3 diffs)
-
src/fm_level_meter.c (modified) (1 diff)
-
src/fm_song_db (added)
-
src/fm_song_db/Makefile.am (added)
-
src/fm_song_db/Makefile.in (added)
-
src/fm_song_db/fm_song_db.c (added)
-
src/fm_song_db/fm_song_db.h (added)
Legend:
- Unmodified
- Added
- Removed
-
fm_server/trunk/configure
r117 r121 28359 28359 28360 28360 28361 ac_config_files="$ac_config_files Makefile intl/Makefile po/Makefile.in src/Makefile src/fm_input_gst/Makefile test/Makefile"28361 ac_config_files="$ac_config_files Makefile intl/Makefile po/Makefile.in src/Makefile src/fm_input_gst/Makefile src/fm_song_db/Makefile test/Makefile" 28362 28362 cat >confcache <<\_ACEOF 28363 28363 # This file is a shell script that caches the results of configure … … 28956 28956 "src/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/Makefile" ;; 28957 28957 "src/fm_input_gst/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/fm_input_gst/Makefile" ;; 28958 "src/fm_song_db/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/fm_song_db/Makefile" ;; 28958 28959 "test/Makefile" ) CONFIG_FILES="$CONFIG_FILES test/Makefile" ;; 28959 28960 "depfiles" ) CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; -
fm_server/trunk/configure.in
r117 r121 184 184 src/Makefile 185 185 src/fm_input_gst/Makefile 186 src/fm_song_db/Makefile 186 187 test/Makefile 187 188 ]) -
fm_server/trunk/libtool
r117 r121 86 86 87 87 # LTCC compiler flags. 88 LTCFLAGS="- g -O2"88 LTCFLAGS="-O0 -g -Wall" 89 89 90 90 # A language-specific compiler. … … 7265 7265 7266 7266 # LTCC compiler flags. 7267 LTCFLAGS="- g -O2"7267 LTCFLAGS="-O0 -g -Wall" 7268 7268 7269 7269 # A language-specific compiler. -
fm_server/trunk/src/Makefile.am
r118 r121 2 2 3 3 4 SUBDIRS = fm_input_gst 4 SUBDIRS = fm_input_gst fm_song_db 5 5 6 6 … … 55 55 fm_server_LDADD = \ 56 56 $(FM_SERVER_LIBS) \ 57 fm_input_gst/libfm_input_gst.la 57 fm_input_gst/libfm_input_gst.la \ 58 fm_song_db/libfm_song_db.la 58 59 59 60 -
fm_server/trunk/src/Makefile.in
r118 r121 90 90 @HAVE_JACK_TRUE@am__DEPENDENCIES_3 = $(am__DEPENDENCIES_1) 91 91 fm_server_DEPENDENCIES = $(am__DEPENDENCIES_1) \ 92 fm_input_gst/libfm_input_gst.la $(am__DEPENDENCIES_2)\93 $(am__DEPENDENCIES_ 3)92 fm_input_gst/libfm_input_gst.la fm_song_db/libfm_song_db.la \ 93 $(am__DEPENDENCIES_2) $(am__DEPENDENCIES_3) 94 94 DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) 95 95 depcomp = $(SHELL) $(top_srcdir)/depcomp … … 265 265 sysconfdir = @sysconfdir@ 266 266 target_alias = @target_alias@ 267 SUBDIRS = fm_input_gst 267 SUBDIRS = fm_input_gst fm_song_db 268 268 INCLUDES = $(FM_SERVER_CFLAGS) 269 269 fm_server_SOURCES = main.c types.h fm_utils.c fm_utils.h \ … … 279 279 fm_server_INCLUDES = $(am__append_2) $(am__append_5) 280 280 fm_server_LDADD = $(FM_SERVER_LIBS) fm_input_gst/libfm_input_gst.la \ 281 $(am__append_3) $(am__append_6)281 fm_song_db/libfm_song_db.la $(am__append_3) $(am__append_6) 282 282 all: all-recursive 283 283 -
fm_server/trunk/src/fm_level_meter.c
r120 r121 83 83 fm_level_meter_class_init (FmLevelMeterClass *class) 84 84 { 85 GObjectClass *gobject_class = G_OBJECT_CLASS (class);85 // GObjectClass *gobject_class = G_OBJECT_CLASS (class); 86 86 FmElementClass *element_class = FM_ELEMENT_CLASS (class); 87 87 // FmEffectClass *effect_class = FM_EFFECT_CLASS (class);
