ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/configure
(Generate patch)

Comparing ircd-hybrid-8/configure (file contents):
Revision 1402 by michael, Wed May 9 18:42:45 2012 UTC vs.
Revision 1456 by michael, Mon Jul 2 18:21:40 2012 UTC

# Line 1 | Line 1
1   #! /bin/sh
2 < # From configure.ac Id: configure.ac 1373 2012-04-27 07:32:34Z michael .
2 > # From configure.ac Id: configure.ac 1454 2012-06-29 13:58:54Z michael .
3   # Guess values for system-dependent variables and create Makefiles.
4 < # Generated by GNU Autoconf 2.69 for ircd-hybrid 8beta1.
4 > # Generated by GNU Autoconf 2.69 for ircd-hybrid 8beta2.
5   #
6   # Report bugs to <bugs@ircd-hybrid.org>.
7   #
# Line 593 | Line 593 | MAKEFLAGS=
593   # Identity of this package.
594   PACKAGE_NAME='ircd-hybrid'
595   PACKAGE_TARNAME='ircd-hybrid'
596 < PACKAGE_VERSION='8beta1'
597 < PACKAGE_STRING='ircd-hybrid 8beta1'
596 > PACKAGE_VERSION='8beta2'
597 > PACKAGE_STRING='ircd-hybrid 8beta2'
598   PACKAGE_BUGREPORT='bugs@ircd-hybrid.org'
599   PACKAGE_URL=''
600  
# Line 729 | Line 729 | AMTAR
729   am__leading_dot
730   SET_MAKE
731   AWK
732 mkdir_p
732   MKDIR_P
733   INSTALL_STRIP_PROGRAM
734   STRIP
# Line 1367 | Line 1366 | if test "$ac_init_help" = "long"; then
1366    # Omit some internal or obsolete options to make the list less imposing.
1367    # This message is too long to be a string in the A/UX 3.1 sh.
1368    cat <<_ACEOF
1369 < \`configure' configures ircd-hybrid 8beta1 to adapt to many kinds of systems.
1369 > \`configure' configures ircd-hybrid 8beta2 to adapt to many kinds of systems.
1370  
1371   Usage: $0 [OPTION]... [VAR=VALUE]...
1372  
# Line 1437 | Line 1436 | fi
1436  
1437   if test -n "$ac_init_help"; then
1438    case $ac_init_help in
1439 <     short | recursive ) echo "Configuration of ircd-hybrid 8beta1:";;
1439 >     short | recursive ) echo "Configuration of ircd-hybrid 8beta2:";;
1440     esac
1441    cat <<\_ACEOF
1442  
# Line 1569 | Line 1568 | fi
1568   test -n "$ac_init_help" && exit $ac_status
1569   if $ac_init_version; then
1570    cat <<\_ACEOF
1571 < ircd-hybrid configure 8beta1
1571 > ircd-hybrid configure 8beta2
1572   generated by GNU Autoconf 2.69
1573  
1574   Copyright (C) 2012 Free Software Foundation, Inc.
# Line 2095 | Line 2094 | cat >config.log <<_ACEOF
2094   This file contains any messages produced by compilers while
2095   running configure, to aid debugging if configure makes a mistake.
2096  
2097 < It was created by ircd-hybrid $as_me 8beta1, which was
2097 > It was created by ircd-hybrid $as_me 8beta2, which was
2098   generated by GNU Autoconf 2.69.  Invocation command line was
2099  
2100    $ $0 $@
# Line 2827 | Line 2826 | fi
2826   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5
2827   $as_echo "$MKDIR_P" >&6; }
2828  
2830 mkdir_p="$MKDIR_P"
2831 case $mkdir_p in
2832  [\\/$]* | ?:[\\/]*) ;;
2833  */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;;
2834 esac
2835
2829   for ac_prog in gawk mawk nawk awk
2830   do
2831    # Extract the first word of "$ac_prog", so it can be a program name with args.
# Line 2937 | Line 2930 | fi
2930  
2931   # Define the identity of the package.
2932   PACKAGE='ircd-hybrid'
2933 < VERSION='8beta1'
2933 > VERSION='8beta2'
2934  
2935  
2936   cat >>confdefs.h <<_ACEOF
# Line 13778 | Line 13771 | fi
13771    { $as_echo "$as_me:${as_lineno-$LINENO}: result: found" >&5
13772   $as_echo "found" >&6; }
13773  
13774 <    { $as_echo "$as_me:${as_lineno-$LINENO}: checking for SSL_connect in -lssl" >&5
13775 < $as_echo_n "checking for SSL_connect in -lssl... " >&6; }
13776 < if ${ac_cv_lib_ssl_SSL_connect+:} false; then :
13774 >    { $as_echo "$as_me:${as_lineno-$LINENO}: checking for RSA_free in -lcrypto" >&5
13775 > $as_echo_n "checking for RSA_free in -lcrypto... " >&6; }
13776 > if ${ac_cv_lib_crypto_RSA_free+:} false; then :
13777    $as_echo_n "(cached) " >&6
13778   else
13779    ac_check_lib_save_LIBS=$LIBS
13780 < LIBS="-lssl  $LIBS"
13780 > LIBS="-lcrypto  $LIBS"
13781   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
13782   /* end confdefs.h.  */
13783  
# Line 13794 | Line 13787 | cat confdefs.h - <<_ACEOF >conftest.$ac_
13787   #ifdef __cplusplus
13788   extern "C"
13789   #endif
13790 < char SSL_connect ();
13790 > char RSA_free ();
13791   int
13792   main ()
13793   {
13794 < return SSL_connect ();
13794 > return RSA_free ();
13795    ;
13796    return 0;
13797   }
13798   _ACEOF
13799   if ac_fn_c_try_link "$LINENO"; then :
13800 <  ac_cv_lib_ssl_SSL_connect=yes
13800 >  ac_cv_lib_crypto_RSA_free=yes
13801   else
13802 <  ac_cv_lib_ssl_SSL_connect=no
13802 >  ac_cv_lib_crypto_RSA_free=no
13803   fi
13804   rm -f core conftest.err conftest.$ac_objext \
13805      conftest$ac_exeext conftest.$ac_ext
13806   LIBS=$ac_check_lib_save_LIBS
13807   fi
13808 < { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ssl_SSL_connect" >&5
13809 < $as_echo "$ac_cv_lib_ssl_SSL_connect" >&6; }
13810 < if test "x$ac_cv_lib_ssl_SSL_connect" = xyes; then :
13808 > { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_crypto_RSA_free" >&5
13809 > $as_echo "$ac_cv_lib_crypto_RSA_free" >&6; }
13810 > if test "x$ac_cv_lib_crypto_RSA_free" = xyes; then :
13811    cat >>confdefs.h <<_ACEOF
13812 < #define HAVE_LIBSSL 1
13812 > #define HAVE_LIBCRYPTO 1
13813   _ACEOF
13814  
13815 <  LIBS="-lssl $LIBS"
13815 >  LIBS="-lcrypto $LIBS"
13816  
13817   fi
13818  
13819 <    if test "$ac_cv_lib_ssl_SSL_connect" = "yes"; then :
13820 <  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for RSA_free in -lcrypto" >&5
13821 < $as_echo_n "checking for RSA_free in -lcrypto... " >&6; }
13822 < if ${ac_cv_lib_crypto_RSA_free+:} false; then :
13819 >    if test "$ac_cv_lib_crypto_RSA_free" = "yes"; then :
13820 >  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for SSL_connect in -lssl" >&5
13821 > $as_echo_n "checking for SSL_connect in -lssl... " >&6; }
13822 > if ${ac_cv_lib_ssl_SSL_connect+:} false; then :
13823    $as_echo_n "(cached) " >&6
13824   else
13825    ac_check_lib_save_LIBS=$LIBS
13826 < LIBS="-lcrypto  $LIBS"
13826 > LIBS="-lssl  $LIBS"
13827   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
13828   /* end confdefs.h.  */
13829  
# Line 13840 | Line 13833 | cat confdefs.h - <<_ACEOF >conftest.$ac_
13833   #ifdef __cplusplus
13834   extern "C"
13835   #endif
13836 < char RSA_free ();
13836 > char SSL_connect ();
13837   int
13838   main ()
13839   {
13840 < return RSA_free ();
13840 > return SSL_connect ();
13841    ;
13842    return 0;
13843   }
13844   _ACEOF
13845   if ac_fn_c_try_link "$LINENO"; then :
13846 <  ac_cv_lib_crypto_RSA_free=yes
13846 >  ac_cv_lib_ssl_SSL_connect=yes
13847   else
13848 <  ac_cv_lib_crypto_RSA_free=no
13848 >  ac_cv_lib_ssl_SSL_connect=no
13849   fi
13850   rm -f core conftest.err conftest.$ac_objext \
13851      conftest$ac_exeext conftest.$ac_ext
13852   LIBS=$ac_check_lib_save_LIBS
13853   fi
13854 < { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_crypto_RSA_free" >&5
13855 < $as_echo "$ac_cv_lib_crypto_RSA_free" >&6; }
13856 < if test "x$ac_cv_lib_crypto_RSA_free" = xyes; then :
13854 > { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ssl_SSL_connect" >&5
13855 > $as_echo "$ac_cv_lib_ssl_SSL_connect" >&6; }
13856 > if test "x$ac_cv_lib_ssl_SSL_connect" = xyes; then :
13857    cat >>confdefs.h <<_ACEOF
13858 < #define HAVE_LIBCRYPTO 1
13858 > #define HAVE_LIBSSL 1
13859   _ACEOF
13860  
13861 <  LIBS="-lcrypto $LIBS"
13861 >  LIBS="-lssl $LIBS"
13862  
13863   fi
13864  
# Line 13878 | Line 13871 | $as_echo "no - OpenSSL support disabled"
13871   fi
13872   fi
13873  
13874 < if test "$ac_cv_lib_crypto_RSA_free" = yes; then
13874 > if test "$ac_cv_lib_ssl_SSL_connect" = yes; then
13875    ENABLE_SSL_TRUE=
13876    ENABLE_SSL_FALSE='#'
13877   else
# Line 14382 | Line 14375 | fi
14375  
14376  
14377   cat >>confdefs.h <<_ACEOF
14378 < #define NICKLEN ($nicklen+1)
14378 > #define NICKLEN ($nicklen)
14379   _ACEOF
14380  
14381  
# Line 15100 | Line 15093 | cat >>$CONFIG_STATUS <<\_ACEOF || ac_wri
15093   # report actual input values of CONFIG_FILES etc. instead of their
15094   # values after options handling.
15095   ac_log="
15096 < This file was extended by ircd-hybrid $as_me 8beta1, which was
15096 > This file was extended by ircd-hybrid $as_me 8beta2, which was
15097   generated by GNU Autoconf 2.69.  Invocation command line was
15098  
15099    CONFIG_FILES    = $CONFIG_FILES
# Line 15166 | Line 15159 | _ACEOF
15159   cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
15160   ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
15161   ac_cs_version="\\
15162 < ircd-hybrid config.status 8beta1
15162 > ircd-hybrid config.status 8beta2
15163   configured by $0, generated by GNU Autoconf 2.69,
15164    with options \\"\$ac_cs_config\\"
15165  

Diff Legend

Removed lines
+ Added lines
< Changed lines (old)
> Changed lines (new)