Hi all
> If so, I would
> suggest going through the autoconf process and then try to do the build
> again.
I think the INSTALL text file should tell us to run autoconf.
I certainly need to run it on FreeBSD before running ./configure
so generate a fresh script without all the linux specific parts.
So, here is a patch to INSTALL
to add the extra step.
Roger
Index: INSTALL
===================================================================
RCS file: /src/repository/freeamp/INSTALL,v
retrieving revision 1.15
diff -u -r1.15 INSTALL
--- INSTALL 2000/08/24 17:40:38 1.15
+++ INSTALL 2000/08/27 17:30:43
@@ -1,6 +1,6 @@
The installation of FreeAmp is fairly straight forward.
-Linux
+Linux / Unix
------------------------------------------------------------------------------
Preparations:
@@ -17,9 +17,13 @@
Building FreeAmp:
- Under Linux you must follow these steps to build the binary:
+ Under Linux / Unix you must follow these steps to build the binary:
- 1) ./configure
+ 1) autoconf
+ This will generate a tailer made configure script for your
+ Operating System
+
+ 2) ./configure
The configure script should be a fairly familiar thing. If it
fails to successfully complete, you're probably missing some
vital component. It will also warn you of any missing optional
@@ -27,15 +31,15 @@
software packages. Run ./configure --help to see the various
options you have in compiling FreeAmp.
- 2) make
+ 3) make
This will build the binary. If any problems occur here, send an
email detailing the errors to [EMAIL PROTECTED]
- 3) make install
+ 4) make install
This will install the binaries and plugins into /usr/local, or
to the directory you specified by running ./configure --prefix=foo
- 4) freeamp
+ 5) freeamp
Run it and enjoy =)
Windows