aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Horn2008-02-26 16:55:58 +0000
committerMax Horn2008-02-26 16:55:58 +0000
commitda09e917e8ec5d7a2797fae21b2add46c5bbc572 (patch)
tree8cdef8fb4a5d6bca5272fc2ac9fa9c083ce58573
parent235d0221862ea7eb23ba32c9e10787af980e5c4d (diff)
downloadscummvm-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-xconfigure3
1 files changed, 3 insertions, 0 deletions
diff --git a/configure b/configure
index 95975a5f44..2c08c084b0 100755
--- a/configure
+++ b/configure
@@ -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"