Line | |
---|
1 | AC_INIT(tuxbox-apps-titan,0.0.1,,tuxbox-titan) |
---|
2 | AM_INIT_AUTOMAKE(tuxbox-titan,0.0.1) |
---|
3 | |
---|
4 | TUXBOX_BOXTYPE |
---|
5 | |
---|
6 | AC_PROG_CC |
---|
7 | AC_PROG_CXX |
---|
8 | #AM_PROG_LIBTOOL |
---|
9 | |
---|
10 | AC_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]) |
---|
17 | AM_CONDITIONAL([ENABLE_MULTICOM324], [test x$enable_multicom324 = xtrue]) |
---|
18 | AC_SUBST(MULTICOM324) |
---|
19 | |
---|
20 | AC_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]) |
---|
25 | AM_CONDITIONAL(ENABLE_EPLAYER3,test "$enable_eplayer3" = "yes") |
---|
26 | AC_SUBST(EPLAYER3) |
---|
27 | |
---|
28 | AC_MSG_RESULT([ |
---|
29 | summary: |
---|
30 | ---------------------------------------- |
---|
31 | Boxtype : $BOXTYPE |
---|
32 | Multicom324 : $enable_multicom324 |
---|
33 | libeplayer3 : $enable_eplayer3 |
---|
34 | ]) |
---|
35 | |
---|
36 | AC_OUTPUT([ |
---|
37 | Makefile |
---|
38 | titan/Makefile |
---|
39 | ]) |
---|
Note: See
TracBrowser
for help on using the repository browser.