Skip to content

Commit

Permalink
Merge branch 'master' of github.com:wesnoth/wesnoth
Browse files Browse the repository at this point in the history
  • Loading branch information
AI0867 committed Jun 10, 2016
2 parents 75e2608 + d625798 commit 50e8fcd
Show file tree
Hide file tree
Showing 11 changed files with 29 additions and 4 deletions.
Expand Up @@ -139,6 +139,7 @@ This is the story of Kalenz, Landar, and of the Elves in the first days of the h
#### /Kalenz side ####

#### Landar's side ####
# wmllint: skip-side
{MP_SIDE 2 (
{PLAYABLE}
{LANDAR_YOUNG}
Expand Down
Expand Up @@ -70,6 +70,7 @@
[/event]
### /Kalenz's code ###

# wmllint: skip-side
{MP_SIDE 2 (
x=20
y=4
Expand Down
Expand Up @@ -80,6 +80,7 @@
{PLAYER_GOLD}
[/side]

# wmllint: skip-side
{MP_SIDE 2 (
no_leader=yes
{PLAYABLE}
Expand Down Expand Up @@ -136,6 +137,7 @@
# wmllint: recognize Galtrid
[/side]

# wmllint: skip-side
{MP_SIDE 4 (
no_leader=yes
previous_save_id=Landar
Expand Down
Expand Up @@ -76,13 +76,15 @@ Chapter Two"

#Landar's side

# wmllint: skip-side
{MP_SIDE 2 (
{LANDAR}
save_id=Landar
{PLAYABLE}
{PLAYER_GOLD}
)}

# wmllint: skip-side
{MP_SIDE 3 (
no_leader=yes
save_id=Cleodil
Expand Down
Expand Up @@ -86,6 +86,7 @@
#endif
[/side]

# wmllint: skip-side
{MP_SIDE 2 (
no_leader=yes
{PLAYABLE}
Expand All @@ -98,6 +99,7 @@
[/unit]
)}

# wmllint: skip-side
{MP_SIDE 3 (
no_leader=yes
{PLAYABLE}
Expand Down
Expand Up @@ -70,6 +70,7 @@
{RECALL_LOYALS}
[/event]

# wmllint: skip-side
{MP_SIDE 2 (
{PLAYABLE}
save_id=Landar
Expand All @@ -81,6 +82,7 @@
[/unit]
)}

# wmllint: skip-side
{MP_SIDE 3 (
{PLAYABLE}
save_id=Cleodil
Expand Down
Expand Up @@ -101,6 +101,7 @@
{RECALL_LOYALS}
[/event]

# wmllint: skip-side
{MP_SIDE 2 (
no_leader=yes
{PLAYABLE}
Expand All @@ -114,6 +115,7 @@
[/unit]
)}

# wmllint: skip-side
{MP_SIDE 3 (
no_leader=yes
{PLAYABLE}
Expand Down Expand Up @@ -163,6 +165,7 @@
#endif
[/side]

# wmllint: skip-side
{MP_SIDE 5 (
{PLAYABLE}
{EL_ISOMITHIR}
Expand All @@ -173,6 +176,7 @@
{GOLD 133 100 65}
)}

# wmllint: skip-side
{MP_SIDE 6 (
{PLAYABLE}
{ERADION}
Expand Down
Expand Up @@ -80,6 +80,7 @@ Chapter Three"
[/side]

#Landar's side
# wmllint: skip-side
{MP_SIDE 2 (
{PLAYABLE}
save_id=Landar
Expand All @@ -93,6 +94,7 @@ Chapter Three"
)}

#Olurf's side
# wmllint: skip-side
{MP_SIDE 3 (
{PLAYABLE}
save_id=Olurf
Expand All @@ -108,6 +110,7 @@ Chapter Three"
)}

#Cleodil's side
# wmllint: skip-side
{MP_SIDE 4 (
{PLAYABLE}
save_id=Cleodil
Expand Down
Expand Up @@ -69,6 +69,7 @@
#endif
[/side]

# wmllint: skip-side
{MP_SIDE 2 (
no_leader=yes
{MULTIPLAYER_GOLD}
Expand All @@ -80,6 +81,7 @@
[/unit]
)}

# wmllint: skip-side
{MP_SIDE 3 (
no_leader=yes
{MULTIPLAYER_GOLD}
Expand All @@ -91,6 +93,7 @@
[/unit]
)}

# wmllint: skip-side
{MP_SIDE 4 (
no_leader=yes
{MULTIPLAYER_GOLD}
Expand Down
Expand Up @@ -72,6 +72,7 @@
#endif
[/side]

# wmllint: skip-side
{MP_SIDE 2 (
{PLAYABLE}
save_id=Landar
Expand All @@ -82,6 +83,7 @@
[/unit]
)}

# wmllint: skip-side
{MP_SIDE 3 (
{PLAYABLE}
save_id=Olurf
Expand All @@ -92,6 +94,7 @@
[/unit]
)}

# wmllint: skip-side
{MP_SIDE 4 (
{PLAYABLE}
save_id=Cleodil
Expand Down
10 changes: 6 additions & 4 deletions scons/boost.py
@@ -1,6 +1,7 @@
# vi: syntax=python:et:ts=4
from config_check_utils import find_include
from os.path import join, dirname, basename
import sys, os.path
from glob import glob
import re

Expand Down Expand Up @@ -69,10 +70,11 @@ def CheckBoost(context, boost_lib, require_version = None, header_only = False):
header_name = boost_headers.get(boost_lib, boost_lib + ".hpp")
libname = "boost_" + boost_lib + env.get("boost_suffix", "")

if env["fast"]:
env.AppendUnique(CXXFLAGS = ["-isystem", boostdir], LIBPATH = [boostlibdir])
else:
env.AppendUnique(CPPPATH = [boostdir], LIBPATH = [boostlibdir])
if sys.platform != "win32" and not os.path.samefile(boostdir, "/usr/include"):
if env["fast"]:
env.AppendUnique(CXXFLAGS = ["-isystem", boostdir], LIBPATH = [boostlibdir])
else:
env.AppendUnique(CPPPATH = [boostdir], LIBPATH = [boostlibdir])
if not header_only:
env.AppendUnique(LIBS = [libname])
if boost_lib == "thread" and env["PLATFORM"] == "posix":
Expand Down

0 comments on commit 50e8fcd

Please sign in to comment.