File: autogen.sh

package info (click to toggle)
mailsync 5.2.7-3.1
  • links: PTS
  • area: main
  • in suites: bookworm
  • size: 916 kB
  • sloc: sh: 3,519; cpp: 2,199; ansic: 107; makefile: 89
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 "$@"