search for: test_pictur

Displaying 11 results from an estimated 11 matches for "test_pictur".

Did you mean: test_picture
2013 Apr 21
0
[PATCH] Reduce valgrind num-callers to 50
...ind --leak-check=yes --show-reachable=yes --num-callers=50 --log-fd=4 metaflac $* 4>>test_flac.valgrind.log else metaflac $* fi diff --git a/test/test_grabbag.sh b/test/test_grabbag.sh index 5d9f9d1..4c291c4 100755 --- a/test/test_grabbag.sh +++ b/test/test_grabbag.sh @@ -46,8 +46,8 @@ test_picture -h 1>/dev/null 2>/dev/null || die "ERROR can't find test_picture ex run_test_cuesheet () { if [ x"$FLAC__TEST_WITH_VALGRIND" = xyes ] ; then - echo "valgrind --leak-check=yes --show-reachable=yes --num-callers=100 test_cuesheet $*" >>test_grabbag.valgr...
2017 Jan 15
0
[PATCH 2/2] Only compile and run tests when running 'make check'
...st_cuesheet_SOURCES = \ main.c test_cuesheet_LDADD = \ diff --git a/src/test_grabbag/picture/Makefile.am b/src/test_grabbag/picture/Makefile.am index b1a949e5..0ee04a41 100644 --- a/src/test_grabbag/picture/Makefile.am +++ b/src/test_grabbag/picture/Makefile.am @@ -23,7 +23,7 @@ EXTRA_DIST = \ test_picture.vcxproj.filters AM_CPPFLAGS = -I$(top_builddir) -I$(srcdir)/include -I$(top_srcdir)/include -noinst_PROGRAMS = test_picture +check_PROGRAMS = test_picture test_picture_SOURCES = \ main.c diff --git a/src/test_libFLAC++/Makefile.am b/src/test_libFLAC++/Makefile.am index fec7e81a..31830b29 1...
2014 May 24
2
make dllimport/dllexport attributes work with mingw (and others)
..._analysis.la \ $(top_builddir)/src/libFLAC/libFLAC.la diff --git a/src/test_grabbag/picture/Makefile.am b/src/test_grabbag/picture/Makefile.am index 677fe5c..83af1e8 100644 --- a/src/test_grabbag/picture/Makefile.am +++ b/src/test_grabbag/picture/Makefile.am @@ -25,8 +25,12 @@ noinst_PROGRAMS = test_picture test_picture_SOURCES = \ main.c +if OS_IS_WINDOWS +win_utf8_lib = $(top_builddir)/src/share/win_utf8_io/libwin_utf8_io.la +endif test_picture_LDADD = \ $(top_builddir)/src/share/grabbag/libgrabbag.la \ + $(win_utf8_lib) \ $(top_builddir)/src/libFLAC/libFLAC.la CLEANFILES = test_pictur...
2014 May 24
2
make dllimport/dllexport attributes work with mingw (and others)
The following patch changes export.h so that the dllimport/dllexport attributes work with mingw/mingw-w64 and others: - changes _declspec keyword to __declspec: the former may not be defined by some toolchains. - changes the _MSC_VER condition to universally _WIN32: MSVC, as well as GCC supports this. Attached patch: declspec.diff Regards. -- O.S. -------------- next part --------------
2017 Jan 15
4
Updated CFLAGS patches and make test compilation conditional
Hi Erik, I've found a middleground for the problem of setting default CFLAGS. I've gone back to setting them if {C,CXX,CPP,LD}FLAGS are unset at the onset of the configure script (i.e., the user hasn't specified anything) and then proceed to set them to the defaults as before. This has been suggested before: https://lists.gnu.org/archive/html/autoconf/2006-04/msg00022.html In
2012 Apr 07
1
[PATCH 2/2] Update and improve autotools build
...sheet test_cuesheet_SOURCES = \ main.c diff --git a/src/test_grabbag/picture/Makefile.am b/src/test_grabbag/picture/Makefile.am index cce0cdf..8e86be6 100644 --- a/src/test_grabbag/picture/Makefile.am +++ b/src/test_grabbag/picture/Makefile.am @@ -19,7 +19,7 @@ EXTRA_DIST = \ Makefile.lite \ test_picture.dsp \ test_picture.vcproj - +AM_CPPFLAGS = -I$(top_builddir) -I$(srcdir)/include -I$(top_srcdir)/include noinst_PROGRAMS = test_picture test_picture_SOURCES = \ main.c diff --git a/src/test_libFLAC++/Makefile.am b/src/test_libFLAC++/Makefile.am index 0713221..870ca97 100644 --- a/src/test_li...
2013 Apr 06
0
[PATCH 2/2] Only link against libogg (and libm) if needed
...m + $(top_builddir)/src/libFLAC/libFLAC.la CLEANFILES = test_cuesheet.exe diff --git a/src/test_grabbag/picture/Makefile.am b/src/test_grabbag/picture/Makefile.am index d40eb68..d7e0c54 100644 --- a/src/test_grabbag/picture/Makefile.am +++ b/src/test_grabbag/picture/Makefile.am @@ -26,8 +26,6 @@ test_picture_SOURCES = \ test_picture_LDADD = \ $(top_builddir)/src/share/grabbag/libgrabbag.la \ - $(top_builddir)/src/libFLAC/libFLAC.la \ - @OGG_LIBS@ \ - -lm + $(top_builddir)/src/libFLAC/libFLAC.la CLEANFILES = test_picture.exe diff --git a/src/test_seeking/Makefile.am b/src/test_seeking/Makefile....
2014 May 04
0
Building FLAC with LTO
....la + $(top_builddir)/src/libFLAC/libFLAC.la \ + $(win_utf8_lib) CLEANFILES = test_cuesheet.exe --- flac-1.3.0/src/test_grabbag/picture/Makefile.am.orig 2013-05-26 09:30:33.940201500 +0000 +++ flac-1.3.0/src/test_grabbag/picture/Makefile.am 2014-05-03 09:49:12.014396600 +0000 @@ -25,8 +25,13 @@ test_picture_SOURCES = \ main.c +if OS_IS_WINDOWS +win_utf8_lib = $(top_builddir)/src/share/win_utf8_io/libwin_utf8_io.la +endif + test_picture_LDADD = \ $(top_builddir)/src/share/grabbag/libgrabbag.la \ - $(top_builddir)/src/libFLAC/libFLAC.la + $(top_builddir)/src/libFLAC/libFLAC.la \ + $(win_utf8_lib...
2012 Dec 26
0
[PATCH] Fix building with MSYS and MinGW(-w64); Improve Makefile.lite build system
...nalysis -lFLAC $(OGG_LIBS) -lm endif SRCS_C = \ diff --git a/src/test_grabbag/picture/Makefile.lite b/src/test_grabbag/picture/Makefile.lite index 1a3e60f..4b186a8 100644 --- a/src/test_grabbag/picture/Makefile.lite +++ b/src/test_grabbag/picture/Makefile.lite @@ -27,9 +27,9 @@ PROGRAM_NAME = test_picture INCLUDES = -I./include -I$(topdir)/include ifeq ($(OS),Darwin) -EXPLICIT_LIBS = $(libdir)/libgrabbag.a $(libdir)/libreplaygain_analysis.a $(libdir)/libFLAC.a $(OGG_LIB_DIR)/libogg.a -lm + EXPLICIT_LIBS = $(libdir)/libgrabbag.a $(libdir)/libreplaygain_analysis.a $(libdir)/libFLAC.a $(OG...
2012 Dec 27
4
[PATCH] Makefile.lite: Fix building with MSYS and MinGW(-w64), Improvements
...nalysis -lFLAC $(OGG_LIBS) -lm endif SRCS_C = \ diff --git a/src/test_grabbag/picture/Makefile.lite b/src/test_grabbag/picture/Makefile.lite index 1a3e60f..4b186a8 100644 --- a/src/test_grabbag/picture/Makefile.lite +++ b/src/test_grabbag/picture/Makefile.lite @@ -27,9 +27,9 @@ PROGRAM_NAME = test_picture INCLUDES = -I./include -I$(topdir)/include ifeq ($(OS),Darwin) -EXPLICIT_LIBS = $(libdir)/libgrabbag.a $(libdir)/libreplaygain_analysis.a $(libdir)/libFLAC.a $(OGG_LIB_DIR)/libogg.a -lm + EXPLICIT_LIBS = $(libdir)/libgrabbag.a $(libdir)/libreplaygain_analysis.a $(libdir)/libFLAC.a $(OG...
2007 Mar 06
1
Errors compiling flac in Visual Studio Express 2005
...++_static - 0 error(s), 1 warning(s) 12>------ Rebuild All started: Project: libFLAC++_dynamic, Configuration: Debug Win32 ------ 12>Deleting intermediate and output files for project 'libFLAC++_dynamic', configuration 'Debug|Win32' 13>------ Rebuild All started: Project: test_picture, Configuration: Debug Win32 ------ 13>Deleting intermediate and output files for project 'test_picture', configuration 'Debug|Win32' 13>Compiling... 12>Compiling... 13>main.c 12>metadata.cpp 13>c:\greenhouse\workspace\soundio\tool\flac_1.1.3\main\flac-1.1.3\src\...