View Issue Details

IDProjectCategoryView StatusLast Update
0002976unrealinstallingpublic2006-09-25 20:00
Reporterbuildsmart Assigned To 
PrioritynormalSeveritymajorReproducibilityalways
Status closedResolutionno change required 
Product Version3.2.4 
Summary0002976: --enable-libcurl= test is invalid
DescriptionThe following excerpt is taken from the configure script:

                if test "x`echo $CURLLIBS |grep .*ares.*`" = x ; then
            CURLLIBS="$CURLLIBS -lares"
        fi

This validates the libares library incorrectly.
Additional InformationThe following change causes the correct library validation:

        if test "x`echo $CURLLIBS |grep .*ares.*`" != x ; then
              CURLLIBS="$CURLLIBS -lares"
        fi
3rd party modules

Activities

syzop

2006-09-25 20:00

administrator   ~0012433

No longer relevant as of 3.2.5+.

Issue History

Date Modified Username Field Change
2006-06-16 12:42 buildsmart New Issue
2006-09-25 20:00 syzop Status new => closed
2006-09-25 20:00 syzop Note Added: 0012433
2006-09-25 20:00 syzop Resolution open => no change required