~ubuntu-branches/ubuntu/dapper/freeradius/dapper-updates

« back to all changes in this revision

Viewing changes to src/modules/rlm_eap/types/rlm_eap_sim/configure.in

  • Committer: Bazaar Package Importer
  • Author(s): Paul Hampson
  • Date: 2006-01-15 13:34:13 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20060115133413-92geefww41y7hqi8
Tags: 1.1.0-1
* ReDebianise upstream tarball:
  - Deleted RFCs: 2243 2289 2433 2548 2618 2619 2620 2621 2716 2759 2809 2865
                  2866 2867 2868 2869 2882 2924 3162 3575 3576 3579 3580
                  draft-kamath-pppext-eap-mschapv2-00

* New FreeRADIUS modules marked stable by new upstream release
  - rlm_perl
  - rlm_sqlcounter
  - rlm_sql_log + radsqlrelay
  - rlm_otp (formerly rlm_x99_token, not built as it depends on OpenSSL)

* Remove upstream-integrated patches:
  - 02_EAP-SIM_doesnt_need_openssl
  - 03_X99_is_not_stable
  - 07_manpage_fixups
  - 09_use_crypth_if_we_have_it
  - 10_escape_entire_ldap_string
  - 11_dont_xlat_possibly_bad_usernames_in_bad_accounting_packets
  - 12_dialup_admin_various_fixes

* More dialup-admin fixes from Arve Seljebu
  - Fix redirects in dialup-admin pages on servers with
    register_globals turned off.
    Closes: #333704
  - HTTP form fields will always fail is_int, use in_numeric instead
    Closes: #335149
  - Created 12_more_dialup_admin_various_fixes

* Update to Policy 3.6.2.0
* Upgrade Debhelper support to V5
* Don't install the .in files with the examples
* Prefer libmysqlclient15-dev
  Closes: #343779
* Shared secrets can only be 31 characters long, note this in clients.conf
  - Created 02_document_actual_shared_secret_maximum_length
  Closes: 344606
* Added support for lsb-init functions

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
AC_INIT(rlm_eap_sim.c)
2
 
AC_REVISION($Revision: 1.3 $)
 
2
AC_REVISION($Revision: 1.3.4.1 $)
3
3
AC_DEFUN(modname,[rlm_eap_sim])
4
4
 
5
5
fail=
9
9
 
10
10
        AC_PROG_CC
11
11
 
12
 
        dnl #
13
 
        dnl # extra argument: --openssl-includes=dir
14
 
        dnl #
15
 
        AC_ARG_WITH(openssl-includes,
16
 
        [  --with-openssl-includes=DIR       Directory to look for OpenSSL include files],
17
 
        [ case "$withval" in
18
 
            *)
19
 
                rlm_eap_peap_inc_dir="$rlm_eap_peap_inc_dir $withval"
20
 
                SMART_CFLAGS="$SMART_CFLAGS -I$withval"
21
 
                ;;
22
 
          esac ]
23
 
        )
24
 
 
25
 
        dnl #
26
 
        dnl # extra argument: --openssl-libraries=dir
27
 
        dnl #
28
 
        AC_ARG_WITH(openssl-libraries,
29
 
        [  --with-openssl-libraries=DIR      Directory to look for OpenSSL library files],
30
 
        [ case "$withval" in
31
 
            *)
32
 
                rlm_eap_peap_lib_dir="$rlm_eap_peap_lib_dir $withval"
33
 
                SMART_LIBS="$SMART_LIBS -L$withval"
34
 
                ;;
35
 
          esac ]
36
 
        )
37
 
 
38
 
        smart_try_dir=$rlm_eap_peap_inc_dir
39
 
        AC_SMART_CHECK_INCLUDE(openssl/ssl.h)
40
 
        if test "x$ac_cv_header_openssl_ssl_h" != "xyes"; then
41
 
                fail="$fail (openssl/ssl.h)"
42
 
        fi
43
 
 
44
 
        smart_try_dir=$rlm_eap_peap_lib_dir
45
 
        AC_SMART_CHECK_LIB(crypto, DH_new)
46
 
    if test "x$ac_cv_lib_crypto_DH_new" != "xyes"; then
47
 
            fail="$fail libcrypto"
48
 
    fi
49
 
 
50
 
        AC_SMART_CHECK_LIB(ssl, SSL_new)
51
 
    if test "x$ac_cv_lib_ssl_SSL_new" != "xyes"; then
52
 
            fail="$fail libssl"
53
 
    fi
54
 
 
55
 
        AC_CHECK_HEADERS( \
56
 
                openssl/err.h \
57
 
                openssl/engine.h \
58
 
        )
59
 
 
60
12
        targetname=modname
61
13
else
62
14
        targetname=
84
36
AC_SUBST(eap_sim_ldflags)
85
37
AC_SUBST(eap_sim_cflags)
86
38
AC_SUBST(targetname)
87
 
AC_CONFIG_HEADER([config.h])
88
39
AC_OUTPUT(Makefile)