shithub: aacenc

Download patch

ref: 0feb3cab9fd2395f7de759c7dc36124a27269b9b
parent: 650d2c00d44f23a87b6bf225e66b06817227d0c9
author: knik <knik>
date: Sat May 10 11:41:56 EDT 2003

removed compilation instructions

--- a/README
+++ b/README
@@ -81,33 +81,7 @@
 RageOMatic (rageamp@realedge.com)
 thebard (wmilas@rarcoa.com)
 Ivan Dimkovic (dim@psytel-research.co.yu)
+Krzysztof Nikiel (knik@poczta.onet.pl)
 
 (If you feel your name should be here please mail me, I
 can't remember everyone)
-
-
-_________
-COMPILING
-
-Compiling under Unix. Taken from a message by ed at the audiocoding.com
-forum. Thanks!
-
-the linux tools are munted by the CR/LFs all over the place ... to make
-then happy once again, all lines need to be terminated by LF alone
-
-how to sort this problem ?, well stick the following script into a file,
-unzip faad, run the script on the faad directory (it'll recursively fix
-all files), then continue with sh bootstrap ....
-
-
-#!/bin/bash
-
-if [ -d $1 ]; then
-for i in $1/*; do
-./$0 $i
-done
-else
-mv $1 tmp
-cat tmp | tr -d \\r > $1
-rm tmp
-fi