2009-03-18 13:02:53 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
|
|
. config/options
|
|
|
|
|
|
|
|
|
|
$SCRIPTS/build toolchain
|
|
|
|
|
$SCRIPTS/build expat
|
2010-03-01 13:14:25 +01:00
|
|
|
$SCRIPTS/build libX11
|
2009-03-18 13:02:53 +01:00
|
|
|
|
2009-12-19 17:43:37 +01:00
|
|
|
export ac_cv_have_abstract_sockets=yes
|
2009-03-18 13:02:53 +01:00
|
|
|
|
2009-05-16 23:35:27 +02:00
|
|
|
cd $PKG_BUILD
|
2009-11-06 15:13:39 +01:00
|
|
|
|
2010-06-16 09:39:09 +02:00
|
|
|
$AUTORECONF
|
|
|
|
|
|
2009-11-06 15:13:39 +01:00
|
|
|
mkdir -p .build-target
|
|
|
|
|
cd .build-target
|
|
|
|
|
|
|
|
|
|
../configure --host=$TARGET_NAME \
|
|
|
|
|
--build=$HOST_NAME \
|
|
|
|
|
--prefix=/usr \
|
|
|
|
|
--sysconfdir=/etc \
|
2009-11-22 14:39:30 +01:00
|
|
|
--libexecdir=/usr/lib/dbus \
|
2009-11-06 15:13:39 +01:00
|
|
|
--localstatedir=/var \
|
|
|
|
|
--disable-static \
|
|
|
|
|
--enable-shared \
|
|
|
|
|
--disable-tests \
|
|
|
|
|
--disable-ansi \
|
|
|
|
|
--disable-verbose-mode \
|
|
|
|
|
--disable-asserts \
|
|
|
|
|
--disable-checks \
|
|
|
|
|
--disable-xml-docs \
|
|
|
|
|
--disable-doxygen-docs \
|
|
|
|
|
--disable-gcov \
|
|
|
|
|
--enable-abstract-sockets \
|
|
|
|
|
--disable-selinux \
|
|
|
|
|
--disable-libaudit \
|
2010-06-16 09:39:09 +02:00
|
|
|
--enable-dnotify \
|
2009-11-06 15:13:39 +01:00
|
|
|
--enable-inotify \
|
|
|
|
|
--with-xml=expat \
|
2010-03-01 13:14:25 +01:00
|
|
|
--with-x \
|
2009-11-06 15:13:39 +01:00
|
|
|
--with-dbus-user=dbus \
|
2009-03-18 13:02:53 +01:00
|
|
|
|
|
|
|
|
make
|
|
|
|
|
|
2009-11-06 15:13:39 +01:00
|
|
|
$MAKEINSTALL
|