blob: 870053b1210d3b0480a1351be58b3acbb86a73c7 (
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
51
52
53
54
55
56
57
58
59
60
61
62
|
#!/bin/sh
# $Id$
# This file is part of avahi.
#
# avahi is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as
# published by the Free Software Foundation; either version 2 of the
# License, or (at your option) any later version.
#
# avahi is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
# License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with avahi; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
# USA.
FLAGS="--sysconfdir=/etc --localstatedir=/var --enable-tests --enable-compat-howl --enable-compat-libdns_sd"
# Feel free to add your own custom flags in here -Lathiat
case `uname -s` in
Darwin)
export LIBTOOLIZE=/opt/local/bin/glibtoolize
export CFLAGS="-I/opt/local/include"
export LDFLAGS="-L/opt/local/lib"
export PKG_CONFIG_PATH="/opt/local/lib/pkgconfig"
FLAGS="$FLAGS --prefix=/opt/local --disable-pygtk"
;;
FreeBSD)
cp /usr/local/share/aclocal/libtool15.m4 common
cp /usr/local/share/aclocal/pkg.m4 common
export LIBTOOLIZE=/usr/local/bin/libtoolize15
export CFLAGS="-I/usr/local/include"
export LDFLAGS="-L/usr/local/lib"
export PKG_CONFIG_PATH="/usr/local/lib/pkgconfig"
FLAGS="$FLAGS --prefix=/opt/ --with-distro=none --disable-python --disable-dbus --disable-glib --disable-gtk"
;;
NetBSD)
export LIBTOOLIZE=libtoolize
export CFLAGS="-I/usr/pkg/include"
export LDFLAGS="-L/usr/pkg/lib"
export PKG_CONFIG_PATH="/usr/local/lib/pkgconfig"
FLAGS="$FLAGS --disable-monodoc --disable-mono --disable-qt3 --disable-qt4 --disable-xmltoman --prefix=/opt --with-distro=none --disable-python --disable-glib --disable-gtk --disable-manpages"
;;
Linux)
;;
esac
case "$USER" in
lathiat)
FLAGS="$FLAGS"
;;
sebest)
FLAGS="$FLAGS --disable-monodoc --disable-mono --disable-qt3 --disable-qt4 --sysconfdir=/etc --localstatedir=/var --prefix=/usr --disable-manpages --disable-xmltoman"
;;
esac
CFLAGS="$CFLAGS -g -O0" exec ./autogen.sh $FLAGS "$@"
|