Welcome to mirror list, hosted at ThFree Co, Russian Federation.

bootstrap.sh - github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 78949e4f4f1865ec7e702fe5e214224071a9664e (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
#!/bin/sh

# Run this script to generate 'configure'

usage()
{
	echo "usage: $0 [tests]"
	exit 1
}

case $# in
	0)
		# disable tests
		rm -f m4/conf_tests.m4
		;;
	1)
		[ $1 = "tests" ] || usage

		# enable tests
		cp -f tests/conf_tests.m4 m4/ || exit $?
		;;
	*)
		usage
		;;
esac

aclocal -I m4
autoconf
autoheader
automake -a
automake