blob: 64e0d38c37c17e826f46df007867ef940a51bda6 (
plain)
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
47
48
49
50
|
To build Openbox from CVS you need:
A C Compiler (GNU GCC 3.2+ suggested)
GNU Gettext
GNU Autoconf 2.50+
GNU Automake 1.7+
GNU Libtool
Xft2 library/headers (devel package) (http://www.fontconfig.org)
Xlib library/headers (devel package)
Pkg-Config
Glib 2.0+ library/headers (devel package) (http://www.gtk.org)
libxml2 2.0+ library/headers (devel package)
Optionally, if you want to build the configuration tool (this is recommended):
GTK+ 2.0+ library/headers (devel package) (http://www.gtk.org)
I recommend the latest version of all these packages.
Do the following to build and install Openbox in CVS:
% ./bootstrap
% ./configure
% make all install
Don't try running it from the src/ directory without installing, it won't work.
It needs to be installed before it is run.
The installed binary is 'openbox3'.
----
In debian unstable, you want these packages:
gcc
gettext
automake1.7
autoconf
libtool
libxft2-dev
pkg-config
libglib2.0-dev
libxml2-dev
optionally:
libgtk2.0-dev
tip: run "update-alternatives --config automake" and select automake1.7 before
running ./configure
----
|