source: titan/configure.ac @ 40904

Last change on this file since 40904 was 31209, checked in by obi, 9 years ago

fix

File size: 994 bytes
Line 
1AC_INIT(tuxbox-apps-titan,0.0.1,,tuxbox-titan)
2AM_INIT_AUTOMAKE(tuxbox-titan,0.0.1)
3
4TUXBOX_BOXTYPE
5
6AC_PROG_CC
7AC_PROG_CXX
8#AM_PROG_LIBTOOL
9
10AC_ARG_ENABLE([multicom324],
11        [AS_HELP_STRING(--enable-multicom324,    enable multicom324 stuff)],
12        [case "${enableval}" in
13                yes) enable_multicom324=true ;;
14                no) enable_multicom324=false ;;
15                *) AC_MSG_ERROR([bad value ${enableval} for --enable-multicom324]) ;;
16        esac])
17AM_CONDITIONAL([ENABLE_MULTICOM324], [test x$enable_multicom324 = xtrue])
18AC_SUBST(MULTICOM324)
19
20AC_ARG_ENABLE(eplayer3,
21        AS_HELP_STRING(--enable-eplayer3,    enable eplayer3 support),
22        [case "${enableval}" in
23                yes) EPLAYER3=eplayer3 ;;
24        esac],[enable_eplayer3=no])
25AM_CONDITIONAL(ENABLE_EPLAYER3,test "$enable_eplayer3" = "yes")
26AC_SUBST(EPLAYER3)
27
28AC_MSG_RESULT([
29summary:
30----------------------------------------
31Boxtype          : $BOXTYPE
32Multicom324      : $enable_multicom324
33libeplayer3      : $enable_eplayer3
34])
35
36AC_OUTPUT([
37Makefile
38titan/Makefile
39plugins/Makefile
40])
Note: See TracBrowser for help on using the repository browser.