| 1 |
dnl configure.ac - Configure script for libvlc-cil |
|---|
| 2 |
|
|---|
| 3 |
dnl Process this file with GNU Autoconf to produce a configure script |
|---|
| 4 |
|
|---|
| 5 |
dnl *********************************************************************** |
|---|
| 6 |
dnl * Copyright © 2007 Rémi Denis-Courmont. * |
|---|
| 7 |
dnl * This program is free software; you can redistribute and/or modify * |
|---|
| 8 |
dnl * it under the terms of the GNU General Public License as published * |
|---|
| 9 |
dnl * by the Free Software Foundation; version 2 of the license, or (at * |
|---|
| 10 |
dnl * your option) any later version. * |
|---|
| 11 |
dnl * * |
|---|
| 12 |
dnl * This program is distributed in the hope that it will be useful, * |
|---|
| 13 |
dnl * but WITHOUT ANY WARRANTY; without even the implied warranty of * |
|---|
| 14 |
dnl * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * |
|---|
| 15 |
dnl * See the GNU General Public License for more details. * |
|---|
| 16 |
dnl * * |
|---|
| 17 |
dnl * You should have received a copy of the GNU General Public License * |
|---|
| 18 |
dnl * along with this program; if not, you can get it from: * |
|---|
| 19 |
dnl * http://www.gnu.org/copyleft/gpl.html * |
|---|
| 20 |
dnl *********************************************************************** |
|---|
| 21 |
|
|---|
| 22 |
AC_COPYRIGHT([Copyright (C) 2004-2007 Remi Denis-Courmont]) |
|---|
| 23 |
AC_INIT(libvlc-cil, 0.9.0, vlc-devel_no_bulk_mail@videolan.org) |
|---|
| 24 |
AC_PREREQ(2.50) |
|---|
| 25 |
|
|---|
| 26 |
AC_CONFIG_SRCDIR(configure.ac) |
|---|
| 27 |
AC_CONFIG_AUX_DIR(admin) |
|---|
| 28 |
AC_CONFIG_MACRO_DIR(m4) |
|---|
| 29 |
|
|---|
| 30 |
AC_ARG_VAR([CSC], [C sharp compiler command]) |
|---|
| 31 |
AC_ARG_VAR([CSFLAGS], [C sharp compiler flags]) |
|---|
| 32 |
AC_PATH_PROG([CSC], [gmcs csc], [false]) |
|---|
| 33 |
|
|---|
| 34 |
AC_ARG_VAR([DOXYGEN], [Doxygen command]) |
|---|
| 35 |
AC_PATH_PROG([DOXYGEN], [doxygen], [false]) |
|---|
| 36 |
|
|---|
| 37 |
AM_INIT_AUTOMAKE |
|---|
| 38 |
|
|---|
| 39 |
AC_CONFIG_FILES([Makefile m4/Makefile src/Makefile tests/Makefile Doxyfile]) |
|---|
| 40 |
AC_OUTPUT |
|---|