diff options
author | Max Horn | 2008-02-26 16:55:58 +0000 |
---|---|---|
committer | Max Horn | 2008-02-26 16:55:58 +0000 |
commit | da09e917e8ec5d7a2797fae21b2add46c5bbc572 (patch) | |
tree | 8cdef8fb4a5d6bca5272fc2ac9fa9c083ce58573 | |
parent | 235d0221862ea7eb23ba32c9e10787af980e5c4d (diff) | |
download | scummvm-rg350-da09e917e8ec5d7a2797fae21b2add46c5bbc572.tar.gz scummvm-rg350-da09e917e8ec5d7a2797fae21b2add46c5bbc572.tar.bz2 scummvm-rg350-da09e917e8ec5d7a2797fae21b2add46c5bbc572.zip |
Added -lnsl -lsocket to the libs required when building for Solaris, partial fix for bug #1523129
svn-id: r30971
-rwxr-xr-x | configure | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -972,6 +972,7 @@ case $_host_os in ;; beos*) DEFINES="$DEFINES -DUNIX -DSYSTEM_NOT_SUPPORTING_D_TYPE" + # Needs -lbind -lsocket for the timidity MIDI driver LIBS="$LIBS -lbind -lsocket" type_1_byte='char' type_2_byte='short' @@ -979,6 +980,8 @@ case $_host_os in ;; solaris*) DEFINES="$DEFINES -DUNIX -DSYSTEM_NOT_SUPPORTING_D_TYPE" + # Needs -lbind -lsocket for the timidity MIDI driver + LIBS="$LIBS -lnsl -lsocket" ;; irix*) DEFINES="$DEFINES -DUNIX -DIRIX -DSYSTEM_NOT_SUPPORTING_D_TYPE" |