File: README.autoconf

package info (click to toggle)
pd 0.32p1-5
  • links: PTS
  • area: main
  • in suites: woody
  • size: 4,704 kB
  • ctags: 5,418
  • sloc: ansic: 38,382; tcl: 1,036; makefile: 612; sh: 265
file content (46 lines) | stat: -rw-r--r-- 845 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46


To use the autoconf building process, all you have to do is basically:

1) Go to the src directory
2) issue the
./configure 
command. This command has several options, depending where you want
to have your pd installation or which special features you want.

 e.g.
# ./configure 
alone compiles pd which is, in turn installed into
/usr/local/bin etc by make install.

if you want to keep it in a local directory (without make install),
you can issue 
# ./configure --prefix=..

(note: the prefix is always the directory above the "bin" directory, so 
 for installation into /usr/bin .... do a 

# ./configure --prefix=/usr


other options
   ./configure --enable-rme
   ./configure --enable-alsa



3) type "make"

4) if you don't want tu use the local version, do a 
   "make install"


Guenter Geiger march 6 2001 <geiger@epy.co.at>