Skip to content

Commit

Permalink
Don't pass `-mt' to gcc on Solaris.
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.testnett.uninett.no/radsecproxy/trunk@515 e88ac4ed-0b26-0410-9574-a7f39faa03bf
  • Loading branch information
linus authored and linus committed Mar 2, 2010
1 parent d582147 commit 317902c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -62,5 +62,6 @@
Fixed header files for FreeBSD
Fix for multiple UDP servers on same IP address, solves accounting
problems.
2009-09-11 1.3.2
2010-02-26 1.3.2
Fixed UDP fragmentation issue
Fix build on Solaris when compiling with gcc.
5 changes: 4 additions & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,10 @@ dnl Check if we're on Solaris and set CFLAGS accordingly
AC_CANONICAL_SYSTEM
case "${target_os}" in
solaris*)
TARGET_CFLAGS="-mt -DSYS_SOLARIS9 -D_POSIX_PTHREAD_SEMANTICS"
TARGET_CFLAGS="-DSYS_SOLARIS9 -D_POSIX_PTHREAD_SEMANTICS"
if test "$GCC" != yes ; then
TARGET_CFLAGS="$TARGET_CFLAGS -mt"
fi
TARGET_LDFLAGS="-lpthread -lsocket -lnsl"
;;
*)
Expand Down

0 comments on commit 317902c

Please sign in to comment.