~ubuntu-branches/ubuntu/jaunty/lasso/jaunty

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Bazaar Package Importer
  • Author(s): Loic Pefferkorn
  • Date: 2005-11-25 19:20:59 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051125192059-m4894lhpynmkrmwr
Tags: 0.6.3-4ubuntu1
Resynchronise with Debian.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
dnl   first number.
16
16
dnl - Third number is the current API version implementation version number.
17
17
dnl See libtool explanations about current, age and release, later in this file.
18
 
AC_INIT([Liberty Alliance Single Sign On], 0.6.2, lasso-devel@lists.labs.libre-entreprise.org)
 
18
AC_INIT([Liberty Alliance Single Sign On], 0.6.3, lasso-devel@lists.labs.libre-entreprise.org)
19
19
dnl Check if autoconf ver > 2.53
20
20
AC_PREREQ(2.53)
21
21
dnl Check existence of a relative pathed source file.
22
22
AC_CONFIG_SRCDIR(lasso/lasso.c)
23
23
dnl Copy stamp REVISIO-INFO in the configure script.
24
 
AC_REVISION($Revision: 1.139 $)
 
24
AC_REVISION($Revision: 1.141 $)
25
25
 
26
26
dnl Run many macros mostly needed by configure.ac.
27
 
AM_INIT_AUTOMAKE(lasso, 0.6.2)
 
27
AM_INIT_AUTOMAKE(lasso, 0.6.3)
28
28
dnl Create rules to automaticaly regenerate the config header.
29
29
AM_CONFIG_HEADER(lasso/lasso_config.h)
30
30
dnl Add --enable-maintainer-mode option to configure.
444
444
# C# binding
445
445
# ----------
446
446
 
447
 
AC_ARG_ENABLE(csharp, [  --disable-csharp        disable the C Sharp binding],,
448
 
              enable_csharp="yes")
 
447
#AC_ARG_ENABLE(csharp, [  --disable-csharp        disable the C Sharp binding],,
 
448
#              enable_csharp="yes")
449
449
 
450
 
AC_ARG_WITH(cil-interpreter, [  --with-cil-interpreter=path     set location of CIL interpreter for CSharp],[CSHARPBIN="$withval"], [CSHARPBIN=])
451
 
AC_ARG_WITH(csharp-compiler, [  --with-csharp-compiler=path     set location of CSharp compiler],[CSHARPCOMPILERBIN="$withval"], [CSHARPCOMPILERBIN=])
 
450
#AC_ARG_WITH(cil-interpreter, [  --with-cil-interpreter=path     set location of CIL interpreter for CSharp],[CSHARPBIN="$withval"], [CSHARPBIN=])
 
451
#AC_ARG_WITH(csharp-compiler, [  --with-csharp-compiler=path     set location of CSharp compiler],[CSHARPCOMPILERBIN="$withval"], [CSHARPCOMPILERBIN=])
452
452
 
453
453
if test -z "$CSHARPCOMPILERBIN" ; then
454
454
  case $host in
462
462
 
463
463
CSHARPPATHSEPARATOR="/"
464
464
CSHARPCYGPATH_W=echo
465
 
if test -z "$CSHARPBIN" ; then
466
 
  languages_available="$languages_available C#($CSHARPCOMPILER)"
 
465
if false and test -z "$CSHARPBIN" ; then
 
466
  #languages_available="$languages_available C#($CSHARPCOMPILER)"
467
467
  CSHARPCILINTERPRETER=""
468
468
  if test "cscc" = "$CSHARPCOMPILER" ; then
469
469
    AC_CHECK_PROGS(CSHARPCILINTERPRETER, ilrun)
771
771
AC_CONFIG_FILES([lasso-src-config], [chmod +x lasso-src-config])
772
772
AC_OUTPUT(
773
773
[Makefile
774
 
csharp/Makefile
775
 
csharp/lasso-sharp.pc
776
774
docs/Makefile
777
775
docs/lasso-book/Makefile
778
776
docs/lasso-book/figures/Makefile
831
829
  
832
830
Available languages:    ${languages_available}
833
831
 
834
 
C# binding:             ${enable_csharp}
835
832
Java binding:           ${enable_java}
836
833
Perl binding:           ${enable_perl}
837
834
PHP binding:            ${enable_php}