source: titan/plugins/configure.ac @ 36503

Last change on this file since 36503 was 36500, checked in by obi, 8 years ago

fix

File size: 1.1 KB
Line 
1AC_INIT(tuxbox-apps-titan-plugins,0.0.1,,tuxbox-titan-plugins)
2AM_INIT_AUTOMAKE(tuxbox-titan-plugins,0.0.1)
3
4TUXBOX_APPS
5
6AC_PROG_CC
7AC_PROG_CXX
8AM_PROG_LIBTOOL
9
10AC_ARG_ENABLE([multicom322],
11        [AS_HELP_STRING(--enable-multicom322,    enable multicom322 stuff)],
12        [case "${enableval}" in
13                yes) enable_multicom322=true ;;
14                no) enable_multicom322=false ;;
15                *) AC_MSG_ERROR([bad value ${enableval} for --enable-multicom322]) ;;
16        esac])
17AM_CONDITIONAL([ENABLE_MULTICOM322], [test x$enable_multicom322 = xtrue])
18AC_SUBST(MULTICOM322)
19
20AC_ARG_ENABLE([multicom324],
21        [AS_HELP_STRING(--enable-multicom324,    enable multicom324 stuff)],
22        [case "${enableval}" in
23                yes) enable_multicom324=true ;;
24                no) enable_multicom324=false ;;
25                *) AC_MSG_ERROR([bad value ${enableval} for --enable-multicom324]) ;;
26        esac])
27AM_CONDITIONAL([ENABLE_MULTICOM324], [test x$enable_multicom324 = xtrue])
28AC_SUBST(MULTICOM324)
29
30
31
32AC_OUTPUT([
33Makefile
34tinews/Makefile
35tithek/Makefile
36])
Note: See TracBrowser for help on using the repository browser.