Changeset 445
- Timestamp:
- 07/30/09 00:00:32 (15 years ago)
- Location:
- libmpc/trunk
- Files:
-
- 14 edited
Legend:
- Unmodified
- Added
- Removed
-
libmpc/trunk/Makefile.am
r384 r445 1 1 AUTOMAKE_OPTIONS = foreign 2 SUBDIRS = include libmpcdec libmpcenc libmpcpsy libwavformat mpcenc mpc2sv8 \ 3 mpcchap mpccut mpcdec mpcgain wavcmp 2 3 ACLOCAL_AMFLAGS = -I m4 4 5 EXTRA_DIST = CMakeLists.txt libmpc.kdevelop docs win32 6 7 if MPC_CHAP 8 MPCCHAP_DIR = mpcchap 9 endif 10 if MPC_GAIN 11 MPCGAIN_DIR = mpcgain 12 endif 13 14 SUBDIRS = \ 15 include \ 16 libmpcdec \ 17 libmpcenc \ 18 libmpcpsy \ 19 libwavformat \ 20 mpcenc \ 21 mpc2sv8 \ 22 mpccut \ 23 mpcdec \ 24 wavcmp \ 25 $(MPCCHAP_DIR) \ 26 $(MPCGAIN_DIR) 27 -
libmpc/trunk/configure.in
r410 r445 1 AC_INIT(configure.in) 2 AC_CONFIG_AUX_DIR(config) 3 4 AM_CONFIG_HEADER(include/config.h) 5 AM_INIT_AUTOMAKE(libmpcs, 0.1) 1 AC_INIT([libmpcs], [0.1]) 2 AC_CONFIG_AUX_DIR([config]) 3 AC_CONFIG_MACRO_DIR([m4]) 4 AC_CONFIG_SRCDIR([libmpcdec/mpc_reader.c]) 5 AM_CONFIG_HEADER([include/config.h]) 6 AM_INIT_AUTOMAKE 6 7 7 8 AC_LANG_C 8 9 AC_PROG_CC 9 AM_PROG_LIBTOOL 10 AC_LIBTOOL_WIN32_DLL 11 AC_PROG_LIBTOOL 10 12 11 AC_CHECK_HEADERS(replaygain/gain_analysis.h) 13 AC_CHECK_HEADERS([replaygain/gain_analysis.h]) 14 AM_CONDITIONAL([MPC_GAIN], [test "x$ac_cv_header_replaygain_gain_analysis_h" = xyes]) 12 15 13 16 AC_CANONICAL_HOST() … … 24 27 AC_SUBST([EXTRALIBS]) 25 28 26 AC_OUTPUT(Makefile include/Makefile libmpcdec/Makefile libmpcenc/Makefile \ 27 libmpcpsy/Makefile libwavformat/Makefile mpc2sv8/Makefile mpcchap/Makefile mpccut/Makefile \ 28 mpcdec/Makefile mpcenc/Makefile mpcgain/Makefile wavcmp/Makefile) 29 AC_ARG_ENABLE([mpcchap], [AS_HELP_STRING([--enable-mpcchap], [enable building mpcchap])]) 30 AM_CONDITIONAL([MPC_CHAP], [test "x$enable_mpcchap" = xyes]) 31 32 33 CHECK_VISIBILITY 34 35 AC_CONFIG_FILES([ 36 Makefile 37 include/Makefile 38 libmpcdec/Makefile 39 libmpcenc/Makefile 40 libmpcpsy/Makefile 41 libwavformat/Makefile 42 mpc2sv8/Makefile 43 mpcchap/Makefile 44 mpccut/Makefile 45 mpcdec/Makefile 46 mpcenc/Makefile 47 mpcgain/Makefile 48 wavcmp/Makefile 49 ]) 50 51 AC_OUTPUT -
libmpc/trunk/include/mpc/mpc_types.h
r431 r445 127 127 #endif 128 128 129 #ifdef __GNUC__ 130 # define MPC_API __attribute__ ((visibility("default"))) 131 #else 132 # define MPC_API 129 /* DLL building support on win32 hosts */ 130 #ifndef MPC_API 131 # ifdef DLL_EXPORT /* defined by libtool (if required) */ 132 # define MPC_API __declspec(dllexport) 133 # endif 134 # ifdef MPC_DLL_IMPORT /* define if linking with this dll */ 135 # define MPC_API __declspec(dllimport) 136 # endif 137 # ifndef MPC_API /* static linking or !_WIN32 */ 138 # if defined(__GNUC__) && (__GNUC__ >= 4) 139 # define MPC_API __attribute__ ((visibility("default"))) 140 # else 141 # define MPC_API 142 # endif 143 # endif 133 144 #endif 134 145 -
libmpc/trunk/libmpcdec/Makefile.am
r433 r445 1 INCLUDES = -I$(top_srcdir)/include 1 EXTRA_DIST = CMakeLists.txt 2 3 AM_CPPFLAGS = -I$(top_srcdir)/include 4 5 if HAVE_VISIBILITY 6 AM_CFLAGS = -fvisibility=hidden 7 endif 2 8 3 9 common_sources = ../common/crc32.c \ … … 8 14 libmpcdec_la_SOURCES = huffman.c mpc_decoder.c mpc_reader.c \ 9 15 requant.c streaminfo.c synth_filter.c mpc_bits_reader.c mpc_demux.c \ 16 mpc_bits_reader.h huffman.h decoder.h internal.h requant.h mpcdec_math.h \ 10 17 $(common_sources) 11 18 12 19 libmpcdec_la_LDFLAGS = -no-undefined -version-info 7:0:1 13 14 noinst_HEADERS = mpc_bits_reader.h huffman.h decoder.h internal.h requant.h mpcdec_math.h15 AM_CFLAGS = -fpic -fvisibility=hidden -
libmpc/trunk/libmpcenc/Makefile.am
r225 r445 1 INCLUDES = -I$(top_srcdir)/include/ 1 EXTRA_DIST = CMakeLists.txt 2 3 AM_CPPFLAGS = -I$(top_srcdir)/include 4 5 if HAVE_VISIBILITY 6 AM_CFLAGS = -fvisibility=hidden 7 endif 8 2 9 METASOURCES = AUTO 3 10 noinst_LIBRARIES = libmpcenc.a 4 libmpcenc_a_SOURCES = analy_filter.c bitstream.c encode_sv7.c huffsv7.c quant.c 5 6 7 noinst_HEADERS = libmpcenc.h 8 9 11 libmpcenc_a_SOURCES = analy_filter.c bitstream.c encode_sv7.c huffsv7.c quant.c libmpcenc.h -
libmpc/trunk/libmpcpsy/Makefile.am
r225 r445 1 INCLUDES = -I$(top_srcdir)/include/ 1 EXTRA_DIST = CMakeLists.txt 2 3 AM_CPPFLAGS = -I$(top_srcdir)/include 4 5 if HAVE_VISIBILITY 6 AM_CFLAGS = -fvisibility=hidden 7 endif 8 2 9 METASOURCES = AUTO 3 10 noinst_LIBRARIES = libmpcpsy.a 4 11 libmpcpsy_a_SOURCES = ans.c cvd.c fft4g.c fft_routines.c psy.c psy_tab.c \ 5 profile.c 6 noinst_HEADERS = libmpcpsy.h 12 profile.c libmpcpsy.h -
libmpc/trunk/libwavformat/Makefile.am
r409 r445 1 INCLUDES = 1 EXTRA_DIST = CMakeLists.txt 2 3 if HAVE_VISIBILITY 4 AM_CFLAGS = -fvisibility=hidden 5 endif 6 2 7 METASOURCES = AUTO 3 8 noinst_LIBRARIES = libwavformat.a 4 noinst_HEADERS = libwaveformat.h 5 libwavformat_a_SOURCES = input.c output.c 9 10 libwavformat_a_SOURCES = input.c output.c libwaveformat.h -
libmpc/trunk/mpc2sv8/Makefile.am
r400 r445 1 INCLUDES = -I$(top_srcdir)/include 1 EXTRA_DIST = CMakeLists.txt 2 3 AM_CPPFLAGS = -I$(top_srcdir)/include 4 5 if HAVE_VISIBILITY 6 AM_CFLAGS = -fvisibility=hidden 7 endif 2 8 3 9 common_sources = ../common/crc32.c -
libmpc/trunk/mpcchap/Makefile.am
r409 r445 1 EXTRA_DIST = CMakeLists.txt 2 1 3 bin_PROGRAMS = mpcchap 2 4 3 5 common_sources = ../common/tags.c ../common/crc32.c 4 6 5 INCLUDES = -I$(top_srcdir)/include 7 AM_CPPFLAGS = -I$(top_srcdir)/include 8 9 if HAVE_VISIBILITY 10 AM_CFLAGS = -fvisibility=hidden 11 endif 12 6 13 METASOURCES = AUTO 7 mpcchap_SOURCES = dictionary.c iniparser.c mpcchap.c $(common_sources) 14 mpcchap_SOURCES = dictionary.c iniparser.c mpcchap.c $(common_sources) \ 15 dictionary.h iniparser.h 16 8 17 mpcchap_LDADD = $(top_builddir)/libmpcdec/libmpcdec.la \ 9 18 $(top_builddir)/libmpcenc/libmpcenc.a \ 10 19 -lm -lcuefile 11 12 noinst_HEADERS = dictionary.h iniparser.h -
libmpc/trunk/mpccut/Makefile.am
r400 r445 1 INCLUDES = -I$(top_srcdir)/include 1 EXTRA_DIST = CMakeLists.txt 2 3 AM_CPPFLAGS = -I$(top_srcdir)/include 4 5 if HAVE_VISIBILITY 6 AM_CFLAGS = -fvisibility=hidden 7 endif 2 8 3 9 common_sources = ../common/crc32.c -
libmpc/trunk/mpcdec/Makefile.am
r232 r445 1 INCLUDES = -I$(top_srcdir)/libwavformat -I$(top_srcdir)/include 1 EXTRA_DIST = CMakeLists.txt 2 3 AM_CPPFLAGS = -I$(top_srcdir)/libwavformat -I$(top_srcdir)/include 4 5 if HAVE_VISIBILITY 6 AM_CFLAGS = -fvisibility=hidden 7 endif 8 2 9 METASOURCES = AUTO 3 10 bin_PROGRAMS = mpcdec -
libmpc/trunk/mpcenc/Makefile.am
r410 r445 1 EXTRA_DIST = CMakeLists.txt 2 3 if HAVE_VISIBILITY 4 AM_CFLAGS = -fvisibility=hidden 5 endif 6 1 7 bin_PROGRAMS = mpcenc 2 8 … … 7 13 8 14 # set the include path found by configure 9 INCLUDES = -I$(top_srcdir)/libmpcenc -I$(top_srcdir)/libmpcpsy \ 10 -I$(top_srcdir)/include/ $(all_includes) 15 AM_CPPFLAGS = -I$(top_srcdir)/libmpcenc -I$(top_srcdir)/libmpcpsy \ 16 -I$(top_srcdir)/include/ $(all_includes) \ 17 -DTRUE=1 -DFALSE=0 11 18 12 19 # the library search path. 13 20 mpcenc_LDFLAGS = $(all_libraries) 14 21 mpcenc_SOURCES = keyboard.c mpcenc.c pipeopen.c stderr.c wave_in.c winmsg.c \ 15 $(common_sources) 22 $(common_sources) \ 23 mpcenc.h predict.h config.h 24 16 25 mpcenc_LDADD = -lm \ 17 26 $(EXTRALIBS) \ 18 27 $(top_builddir)/libmpcpsy/libmpcpsy.a \ 19 28 $(top_builddir)/libmpcenc/libmpcenc.a 20 AM_CFLAGS = -DTRUE=1 -DFALSE=021 29 22 noinst_HEADERS = mpcenc.h predict.h config.h -
libmpc/trunk/mpcgain/Makefile.am
r232 r445 1 EXTRA_DIST = CMakeLists.txt 2 3 AM_CPPFLAGS = -I$(top_srcdir)/include 4 5 AM_CFLAGS = -ffast-math 6 7 if HAVE_VISIBILITY 8 AM_CFLAGS += -fvisibility=hidden 9 endif 10 1 11 2 12 METASOURCES = AUTO … … 5 15 $(top_builddir)/libmpcdec/libmpcdec.la 6 16 mpcgain_SOURCES = mpcgain.c 7 INCLUDES = -I$(top_srcdir)/include8 AM_CFLAGS = -ffast-math -
libmpc/trunk/wavcmp/Makefile.am
r282 r445 1 INCLUDES = -I$(top_srcdir)/libwavformat 1 AM_CPPFLAGS = -I$(top_srcdir)/libwavformat 2 3 if HAVE_VISIBILITY 4 AM_CFLAGS = -fvisibility=hidden 5 endif 6 2 7 METASOURCES = AUTO 3 8 bin_PROGRAMS = wavcmp
Note: See TracChangeset
for help on using the changeset viewer.