Update of /cvsroot/mahogany/M
In directory sc8-pr-cvs1:/tmp/cvs-serv8750

Modified Files:
        configure configure.in 
Log Message:
avoid explicitly adding -I/usr/local/include when testing for SLL, this can break the 
check with newer gcc

Index: configure
===================================================================
RCS file: /cvsroot/mahogany/M/configure,v
retrieving revision 1.301
retrieving revision 1.302
diff -b -u -2 -r1.301 -r1.302
--- configure   30 Jul 2003 13:49:28 -0000      1.301
+++ configure   18 Aug 2003 14:58:09 -0000      1.302
@@ -2011,59 +2011,8 @@
 fi
 
-for ac_declaration in \
-   ''\
-   '#include <stdlib.h>' \
-   'extern "C" void std::exit (int) throw (); using std::exit;' \
-   'extern "C" void std::exit (int); using std::exit;' \
-   'extern "C" void exit (int) throw ();' \
-   'extern "C" void exit (int);' \
-   'void exit (int);'
-do
[...1071 lines suppressed...]
 set dummy latex2html; ac_word=$2
 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
-echo "configure:5317: checking for $ac_word" >&5
+echo "configure:5272: checking for $ac_word" >&5
 if eval "test \"`echo '$''{'ac_cv_path_LATEX2HTML'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
@@ -5409,5 +5364,5 @@
             if test "x$GXX" != "xyes"; then
        echo $ac_n "checking whether ${CXX} accepts ${DEPFLAGS}""... $ac_c" 1>&6
-echo "configure:5412: checking whether ${CXX} accepts ${DEPFLAGS}" >&5
+echo "configure:5367: checking whether ${CXX} accepts ${DEPFLAGS}" >&5
 if eval "test \"`echo '$''{'m_cv_cxx_depflags'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
@@ -5432,5 +5387,5 @@
        if test "x$GCC" != "xyes"; then
            echo $ac_n "checking whether ${CC} accepts ${DEPFLAGS}""... $ac_c" 1>&6
-echo "configure:5435: checking whether ${CC} accepts ${DEPFLAGS}" >&5
+echo "configure:5390: checking whether ${CC} accepts ${DEPFLAGS}" >&5
 if eval "test \"`echo '$''{'m_cv_c_depflags'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6

Index: configure.in
===================================================================
RCS file: /cvsroot/mahogany/M/configure.in,v
retrieving revision 1.286
retrieving revision 1.287
diff -b -u -2 -r1.286 -r1.287
--- configure.in        30 Jul 2003 13:20:48 -0000      1.286
+++ configure.in        18 Aug 2003 14:58:10 -0000      1.287
@@ -573,5 +573,11 @@
        /*/include) ssl_inc="$USE_SSL" ;;
        /*)     ssl_inc="$USE_SSL/include" ;;
-       *)      ssl_inc="$prefix/include" ;;
+       *)      # explicitly using -/usr/local/include is a bad idea with gcc,
+               # it complains about it ("changing the order of system
+               # directories search")
+               if "$prefix" != "/usr/local"; then
+                   ssl_inc="$prefix/include"
+               fi
+               ;;
        esac
 



-------------------------------------------------------
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01
_______________________________________________
Mahogany-cvsupdates mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/mahogany-cvsupdates

Reply via email to