forked from GENI-NSF/geni-ch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfigure.ac
More file actions
25 lines (21 loc) · 790 Bytes
/
configure.ac
File metadata and controls
25 lines (21 loc) · 790 Bytes
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
AC_INIT([geni-chapi], [2.11], [portal-help@geni.net])
AM_INIT_AUTOMAKE([foreign -Wall -Wno-portability])
AC_PROG_MKDIR_P
AC_PROG_INSTALL
AC_PROG_LN_S
AM_PATH_PYTHON([2.6])
gpolab=yes
AM_CONDITIONAL(GPO_LAB, [test x"$gpo_lab" = xyes])
AC_ARG_ENABLE([gpo_lab],
[ --enable-gpo-lab Turn on GPO Lab modifications],
[case "${enableval}" in
yes) gpo_lab=true ;;
no) gpo_lab=false ;;
*) AC_MSG_ERROR([bad value ${enableval} for --enable-gpo-lab]) ;;
esac],[gpo_lab=false])
AM_CONDITIONAL([GPO_LAB], [test x$gpo_lab = xtrue])
AM_CONDITIONAL(INSTALL_GITHASH, [test -f etc/geni-chapi-githash])
AC_CONFIG_FILES([Makefile plugins/Makefile tools/Makefile etc/Makefile])
AC_CONFIG_FILES([bin/Makefile man/Makefile data/Makefile db/Makefile])
AC_CONFIG_FILES([templates/Makefile])
AC_OUTPUT