aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorBastien Bouclet2016-08-31 08:09:36 +0200
committerBastien Bouclet2016-09-03 07:14:16 +0200
commitcd86de0dc2fc6508f93f93d0262ed7505f7f3069 (patch)
treeef728c71da464ea5defec12faa86fd2c2e4a256c /configure
parent4d11f2fbf0fb9826723f043574aafe909bca7b45 (diff)
downloadscummvm-rg350-cd86de0dc2fc6508f93f93d0262ed7505f7f3069.tar.gz
scummvm-rg350-cd86de0dc2fc6508f93f93d0262ed7505f7f3069.tar.bz2
scummvm-rg350-cd86de0dc2fc6508f93f93d0262ed7505f7f3069.zip
BUILD: Fix linking the PS3 build with SDL_Net
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 2 insertions, 0 deletions
diff --git a/configure b/configure
index 051c16462d..905a6d2bb7 100755
--- a/configure
+++ b/configure
@@ -2604,6 +2604,8 @@ case $_host_os in
append_var DEFINES "-DPLAYSTATION3"
append_var CXXFLAGS "-mcpu=cell -mminimal-toc -I$PSL1GHT/ppu/include -I$PS3DEV/portlibs/ppu/include"
append_var LDFLAGS "-L$PSL1GHT/ppu/lib -L$PS3DEV/portlibs/ppu/lib"
+ # The network libraries are statically linked and need to be specified in the following order
+ append_var SDL_NET_LIBS "-lSDL_net -lnet -lsysmodule"
add_line_to_config_mk 'PLAYSTATION3 = 1'
add_line_to_config_h "#define PREFIX \"${prefix}\""
;;