summaryrefslogtreecommitdiffstats
path: root/bootstrap.sh
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2008-07-27 19:29:25 +0200
committerLennart Poettering <lennart@poettering.net>2008-07-27 19:29:25 +0200
commit4dd29bd208da723f8f462f31ff7c915d23be0675 (patch)
tree0c5b5192c853d763f2bd87a39648a594127ef42c /bootstrap.sh
parentd236c1f4dd33a8530de9ef7c09185f0b783cd97d (diff)
remove bootstrap.sh
Diffstat (limited to 'bootstrap.sh')
-rwxr-xr-xbootstrap.sh32
1 files changed, 0 insertions, 32 deletions
diff --git a/bootstrap.sh b/bootstrap.sh
deleted file mode 100755
index fe33151..0000000
--- a/bootstrap.sh
+++ /dev/null
@@ -1,32 +0,0 @@
-# This file is part of libasyncns.
-#
-# Copyright 2005-2008 Lennart Poettering
-#
-# libasyncns 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.1 of the
-# License, or (at your option) any later version.
-#
-# libasyncns 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
-# Lesser General Public License for more details.
-#
-# You should have received a copy of the GNU Lesser General Public
-# License along with libasyncns. If not, see
-# <http://www.gnu.org/licenses/>.
-
-FLAGS="--sysconfdir=/etc"
-
-case `uname -s` in
- Darwin)
- export LIBTOOLIZE=/opt/local/bin/glibtoolize
- export PKG_CONFIG_PATH="/opt/local/lib/pkgconfig"
- FLAGS="$FLAGS --prefix=/opt/local"
- ;;
- FreeBSD)
- cp /usr/local/share/aclocal/libtool15.m4 common/
- ;;
-esac
-
-CFLAGS="$CFLAGS -g -O0" exec ./autogen.sh $FLAGS "$@"