summaryrefslogtreecommitdiffstats
path: root/bootstrap-configure
blob: c2188408dfb0243561a429de77ba7adef3434012 (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
#!/bin/sh

if [ -f config.status ]; then
	make maintainer-clean
fi

./bootstrap && \
    ./configure --enable-maintainer-mode \
		--enable-debug \
		--prefix=/usr \
		--mandir=/usr/share/man \
		--sysconfdir=/etc \
		--localstatedir=/var \
		--libexecdir=/lib \
		--enable-all \
		--enable-glib \
		--enable-network \
		--enable-input \
		--enable-audio \
		--enable-echo \
		--disable-configfiles \
		--disable-initscripts \
		--disable-pcmciarules \
		--disable-sdpd \
		--disable-cups $*