-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfigure.ac.all
108 lines (97 loc) · 2.88 KB
/
configure.ac.all
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.69])
AC_INIT([docker-centos], [0.1], [zeroc0d3.team@gmail.com])
AM_INIT_AUTOMAKE([foreign])
AM_MAINTAINER_MODE
AM_EXTRA_RECURSIVE_TARGETS([build pull])
# Checks for programs.
AC_PROG_INSTALL
AC_PROG_MAKE_SET
AC_CHECK_PROG(DOCKER, docker, yes, no)
if test x"$DOCKER" != x"yes" ; then
AC_MSG_ERROR([required program 'docker' not found])
fi
# Checks for libraries.
# Checks for header files.
# Checks for typedefs, structures, and compiler characteristics.
# Checks for library functions.
AC_ARG_VAR(TAG, tag of docker images)
AC_MSG_CHECKING([tag of docker images])
if test "x${TAG}" = "x"; then
AC_SUBST(TAG, latest)
fi
AC_MSG_RESULT([${TAG}])
AC_ARG_VAR(CLEAN_OPTIONS, clean options)
AC_ARG_VAR(BUILD_OPTIONS, build options)
AC_ARG_VAR(PULL_OPTIONS, pull options)
AC_CONFIG_FILES([
Makefile
centos-base/Makefile
centos-base-consul/Makefile
centos-consul/Makefile
centos-base-workspace/Makefile
centos-base-workspace-lite/Makefile
centos-application/Makefile
centos-application-lite/Makefile
centos-build/Makefile
centos-build-make/Makefile
centos-build-make-gcc/Makefile
centos-build-make-terraform/Makefile
centos-build-maven/Makefile
centos-build-npm/Makefile
centos-archiva/Makefile
centos-awscli/Makefile
centos-cli53/Makefile
centos-consul/Makefile
centos-dnsmasq/Makefile
centos-dockercompose/Makefile
centos-dockermachine/Makefile
centos-dynamodb/Makefile
centos-elasticsearch/Makefile
centos-fabric/Makefile
centos-git/Makefile
centos-haproxy/Makefile
centos-hostapd/Makefile
centos-java/Makefile
centos-jenkins/Makefile
centos-jetty/Makefile
centos-kibana/Makefile
centos-logstash/Makefile
centos-mariadb/Makefile
centos-nginx/Makefile
centos-nodejs/Makefile
centos-openssh/Makefile
centos-perl/Makefile
centos-php/Makefile
centos-phpmyadmin/Makefile
centos-portainer/Makefile
centos-postfix/Makefile
centos-postgresql/Makefile
centos-python/Makefile
centos-rabbitmq/Makefile
centos-rabbitmqadmin/Makefile
centos-redis/Makefile
centos-registry/Makefile
centos-rng/Makefile
centos-rslsync/Makefile
centos-rsyslog/Makefile
centos-ruby/Makefile
centos-spark/Makefile
centos-strongswan/Makefile
centos-syncthing/Makefile
centos-terraform/Makefile
centos-tomcat/Makefile
centos-unbound/Makefile
centos-zabbix-agent/Makefile
centos-zabbix-frontend-php/Makefile
centos-zabbix-java-gateway/Makefile
centos-zabbix-monitor/Makefile
centos-zabbix-proxy-mysql/Makefile
centos-zabbix-proxy-pgsql/Makefile
centos-zabbix-proxy-sqlite3/Makefile
centos-zabbix-server-mysql/Makefile
centos-zabbix-server-pgsql/Makefile
centos-zabbix-server-sqlite3/Makefile
])
AC_OUTPUT