From 83bf6157e79b737ede363cf4571799f3a8c7fb38 Mon Sep 17 00:00:00 2001 From: Josh Coalson Date: Fri, 1 Nov 2002 04:27:46 +0000 Subject: add replaygain_synthesis --- src/plugin_common/Makefile.am | 5 +++++ src/plugin_common/Makefile.lite | 3 ++- src/plugin_common/Makefile.vc | 5 +++-- src/plugin_common/all.h | 1 + src/plugin_common/plugin_common.dsp | 12 ++++++++++++ 5 files changed, 23 insertions(+), 3 deletions(-) (limited to 'src/plugin_common') diff --git a/src/plugin_common/Makefile.am b/src/plugin_common/Makefile.am index 64f36754..ac5a84f2 100644 --- a/src/plugin_common/Makefile.am +++ b/src/plugin_common/Makefile.am @@ -2,6 +2,8 @@ AUTOMAKE_OPTIONS = foreign +SUBDIRS = include . + INCLUDES = -I$(top_srcdir)/include @ID3LIB_CFLAGS@ noinst_LIBRARIES = libplugin_common.a @@ -10,10 +12,12 @@ noinst_HEADERS = \ all.h \ canonical_tag.h \ charset.h \ + defs.h \ dither.h \ id3v1.h \ id3v2.h \ locale_hack.h \ + replaygain_synthesis.h \ vorbiscomment.h libplugin_common_a_SOURCES = \ @@ -22,6 +26,7 @@ libplugin_common_a_SOURCES = \ dither.c \ id3v1.c \ id3v2.c \ + replaygain_synthesis.c \ vorbiscomment.c EXTRA_DIST = \ diff --git a/src/plugin_common/Makefile.lite b/src/plugin_common/Makefile.lite index 4e594173..4977c8ad 100644 --- a/src/plugin_common/Makefile.lite +++ b/src/plugin_common/Makefile.lite @@ -5,7 +5,7 @@ topdir = ../.. LIB_NAME = libplugin_common -INCLUDES = -I$(topdir)/include -I$(HOME)/local/include +INCLUDES = -I./include -I$(topdir)/include -I$(HOME)/local/include DEFINES = -DFLAC__HAS_ID3LIB -DID3LIB_MAJOR=3 -DID3LIB_MINOR=8 -DID3LIB_PATCH=0 OBJS = \ @@ -14,6 +14,7 @@ OBJS = \ dither.o \ id3v1.o \ id3v2.o \ + replaygain_synthesis.o \ vorbiscomment.o include $(topdir)/build/lib.mk diff --git a/src/plugin_common/Makefile.vc b/src/plugin_common/Makefile.vc index 9f2be207..e8c3c0b2 100644 --- a/src/plugin_common/Makefile.vc +++ b/src/plugin_common/Makefile.vc @@ -2,10 +2,10 @@ !IFDEF DEBUG .c.obj: - $(cc) /D "_LIB" -DFLAC__NO_DLL /GX $(cdebug) $(cflags) /I "..\..\include" -DSTRICT -YX /Od /D "_DEBUG" $< + $(cc) /D "_LIB" -DFLAC__NO_DLL /GX $(cdebug) $(cflags) /I ".\include" /I "..\..\include" -DSTRICT -YX /Od /D "_DEBUG" $< !else .c.obj: - $(cc) /D "_LIB" -DFLAC__NO_DLL /O2 $(crelease) $(cflags) /I "..\..\include" -DSTRICT -YX -DNODEBUG $< + $(cc) /D "_LIB" -DFLAC__NO_DLL /O2 $(crelease) $(cflags) /I ".\include" /I "..\..\include" -DSTRICT -YX -DNODEBUG $< !endif C_FILES= \ @@ -14,6 +14,7 @@ C_FILES= \ dither.c \ id3v1.c \ id3v2.c \ + replaygain_synthesis.c \ vorbiscomment.c OBJS= $(C_FILES:.c=.obj) diff --git a/src/plugin_common/all.h b/src/plugin_common/all.h index 5e5ac41b..8c409ac6 100644 --- a/src/plugin_common/all.h +++ b/src/plugin_common/all.h @@ -27,6 +27,7 @@ #include "id3v1.h" #include "id3v2.h" #include "locale_hack.h" +#include "replaygain_synthesis.h" #include "vorbiscomment.h" #endif diff --git a/src/plugin_common/plugin_common.dsp b/src/plugin_common/plugin_common.dsp index 7344645e..0fb2ff4e 100644 --- a/src/plugin_common/plugin_common.dsp +++ b/src/plugin_common/plugin_common.dsp @@ -114,12 +114,20 @@ SOURCE=.\id3v2.c # End Source File # Begin Source File +SOURCE=.\replaygain_synthesis.c +# End Source File +# Begin Source File + SOURCE=.\vorbiscomment.c # End Source File # End Group # Begin Group "Private Header Files" # PROP Default_Filter "" +# Begin Source File + +SOURCE=.\include\private\fast_float_math_hack.h +# End Source File # End Group # Begin Group "Protected Header Files" @@ -158,6 +166,10 @@ SOURCE=.\locale_hack.h # End Source File # Begin Source File +SOURCE=.\replaygain_synthesis.h +# End Source File +# Begin Source File + SOURCE=.\vorbiscomment.h # End Source File # End Group -- cgit v1.2.1