]> git.meshlink.io Git - catta/blob - bootstrap.sh
put some useful info into the README
[catta] / bootstrap.sh
1 #!/bin/sh
2
3 # This file is part of avahi.
4 #
5 # avahi is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU Lesser General Public License as
7 # published by the Free Software Foundation; either version 2 of the
8 # License, or (at your option) any later version.
9 #
10 # avahi is distributed in the hope that it will be useful, but WITHOUT
11 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
13 # License for more details.
14 #
15 # You should have received a copy of the GNU Lesser General Public
16 # License along with avahi; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
18 # USA.
19
20 FLAGS="--sysconfdir=/etc --localstatedir=/var --enable-tests"
21
22 case `uname -s` in
23     Darwin)
24     export LIBTOOLIZE=/opt/local/bin/glibtoolize
25     export CFLAGS="-I/opt/local/include"
26     export LDFLAGS="-L/opt/local/lib"
27     export PKG_CONFIG_PATH="/opt/local/lib/pkgconfig"
28     FLAGS="$FLAGS --prefix=/opt/local"
29     ;;
30     FreeBSD)
31     cp /usr/local/share/aclocal/libtool15.m4 common
32     cp /usr/local/share/aclocal/pkg.m4 common
33     export LIBTOOLIZE=/usr/local/bin/libtoolize15
34     export CFLAGS="-I/usr/local/include"
35     export LDFLAGS="-L/usr/local/lib"
36     export PKG_CONFIG_PATH="/usr/local/lib/pkgconfig"
37     FLAGS="$FLAGS --prefix=/opt"
38     ;;
39     NetBSD)
40     export LIBTOOLIZE=libtoolize
41     export CFLAGS="-I/usr/pkg/include"
42     export LDFLAGS="-L/usr/pkg/lib"
43     export PKG_CONFIG_PATH="/usr/local/lib/pkgconfig"
44     FLAGS="$FLAGS --prefix=/opt"
45     ;;
46     Linux)
47     ;;
48 esac
49
50 CFLAGS="$CFLAGS -g -O0" exec ./autogen.sh $FLAGS "$@"