mirror of
https://github.com/claunia/flac.git
synced 2025-12-16 18:54:26 +00:00
add flacdiff and flactimer utils to source distribution (SF#1911149: https://sourceforge.net/tracker2/?func=detail&aid=1911149&group_id=13478&atid=113478)
This commit is contained in:
@@ -359,6 +359,9 @@ AC_CONFIG_FILES([ \
|
|||||||
src/test_libFLAC++/Makefile \
|
src/test_libFLAC++/Makefile \
|
||||||
src/test_seeking/Makefile \
|
src/test_seeking/Makefile \
|
||||||
src/test_streams/Makefile \
|
src/test_streams/Makefile \
|
||||||
|
src/utils/Makefile \
|
||||||
|
src/utils/flacdiff/Makefile \
|
||||||
|
src/utils/flactimer/Makefile \
|
||||||
examples/Makefile \
|
examples/Makefile \
|
||||||
examples/c/Makefile \
|
examples/c/Makefile \
|
||||||
examples/c/decode/Makefile \
|
examples/c/decode/Makefile \
|
||||||
|
|||||||
@@ -104,7 +104,7 @@
|
|||||||
build system:
|
build system:
|
||||||
<ul>
|
<ul>
|
||||||
<li>Fixes for gcc 4.3 (<a href="https://sourceforge.net/tracker2/?func=detail&aid=1834168&group_id=13478&atid=113478">SF #1834168</a>, <a href="https://sourceforge.net/tracker2/?func=detail&aid=2002481&group_id=13478&atid=113478">SF #2002481</a>).</li>
|
<li>Fixes for gcc 4.3 (<a href="https://sourceforge.net/tracker2/?func=detail&aid=1834168&group_id=13478&atid=113478">SF #1834168</a>, <a href="https://sourceforge.net/tracker2/?func=detail&aid=2002481&group_id=13478&atid=113478">SF #2002481</a>).</li>
|
||||||
<li>Fixes for windows builds (<a href="https://sourceforge.net/tracker2/?func=detail&aid=1676822&group_id=13478&atid=113478">SF #1676822</a>, <a href="https://sourceforge.net/tracker2/?func=detail&aid=1809863&group_id=13478&atid=113478">SF #1809863</a>, <a href="https://sourceforge.net/tracker2/?func=detail&aid=1756624&group_id=13478&atid=363478">SF #1756624</a>).</li>
|
<li>Fixes for windows builds (<a href="https://sourceforge.net/tracker2/?func=detail&aid=1676822&group_id=13478&atid=113478">SF #1676822</a>, <a href="https://sourceforge.net/tracker2/?func=detail&aid=1756624&group_id=13478&atid=363478">SF #1756624</a>, <a href="https://sourceforge.net/tracker2/?func=detail&aid=1809863&group_id=13478&atid=113478">SF #1809863</a>, <a href="https://sourceforge.net/tracker2/?func=detail&aid=1911149&group_id=13478&atid=363478">SF #1911149</a>).</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -36,6 +36,7 @@ SUBDIRS = \
|
|||||||
test_libFLAC \
|
test_libFLAC \
|
||||||
test_seeking \
|
test_seeking \
|
||||||
test_streams \
|
test_streams \
|
||||||
|
utils \
|
||||||
$(CPPLIBS_DIRS)
|
$(CPPLIBS_DIRS)
|
||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
|
|||||||
18
src/utils/Makefile.am
Normal file
18
src/utils/Makefile.am
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
# FLAC - Free Lossless Audio Codec
|
||||||
|
# Copyright (C) 2001,2002,2003,2004,2005,2006,2007,2008 Josh Coalson
|
||||||
|
#
|
||||||
|
# This file is part the FLAC project. FLAC is comprised of several
|
||||||
|
# components distributed under difference licenses. The codec libraries
|
||||||
|
# are distributed under Xiph.Org's BSD-like license (see the file
|
||||||
|
# COPYING.Xiph in this distribution). All other programs, libraries, and
|
||||||
|
# plugins are distributed under the GPL (see COPYING.GPL). The documentation
|
||||||
|
# is distributed under the Gnu FDL (see COPYING.FDL). Each file in the
|
||||||
|
# FLAC distribution contains at the top the terms under which it may be
|
||||||
|
# distributed.
|
||||||
|
#
|
||||||
|
# Since this particular file is relevant to all components of FLAC,
|
||||||
|
# it may be distributed under the Xiph.Org license, which is the least
|
||||||
|
# restrictive of those mentioned above. See the file COPYING.Xiph in this
|
||||||
|
# distribution.
|
||||||
|
|
||||||
|
SUBDIRS = flacdiff flactimer
|
||||||
22
src/utils/flacdiff/Makefile.am
Normal file
22
src/utils/flacdiff/Makefile.am
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
# flacdiff - Displays where two FLAC streams differ
|
||||||
|
# Copyright (C) 2007,2008 Josh Coalson
|
||||||
|
#
|
||||||
|
# This program is free software; you can redistribute it and/or
|
||||||
|
# modify it under the terms of the GNU General Public License
|
||||||
|
# as published by the Free Software Foundation; either version 2
|
||||||
|
# of the License, or (at your option) any later version.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
# GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License
|
||||||
|
# along with this program; if not, write to the Free Software
|
||||||
|
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||||
|
|
||||||
|
EXTRA_DIST = \
|
||||||
|
Makefile.lite \
|
||||||
|
flacdiff.dsp \
|
||||||
|
flacdiff.vcproj \
|
||||||
|
main.cpp
|
||||||
21
src/utils/flactimer/Makefile.am
Normal file
21
src/utils/flactimer/Makefile.am
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
# flactimer - Runs a command and prints timing information
|
||||||
|
# Copyright (C) 2007,2008 Josh Coalson
|
||||||
|
#
|
||||||
|
# This program is free software; you can redistribute it and/or
|
||||||
|
# modify it under the terms of the GNU General Public License
|
||||||
|
# as published by the Free Software Foundation; either version 2
|
||||||
|
# of the License, or (at your option) any later version.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
# GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License
|
||||||
|
# along with this program; if not, write to the Free Software
|
||||||
|
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||||
|
|
||||||
|
EXTRA_DIST = \
|
||||||
|
flactime.dsp \
|
||||||
|
flactime.vcproj \
|
||||||
|
main.cpp
|
||||||
Reference in New Issue
Block a user