Changeset 1481

Show
Ignore:
Timestamp:
12/20/2006 08:47:23 AM (22 months ago)
Author:
jan
Message:

on freebsd aio-suspend is in the libc and we have to make sure that
-pthread is still passed appended to the LDFLAGS in that case

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/configure.in

    r1465 r1481  
    427427         AC_CHECK_HEADERS([aio.h],[ 
    428428                 if test "$ac_cv_search_aio_suspend" != no; then 
    429                    test "$ac_cv_search_aio_suspend" = "none required" || POSIX_AIO_LIB="$ac_cv_search_aio_suspend -pthread" 
     429                        if "$ac_cv_search_aio_suspend" = "none required"; then 
     430                                POSIX_AIO_LIB="$ac_cv_search_aio_suspend -pthread" 
     431                        else 
     432                                POSIX_AIO_LIB="-pthread" 
     433                        fi 
     434 
    430435                 fi 
    431436