add/update copyright and license notices
authorJosh Coalson <jcoalson@users.sourceforce.net>
Fri, 8 Jun 2001 00:13:21 +0000 (00:13 +0000)
committerJosh Coalson <jcoalson@users.sourceforce.net>
Fri, 8 Jun 2001 00:13:21 +0000 (00:13 +0000)
51 files changed:
Makefile.am
Makefile.lite
README
build/exe.mk
build/lib.mk
configure.in
doc/Makefile.am
doc/comparison.html
doc/developers.html
doc/documentation.html
doc/download.html
doc/features.html
doc/format.html
doc/goals.html
doc/id.html
doc/images/Makefile.am
doc/index.html
doc/news.html
include/FLAC/Makefile.am
include/Makefile.am
man/Makefile.am
src/Makefile.am
src/flac/Makefile.am
src/flac/Makefile.lite
src/flac/Makefile.vc
src/libFLAC/Makefile.am
src/libFLAC/Makefile.lite
src/libFLAC/Makefile.vc
src/libFLAC/i386/Makefile.am
src/libFLAC/include/Makefile.am
src/libFLAC/include/private/Makefile.am
src/libFLAC/include/protected/Makefile.am
src/metaflac/Makefile.am
src/metaflac/Makefile.lite
src/metaflac/Makefile.vc
src/plugin_winamp2/Makefile.am
src/plugin_winamp2/Makefile.vc
src/plugin_winamp3/Makefile.am
src/plugin_winamp3/Makefile.vc
src/plugin_winamp3/in_flac.cpp
src/plugin_xmms/Makefile.am
src/plugin_xmms/Makefile.lite
src/test_streams/Makefile.am
src/test_streams/Makefile.lite
src/test_unit/Makefile.am
src/test_unit/Makefile.lite
test/Makefile.am
test/Makefile.lite
test/test_bins.sh
test/test_streams.sh
test/test_unit.sh

index 05526d216b943262e79846230c9697688f4aff46..88fe95b2e76d7f5d2399d53eef4cab1f60cf67f8 100644 (file)
@@ -1,3 +1,20 @@
+#  FLAC - Free Lossless Audio Codec
+#  Copyright (C) 2001  Josh Coalson
+#
+#  This program is part of FLAC; 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.
+
 #
 # automake provides the following useful targets:
 #
index 92adb87c0aba9c641d6da3800dbaec9525181e33..ce949eccf405fffbb8975c59eab96205bae75939 100644 (file)
@@ -1,3 +1,20 @@
+#  FLAC - Free Lossless Audio Codec
+#  Copyright (C) 2001  Josh Coalson
+#
+#  This program is part of FLAC; 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.
+
 #
 # GNU Makefile
 #
diff --git a/README b/README
index d3fe143aaaab084e628d491d6faa2899320c6d60..667d528fe9371105c00f12eff954c17aa9a63745 100644 (file)
--- a/README
+++ b/README
@@ -1,12 +1,39 @@
+/* FLAC - Free Lossless Audio Codec
+ * Copyright (C) 2001  Josh Coalson
+ *
+ * This program is part of FLAC; 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.
+ */
+
+
+FLAC (http://flac.sourceforge.net/) is an Open Source lossless audio
+codec developed by Josh Coalson.
+
+FLAC is comprised of 1) `libFLAC', a library which implements
+reference encoders and decoders, licensed under the GNU Lesser
+General Public License (LGPL); 2) `flac', a command-line program for 
+encoding and decoding files, licensed under the GNU General public
+License (GPL); 3) `metaflac', a command-line program for editing
+FLAC metadata, licensed under the GPL; 4) player plugins for XMMS
+and Winamp, licensed under the GPL; and 5) documentation, licensed
+under the GNU Free Documentation License.
+
 ===========
 FLAC - 0.10
 ===========
 
-This is the source release for the FLAC project.  The
-reference encoder/decoder library 'libFLAC' is released
-under the LGPL (see COPYING.LGPL).  This means the code
-in include/FLAC/ and src/libFLAC/.  All other code is
-covered by the GPL (see COPYING.GPL).  See
+This is the source release for the FLAC project.  See
 
        doc/index.html
 
index 834535f1f98f47d11cb40fd42eb338f0d15d7558..50a78032080c305f1ed492c67399950f8e87b411 100644 (file)
@@ -1,3 +1,20 @@
+#  FLAC - Free Lossless Audio Codec
+#  Copyright (C) 2001  Josh Coalson
+#
+#  This program is part of FLAC; 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.
+
 #
 # GNU makefile fragment for building an executable
 #
index 5e986f0d281af3c2b794ad95ae0ec4050b01b068..78efe3c3b9a4c775d16da06f61c2581aa192c108 100644 (file)
@@ -1,3 +1,20 @@
+#  FLAC - Free Lossless Audio Codec
+#  Copyright (C) 2001  Josh Coalson
+#
+#  This program is part of FLAC; 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.
+
 #
 # GNU makefile fragment for building a library
 #
index bef1b8e2e17f1dff5273011d82a6f62eb1566a96..e1a94f25181d36471539937bb8e21d9ec93d9ac8 100644 (file)
@@ -1,3 +1,20 @@
+#  FLAC - Free Lossless Audio Codec
+#  Copyright (C) 2001  Josh Coalson
+#
+#  This program is part of FLAC; 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.
+
 # NOTE that for many of the AM_CONDITIONALs we use the prefix FLaC__
 # instead of FLAC__ since autoconf triggers off 'AC_' in strings
 
index 372cdb8126eafcdc8a8795640bb0fc57b405d798..3011f428d6fdc400694a4a483e44df575a12a5b3 100644 (file)
@@ -1,3 +1,20 @@
+#  FLAC - Free Lossless Audio Codec
+#  Copyright (C) 2001  Josh Coalson
+#
+#  This program is part of FLAC; 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.
+
 SUBDIRS = . images
 
 EXTRA_DIST = comparison.html \
index 35ce4e7b8e51953b5d542451708af422d20a217d..6df66ebd644bef18eaf10858168ef582ab9010a8 100644 (file)
@@ -1,4 +1,10 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
+<!-- Copyright (c)  2000,2001  Josh Coalson -->
+<!-- Permission is granted to copy, distribute and/or modify this document -->
+<!-- under the terms of the GNU Free Documentation License, Version 1.1 -->
+<!-- or any later version published by the Free Software Foundation; -->
+<!-- with no invariant sections. -->
+<!-- A copy of the license can be found at http://www.gnu.org/copyleft/fdl.html -->
 <HTML>
 <HEAD>
        <TITLE>FLAC - comparison</TITLE>
 
 </CENTER>
 
+<P>nbsp;Copyright (c) 2000,2001 Josh Coalson</P>
+
 </BODY>
 </HTML>
index e461b2fb0b2580c22e59b66892ac27453bd52688..b131bc0a10fd96955b45b0c44faf52d1c421f142 100644 (file)
@@ -1,4 +1,10 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
+<!-- Copyright (c)  2000,2001  Josh Coalson -->
+<!-- Permission is granted to copy, distribute and/or modify this document -->
+<!-- under the terms of the GNU Free Documentation License, Version 1.1 -->
+<!-- or any later version published by the Free Software Foundation; -->
+<!-- with no invariant sections. -->
+<!-- A copy of the license can be found at http://www.gnu.org/copyleft/fdl.html -->
 <HTML>
 <HEAD>
        <TITLE>FLAC - developers</TITLE>
 
 </CENTER>
 
+<P>nbsp;Copyright (c) 2000,2001 Josh Coalson</P>
+
 </BODY>
 </HTML>
index 8d3e97be7052c9857d90a586c72295a84f282032..69cbe68150268ba6b22e4bc13d463b6b9b27a1b9 100644 (file)
@@ -1,4 +1,10 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
+<!-- Copyright (c)  2000,2001  Josh Coalson -->
+<!-- Permission is granted to copy, distribute and/or modify this document -->
+<!-- under the terms of the GNU Free Documentation License, Version 1.1 -->
+<!-- or any later version published by the Free Software Foundation; -->
+<!-- with no invariant sections. -->
+<!-- A copy of the license can be found at http://www.gnu.org/copyleft/fdl.html -->
 <HTML>
 <HEAD>
        <TITLE>FLAC - documentation</TITLE>
 
 </CENTER>
 
+<P>nbsp;Copyright (c) 2000,2001 Josh Coalson</P>
+
 </BODY>
 </HTML>
index f81e1121947190d2713ca2bc74f4b3c3d0e4c817..0ee6084878d7fcde89490427b567fd8fe53d224f 100644 (file)
@@ -1,4 +1,10 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
+<!-- Copyright (c)  2000,2001  Josh Coalson -->
+<!-- Permission is granted to copy, distribute and/or modify this document -->
+<!-- under the terms of the GNU Free Documentation License, Version 1.1 -->
+<!-- or any later version published by the Free Software Foundation; -->
+<!-- with no invariant sections. -->
+<!-- A copy of the license can be found at http://www.gnu.org/copyleft/fdl.html -->
 <HTML>
 <HEAD>
        <TITLE>FLAC - download</TITLE>
@@ -68,5 +74,7 @@
 
 </CENTER>
 
+<P>nbsp;Copyright (c) 2000,2001 Josh Coalson</P>
+
 </BODY>
 </HTML>
index c82de51d864bd1f109e2e66a4eeb8b410bdaba2d..2988aee4dd87a199158a04520f2bc660bc913800 100644 (file)
@@ -1,4 +1,10 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
+<!-- Copyright (c)  2000,2001  Josh Coalson -->
+<!-- Permission is granted to copy, distribute and/or modify this document -->
+<!-- under the terms of the GNU Free Documentation License, Version 1.1 -->
+<!-- or any later version published by the Free Software Foundation; -->
+<!-- with no invariant sections. -->
+<!-- A copy of the license can be found at http://www.gnu.org/copyleft/fdl.html -->
 <HTML>
 <HEAD>
        <TITLE>FLAC - features</TITLE>
 
 </CENTER>
 
+<P>nbsp;Copyright (c) 2000,2001 Josh Coalson</P>
+
 </BODY>
 </HTML>
index b90d3515afedd55784ff34411425fd13fe1b6dfb..629141f6b9a5cdeb067b6ee9c484ae3f1555e320 100644 (file)
@@ -1,4 +1,10 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
+<!-- Copyright (c)  2000,2001  Josh Coalson -->
+<!-- Permission is granted to copy, distribute and/or modify this document -->
+<!-- under the terms of the GNU Free Documentation License, Version 1.1 -->
+<!-- or any later version published by the Free Software Foundation; -->
+<!-- with no invariant sections. -->
+<!-- A copy of the license can be found at http://www.gnu.org/copyleft/fdl.html -->
 <HTML>
 <HEAD>
        <TITLE>FLAC - format</TITLE>
 
 </CENTER>
 
+<P>nbsp;Copyright (c) 2000,2001 Josh Coalson</P>
+
 </BODY>
 </HTML>
index 3bf4be0d9a68ac32a4bdc95e55bc534a2b973e09..aa1549dd604f1cf5206a69ac97b5e8365809ae09 100644 (file)
@@ -1,4 +1,10 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
+<!-- Copyright (c)  2000,2001  Josh Coalson -->
+<!-- Permission is granted to copy, distribute and/or modify this document -->
+<!-- under the terms of the GNU Free Documentation License, Version 1.1 -->
+<!-- or any later version published by the Free Software Foundation; -->
+<!-- with no invariant sections. -->
+<!-- A copy of the license can be found at http://www.gnu.org/copyleft/fdl.html -->
 <HTML>
 <HEAD>
        <TITLE>FLAC - goals</TITLE>
 
 </CENTER>
 
+<P>nbsp;Copyright (c) 2000,2001 Josh Coalson</P>
+
 </BODY>
 </HTML>
index 5fb4d25281536d09a76fdf94ca156c24172430e8..b9b75da08b2e84ba0e020596090a5ca88790a92a 100644 (file)
@@ -1,4 +1,10 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
+<!-- Copyright (c)  2000,2001  Josh Coalson -->
+<!-- Permission is granted to copy, distribute and/or modify this document -->
+<!-- under the terms of the GNU Free Documentation License, Version 1.1 -->
+<!-- or any later version published by the Free Software Foundation; -->
+<!-- with no invariant sections. -->
+<!-- A copy of the license can be found at http://www.gnu.org/copyleft/fdl.html -->
 <HTML>
 <HEAD>
        <TITLE>FLAC - id</TITLE>
 
 </CENTER>
 
+<P>nbsp;Copyright (c) 2000,2001 Josh Coalson</P>
+
 </BODY>
 </HTML>
index 4d52326849c0e069de11d691b8e865545d0d1e3f..4d2059c139f97561aa89fd818e9f2b01228efe14 100644 (file)
@@ -1,3 +1,20 @@
+#  FLAC - Free Lossless Audio Codec
+#  Copyright (C) 2001  Josh Coalson
+#
+#  This program is part of FLAC; 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 = 1x1.gif \
        cafebug.gif \
        logo.jpg
index deb45cd8d890a2f2396dd906c4eb3837785beec3..63d69f58a599a876e69c6c3a1ab19b5d0f75d794 100644 (file)
@@ -1,4 +1,10 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
+<!-- Copyright (c)  2000,2001  Josh Coalson -->
+<!-- Permission is granted to copy, distribute and/or modify this document -->
+<!-- under the terms of the GNU Free Documentation License, Version 1.1 -->
+<!-- or any later version published by the Free Software Foundation; -->
+<!-- with no invariant sections. -->
+<!-- A copy of the license can be found at http://www.gnu.org/copyleft/fdl.html -->
 <HTML>
 <HEAD>
        <TITLE>FLAC - Free Lossless Audio Codec</TITLE>
@@ -273,5 +279,7 @@ etree.org?
 
 </CENTER>
 
+<P>nbsp;Copyright (c) 2000,2001 Josh Coalson</P>
+
 </BODY>
 </HTML>
index e5f1486b8b27b06f9e3631ee9365b51342263d45..36ef28b8ee9e4adb1696b9e383cb2fa94e96ca5f 100644 (file)
@@ -1,4 +1,10 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
+<!-- Copyright (c)  2000,2001  Josh Coalson -->
+<!-- Permission is granted to copy, distribute and/or modify this document -->
+<!-- under the terms of the GNU Free Documentation License, Version 1.1 -->
+<!-- or any later version published by the Free Software Foundation; -->
+<!-- with no invariant sections. -->
+<!-- A copy of the license can be found at http://www.gnu.org/copyleft/fdl.html -->
 <HTML>
 <HEAD>
        <TITLE>FLAC - news</TITLE>
 
 </CENTER>
 
+<P>nbsp;Copyright (c) 2000,2001 Josh Coalson</P>
+
 </BODY>
 </HTML>
index 172f5bbcd761e4ebb9ae87ae601f51bf723759d1..7bfd4f7e0263fd29d54b775015a6fe5581838b24 100644 (file)
@@ -1,3 +1,20 @@
+#  flac - Command-line FLAC encoder/decoder
+#  Copyright (C) 2000,2001  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.
+
 includedir = ${prefix}/include/FLAC
 
 include_HEADERS = all.h \
index c16e944de85f720015c703497d9cf5c7de29099a..77add5db924b9532c60b32d4c956bec3ebd44c3f 100644 (file)
@@ -1 +1,19 @@
+#  libFLAC - Free Lossless Audio Codec library
+#  Copyright (C) 2001  Josh Coalson
+#
+#  This library is free software; you can redistribute it and/or
+#  modify it under the terms of the GNU Library General Public
+#  License as published by the Free Software Foundation; either
+#  version 2 of the License, or (at your option) any later version.
+#
+#  This library 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
+#  Library General Public License for more details.
+#
+#  You should have received a copy of the GNU Library General Public
+#  License along with this library; if not, write to the
+#  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+#  Boston, MA  02111-1307, USA.
+
 SUBDIRS = FLAC
index 5ecbf6a0c8f663970edde63ffda0a66e9d9bd7b2..747e418a5deec71ed7eaadecdd5bac18931d889c 100644 (file)
@@ -1,3 +1,20 @@
+#  flac - Command-line FLAC encoder/decoder
+#  Copyright (C) 2000,2001  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.
+
 flac.1: flac.sgml
        docbook-to-man $< > $@
 
index 4908ebd09d35ebbe149617f4aeb5a79c4d4e133d..6d2cd9ddc7102a217817c92134d68e56f8b243cd 100644 (file)
@@ -1,3 +1,20 @@
+#  FLAC - Free Lossless Audio Codec
+#  Copyright (C) 2001  Josh Coalson
+#
+#  This program is part of FLAC; 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.
+
 if FLaC__HAS_XMMS
 XMMS_DIRS = plugin_xmms
 endif
index 849f22a042a4f3f7d0c139f450749a3f58116935..5d762d0322019e80e97f201d4c7b9a45198f8646 100644 (file)
@@ -1,3 +1,20 @@
+#  flac - Command-line FLAC encoder/decoder
+#  Copyright (C) 2000,2001  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.
+
 bin_PROGRAMS = flac
 CFLAGS = @CFLAGS@
 
index 2ee8a100d0094fd44de49317c495514b9d1ac8a3..40b55fa2352f5856218feea034ef3e7a72a44b2f 100644 (file)
@@ -1,3 +1,20 @@
+#  flac - Command-line FLAC encoder/decoder
+#  Copyright (C) 2000,2001  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.
+
 #
 # GNU makefile
 #
index 68d97102eb1b8ced3d7282a25f74f382999733d3..9706fc62cc81734f9a8ae47feb0dd2a49f5689b6 100644 (file)
@@ -1,3 +1,20 @@
+#  flac - Command-line FLAC encoder/decoder\r
+#  Copyright (C) 2000,2001  Josh Coalson\r
+#\r
+#  This program is free software; you can redistribute it and/or\r
+#  modify it under the terms of the GNU General Public License\r
+#  as published by the Free Software Foundation; either version 2\r
+#  of the License, or (at your option) any later version.\r
+#\r
+#  This program is distributed in the hope that it will be useful,\r
+#  but WITHOUT ANY WARRANTY; without even the implied warranty of\r
+#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
+#  GNU General Public License for more details.\r
+#\r
+#  You should have received a copy of the GNU General Public License\r
+#  along with this program; if not, write to the Free Software\r
+#  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.\r
+\r
 !include <win32.mak>\r
 \r
 !IFDEF DEBUG\r
index e062d6c926a238c86d3fc24f68355e36851b82e2..c5223bd27c3a5b7e2928ba1c47a43b13250c9c86 100644 (file)
@@ -1,3 +1,21 @@
+#  libFLAC - Free Lossless Audio Codec library
+#  Copyright (C) 2001  Josh Coalson
+#
+#  This library is free software; you can redistribute it and/or
+#  modify it under the terms of the GNU Library General Public
+#  License as published by the Free Software Foundation; either
+#  version 2 of the License, or (at your option) any later version.
+#
+#  This library 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
+#  Library General Public License for more details.
+#
+#  You should have received a copy of the GNU Library General Public
+#  License along with this library; if not, write to the
+#  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+#  Boston, MA  02111-1307, USA.
+
 #
 # GNU makefile
 #
index c9c5e5f7dc91176dc0254364f2c779e7e829837f..635fed27c8701640494ba4df0912c264c8732160 100644 (file)
@@ -1,3 +1,21 @@
+#  libFLAC - Free Lossless Audio Codec library
+#  Copyright (C) 2001  Josh Coalson
+#
+#  This library is free software; you can redistribute it and/or
+#  modify it under the terms of the GNU Library General Public
+#  License as published by the Free Software Foundation; either
+#  version 2 of the License, or (at your option) any later version.
+#
+#  This library 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
+#  Library General Public License for more details.
+#
+#  You should have received a copy of the GNU Library General Public
+#  License along with this library; if not, write to the
+#  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+#  Boston, MA  02111-1307, USA.
+
 #
 # GNU makefile
 #
index e755fa8edaea852e527c9876ccf401a8e5781fdf..4ac2afffd5c0e7e767084ae08354de8e41d175fa 100644 (file)
@@ -1,3 +1,21 @@
+#  libFLAC - Free Lossless Audio Codec library\r
+#  Copyright (C) 2001  Josh Coalson\r
+#\r
+#  This library is free software; you can redistribute it and/or\r
+#  modify it under the terms of the GNU Library General Public\r
+#  License as published by the Free Software Foundation; either\r
+#  version 2 of the License, or (at your option) any later version.\r
+#\r
+#  This library is distributed in the hope that it will be useful,\r
+#  but WITHOUT ANY WARRANTY; without even the implied warranty of\r
+#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\r
+#  Library General Public License for more details.\r
+#\r
+#  You should have received a copy of the GNU Library General Public\r
+#  License along with this library; if not, write to the\r
+#  Free Software Foundation, Inc., 59 Temple Place - Suite 330,\r
+#  Boston, MA  02111-1307, USA.\r
+\r
 !include <win32.mak>\r
 \r
 NASM=nasmw\r
index 689720d9cab9a185cf1263cb39beb24440258c60..55ddad500e8c3e827b547edf3794cea82eb360e9 100644 (file)
@@ -1,3 +1,21 @@
+#  libFLAC - Free Lossless Audio Codec library
+#  Copyright (C) 2001  Josh Coalson
+#
+#  This library is free software; you can redistribute it and/or
+#  modify it under the terms of the GNU Library General Public
+#  License as published by the Free Software Foundation; either
+#  version 2 of the License, or (at your option) any later version.
+#
+#  This library 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
+#  Library General Public License for more details.
+#
+#  You should have received a copy of the GNU Library General Public
+#  License along with this library; if not, write to the
+#  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+#  Boston, MA  02111-1307, USA.
+
 # nasm build rule:
 %.lo: %.s
        $(NASM) -f elf -d ELF $< -o $@
index 64948e4cdede5e7f33cc6c77307559a07d2644b6..3f0fdcb13cd06af1efba8ac283010647a04f9db4 100644 (file)
@@ -1 +1,19 @@
+#  libFLAC - Free Lossless Audio Codec library
+#  Copyright (C) 2001  Josh Coalson
+#
+#  This library is free software; you can redistribute it and/or
+#  modify it under the terms of the GNU Library General Public
+#  License as published by the Free Software Foundation; either
+#  version 2 of the License, or (at your option) any later version.
+#
+#  This library 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
+#  Library General Public License for more details.
+#
+#  You should have received a copy of the GNU Library General Public
+#  License along with this library; if not, write to the
+#  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+#  Boston, MA  02111-1307, USA.
+
 SUBDIRS = private protected
index 0a04d1d5e18b1f66aed397d310da09e57a00f93a..a3bc2b16c2a68e992b812e658f34bdb2f81cf0aa 100644 (file)
@@ -1,3 +1,21 @@
+#  libFLAC - Free Lossless Audio Codec library
+#  Copyright (C) 2001  Josh Coalson
+#
+#  This library is free software; you can redistribute it and/or
+#  modify it under the terms of the GNU Library General Public
+#  License as published by the Free Software Foundation; either
+#  version 2 of the License, or (at your option) any later version.
+#
+#  This library 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
+#  Library General Public License for more details.
+#
+#  You should have received a copy of the GNU Library General Public
+#  License along with this library; if not, write to the
+#  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+#  Boston, MA  02111-1307, USA.
+
 noinst_HEADERS = bitbuffer.h \
        all.h \
        bitmath.h \
index 09f8c73d25262dc82523b1166dd28b2788b8a0ad..7dd4216632666c7283b1260d041d43c32e743757 100644 (file)
@@ -1 +1,19 @@
+#  libFLAC - Free Lossless Audio Codec library
+#  Copyright (C) 2001  Josh Coalson
+#
+#  This library is free software; you can redistribute it and/or
+#  modify it under the terms of the GNU Library General Public
+#  License as published by the Free Software Foundation; either
+#  version 2 of the License, or (at your option) any later version.
+#
+#  This library 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
+#  Library General Public License for more details.
+#
+#  You should have received a copy of the GNU Library General Public
+#  License along with this library; if not, write to the
+#  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+#  Boston, MA  02111-1307, USA.
+
 noinst_HEADERS = stream_decoder.h
index a06972e61be3dadc6d4e82dc1f9b2017a728d991..e1285a219214ff0c24758ba167ebce0648eee36b 100644 (file)
@@ -1,3 +1,20 @@
+#  metaflac - Command-line FLAC metadata editor
+#  Copyright (C) 2000,2001  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.
+
 bin_PROGRAMS = metaflac
 CFLAGS = @CFLAGS@
 
index 11c5be9d0633ff5971ef806afbb7b215ddee664d..537d12ef5936e9d79150b41fd84fa7fd9ab1587d 100644 (file)
@@ -1,3 +1,20 @@
+#  metaflac - Command-line FLAC metadata editor
+#  Copyright (C) 2000,2001  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.
+
 #
 # GNU makefile
 #
index 239aefac2c9ad24db8cfc9270f398955404f48fd..f9994ea783283e4fb12ec16dc6145d8980eb47b5 100644 (file)
@@ -1,3 +1,20 @@
+#  metaflac - Command-line FLAC metadata editor\r
+#  Copyright (C) 2000,2001  Josh Coalson\r
+#\r
+#  This program is free software; you can redistribute it and/or\r
+#  modify it under the terms of the GNU General Public License\r
+#  as published by the Free Software Foundation; either version 2\r
+#  of the License, or (at your option) any later version.\r
+#\r
+#  This program is distributed in the hope that it will be useful,\r
+#  but WITHOUT ANY WARRANTY; without even the implied warranty of\r
+#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
+#  GNU General Public License for more details.\r
+#\r
+#  You should have received a copy of the GNU General Public License\r
+#  along with this program; if not, write to the Free Software\r
+#  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.\r
+\r
 !include <win32.mak>\r
 \r
 !IFDEF DEBUG\r
index 8b5cf35761f04cc40d754ad1299efb9994a062d6..57de4137a374331efc025525d1dfd004df61e406 100644 (file)
@@ -1,3 +1,20 @@
+#  in_flac - Winamp2 FLAC input plugin
+#  Copyright (C) 2000,2001  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.vc \
        in2.h \
        in_flac.c \
index 83836dc6e08ac0a25cedaf5c251f4f9365bb8ed4..227eda100589fb1d074eddcec74812f0e768c55b 100644 (file)
@@ -1,3 +1,20 @@
+#  in_flac - Winamp2 FLAC input plugin\r
+#  Copyright (C) 2000,2001  Josh Coalson\r
+#\r
+#  This program is free software; you can redistribute it and/or\r
+#  modify it under the terms of the GNU General Public License\r
+#  as published by the Free Software Foundation; either version 2\r
+#  of the License, or (at your option) any later version.\r
+#\r
+#  This program is distributed in the hope that it will be useful,\r
+#  but WITHOUT ANY WARRANTY; without even the implied warranty of\r
+#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
+#  GNU General Public License for more details.\r
+#\r
+#  You should have received a copy of the GNU General Public License\r
+#  along with this program; if not, write to the Free Software\r
+#  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.\r
+\r
 !include <win32.mak>\r
 \r
 !IFDEF DEBUG\r
index b4df0d977ebb0d33ca6c53a9d7c73d26cb8e570b..0074ebfef8dcb39d98a47709ba9ed919183df26e 100644 (file)
@@ -1,3 +1,20 @@
+#  in_flac - Winamp3 FLAC input plugin
+#  Copyright (C) 2001  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.vc \
        core_api.h \
        in_flac.cpp
index 9364844e40d7ef880665a0562c33f5f68a9fedac..1b33ec737f2a711c462b849c7e2dd9494832ee91 100644 (file)
@@ -1,3 +1,20 @@
+#  in_flac - Winamp3 FLAC input plugin\r
+#  Copyright (C) 2001  Josh Coalson\r
+#\r
+#  This program is free software; you can redistribute it and/or\r
+#  modify it under the terms of the GNU General Public License\r
+#  as published by the Free Software Foundation; either version 2\r
+#  of the License, or (at your option) any later version.\r
+#\r
+#  This program is distributed in the hope that it will be useful,\r
+#  but WITHOUT ANY WARRANTY; without even the implied warranty of\r
+#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
+#  GNU General Public License for more details.\r
+#\r
+#  You should have received a copy of the GNU General Public License\r
+#  along with this program; if not, write to the Free Software\r
+#  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.\r
+\r
 !include <win32.mak>\r
 \r
 !IFDEF DEBUG\r
index 9d956591753ccc68025cc8d0e2031949ce3abf8a..8f03aa70e5aa0c44744c3fa576e0af66a07084bf 100644 (file)
@@ -1,3 +1,4 @@
+/* in_flac - Winamp3 FLAC input plugin
  * Copyright (C) 2001  Josh Coalson
  *
  * This program is free software; you can redistribute it and/or
index b6bbf45a3e31283066e39f0d3fec1f0425943943..3d53efcdd03fde361ea26c3cabbc98df57ddc9c4 100644 (file)
@@ -1,3 +1,20 @@
+#  libxmms-flac - XMMS FLAC input plugin
+#  Copyright (C) 2000,2001  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.
+
 #
 # GNU makefile
 #
index a50821c24953d31f03f057d8fb01905b24b74ac0..cdb6a31de680b44f830d6f205994e8edde849712 100644 (file)
@@ -1,3 +1,20 @@
+#  libxmms-flac - XMMS FLAC input plugin
+#  Copyright (C) 2000,2001  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.
+
 #
 # GNU makefile
 #
index 8080d3b95a9d3f23242d314398972231640356c4..2dc3b74d356cef741fa1922a9572cbf4f9aa1753 100644 (file)
@@ -1,3 +1,20 @@
+#  test_streams - Simple test pattern generator
+#  Copyright (C) 2000,2001  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.
+
 CFLAGS = @CFLAGS@
 
 noinst_PROGRAMS = test_streams
index e64e3d13afc97764535f9cd2282b73fa84e23068..cd71eb1cf243b0739b096f63b1d31cda64281db4 100644 (file)
@@ -1,3 +1,20 @@
+#  test_streams - Simple test pattern generator
+#  Copyright (C) 2000,2001  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.
+
 #
 # GNU makefile
 #
index 3b7dd6b0cf6f7f4f6b9a121ef2496c49032efb25..5e7fe788e4eca41dcdd1f9272508c405b0937d89 100644 (file)
@@ -1,3 +1,20 @@
+#  test_unit - Simple FLAC unit tester
+#  Copyright (C) 2000,2001  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.
+
 CFLAGS = @CFLAGS@
 INCLUDES = -I$(top_srcdir)/src/libFLAC/include
 
index b1892eab05e1839f9ee9df5cf04c1baa1b9bf6b1..9874bb3b1f00af62d743f2febd90759d88811517 100644 (file)
@@ -1,3 +1,20 @@
+#  test_unit - Simple FLAC unit tester
+#  Copyright (C) 2000,2001  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.
+
 #
 # GNU makefile
 #
index 19749e078bfd4b499fbde7ac1358b1d95ab2bf1d..55a9d5df65e7d3503de603e2811fd64e4a3d393f 100644 (file)
@@ -1,3 +1,20 @@
+#  FLAC - Free Lossless Audio Codec
+#  Copyright (C) 2001  Josh Coalson
+#
+#  This program is part of FLAC; 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.
+
 TESTS = ./test_unit.sh ./test_streams.sh ./test_bins.sh
 
 CLEANFILES = $(wildcard *.raw) $(wildcard *.flac) $(wildcard *.cmp) \
index 0f09e93ce62f8189ed6495ce1e3388b0b9323c96..0fcb1c00ed9d7674b421b56f2fecfe194bd77bd7 100644 (file)
@@ -1,3 +1,20 @@
+#  FLAC - Free Lossless Audio Codec
+#  Copyright (C) 2001  Josh Coalson
+#
+#  This program is part of FLAC; 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.
+
 #
 # GNU makefile
 #
index 3b28b291b0276e9acaaef6c6acdae469f21dfad8..030d835ef500e1737f071d112e9d2fbded651c8b 100755 (executable)
@@ -1,5 +1,22 @@
 #!/bin/sh
 
+#  FLAC - Free Lossless Audio Codec
+#  Copyright (C) 2001  Josh Coalson
+#
+#  This program is part of FLAC; 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.
+
 LD_LIBRARY_PATH=../src/libFLAC/.libs:../obj/lib:$LD_LIBRARY_PATH
 export LD_LIBRARY_PATH
 PATH=../src/flac:../obj/bin:$PATH
index ae10b6568daae18853910b740f204721c1642521..3ec929236b118041e43ee3a22b6414a1c6b9af21 100755 (executable)
@@ -1,5 +1,22 @@
 #!/bin/sh
 
+#  FLAC - Free Lossless Audio Codec
+#  Copyright (C) 2001  Josh Coalson
+#
+#  This program is part of FLAC; 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.
+
 LD_LIBRARY_PATH=../src/libFLAC/.libs:../obj/lib:$LD_LIBRARY_PATH
 export LD_LIBRARY_PATH
 PATH=../src/flac:../src/test_streams:../obj/bin:$PATH
index a577f75dc7e581235d18ac58d4639c89992f4299..7311007c7092adaa1cff70a5ca5c911bf1c183d7 100755 (executable)
@@ -1,5 +1,22 @@
 #!/bin/sh
 
+#  FLAC - Free Lossless Audio Codec
+#  Copyright (C) 2001  Josh Coalson
+#
+#  This program is part of FLAC; 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.
+
 LD_LIBRARY_PATH=../src/libFLAC/.libs:../obj/lib:$LD_LIBRARY_PATH
 export LD_LIBRARY_PATH
 PATH=../src/test_unit:../obj/bin:$PATH