File: autogen.sh

package info (click to toggle)
mailsync 5.2.2-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny, squeeze
  • size: 772 kB
  • ctags: 187
  • sloc: cpp: 2,103; ansic: 107; makefile: 86; sh: 9
file content (12 lines) | stat: -rwxr-xr-x 347 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

# needed for Gentoo to choose the right automake
WANT_AUTOMAKE=1.8
export WANT_AUTOMAKE

( automake --version | head -n 1 | grep -q ' 1\.[678]') || (echo "automake 1.6 or above is required"; exit 1)
aclocal -I acinclude     && \
autoheader               && \
automake -a              && \
autoconf                 && \
./configure "$@"