Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure

    r8462239 rceebeb1  
    2020ipcsocket='/var/run/bitlbee.sock'
    2121pcdir='$prefix/lib/pkgconfig'
    22 systemlibdirs="/lib /lib64 /usr/lib /usr/lib64 /usr/local/lib /usr/local/lib64"
     22systemlibdirs="/lib /usr/lib /usr/local/lib"
    2323
    2424msn=1
     
    156156
    157157echo CFLAGS=$CFLAGS >> Makefile.settings
    158 echo CFLAGS+=-I`pwd` -I`pwd`/lib -I`pwd`/protocols -I. >> Makefile.settings
     158echo CFLAGS+=-I`pwd` -iquote`pwd`/lib -iquote`pwd`/protocols -I. >> Makefile.settings
    159159
    160160echo CFLAGS+=-DHAVE_CONFIG_H >> Makefile.settings
     
    295295detect_resolv_dynamic()
    296296{
    297         TMPFILE=$(mktemp)
    298         ret=1
    299         echo "$RESOLV_TESTCODE" | $CC -o $TMPFILE -x c - -lresolv >/dev/null 2>/dev/null
     297        echo "$RESOLV_TESTCODE" | $CC -o /dev/null -x c - -lresolv >/dev/null 2>/dev/null
    300298        if [ "$?" = "0" ]; then
    301299                echo 'EFLAGS+=-lresolv' >> Makefile.settings
    302                 ret=0
    303         fi
    304 
    305         rm -f $TMPFILE
    306         return $ret
     300                return 0
     301        fi
     302
     303        return 1
    307304}
    308305
    309306detect_resolv_static()
    310307{
    311         TMPFILE=$(mktemp)
    312         ret=1
    313308        for i in $systemlibdirs; do
    314309                if [ -f $i/libresolv.a ]; then
    315                         echo "$RESOLV_TESTCODE" | $CC -o $TMPFILE -x c - -Wl,$i/libresolv.a >/dev/null 2>/dev/null
     310                        echo "$RESOLV_TESTCODE" | $CC -o /dev/null -x c - -Wl,$i/libresolv.a >/dev/null 2>/dev/null
    316311                        if [ "$?" = "0" ]; then
    317312                                echo 'EFLAGS+='$i'/libresolv.a' >> Makefile.settings
    318                                 ret=0
     313                                return 0
    319314                        fi
    320315                fi
    321316        done
    322317
    323         rm -f $TMPFILE
    324         return $ret
     318        return 1
    325319}
    326320
Note: See TracChangeset for help on using the changeset viewer.