From: linus Date: Wed, 31 Mar 2010 11:50:43 +0000 (+0000) Subject: Pass `-pthread' to gcc on Solaris. X-Git-Tag: radsecproxy-1.4-beta1~26 X-Git-Url: http://www.project-moonshot.org/gitweb/?a=commitdiff_plain;ds=sidebyside;h=730d77eec5daae3ed3c6509a1643f7c8ce27c445;p=radsecproxy.git Pass `-pthread' to gcc on Solaris. git-svn-id: https://svn.testnett.uninett.no/radsecproxy/trunk@537 e88ac4ed-0b26-0410-9574-a7f39faa03bf --- diff --git a/configure.ac b/configure.ac index c8dd005..7585a60 100644 --- a/configure.ac +++ b/configure.ac @@ -54,6 +54,8 @@ case "${target_os}" in TARGET_CFLAGS="-DSYS_SOLARIS9 -D_POSIX_PTHREAD_SEMANTICS" if test "$GCC" != yes ; then TARGET_CFLAGS="$TARGET_CFLAGS -mt" + else + TARGET_CFLAGS="$TARGET_CFLAGS -pthread" fi TARGET_LDFLAGS="-lpthread -lsocket -lnsl" ;;