>>> Building on exopi-6 under games/boswars BDEPENDS = [multimedia/libtheora;lang/lua/5.1;graphics/png;audio/libvorbis;devel/sdl;devel/scons;devel/sdl-image;graphics/optipng] DIST = [games/boswars:boswars-2.7-src.tar.gz] FULLPKGNAME = boswars-2.7p4 RDEPENDS = [graphics/png;lang/lua/5.1;devel/sdl;audio/libvorbis;multimedia/libtheora] (Junk lock obtained for exopi-6 at 1713533416.61) >>> Running depends in games/boswars at 1713533416.66 last junk was in x11/kde-applications/audiocd-kio /usr/sbin/pkg_add -aI -Drepair libtheora-1.2.20190601p0 libvorbis-1.3.7 lua-5.1.5p7 optipng-0.7.8 png-1.6.43 scons-4.6.0 sdl-1.2.15p12 sdl-image-1.2.12p5 was: /usr/sbin/pkg_add -aI -Drepair libtheora-1.2.20190601p0 libvorbis-1.3.7 lua-5.1.5p7 optipng-0.7.8 png-1.6.43 scons-4.6.0 sdl-1.2.15p12 sdl-image-1.2.12p5 /usr/sbin/pkg_add -aI -Drepair libtheora-1.2.20190601p0 libvorbis-1.3.7 lua-5.1.5p7 optipng-0.7.8 png-1.6.43 scons-4.6.0 sdl-1.2.15p12 sdl-image-1.2.12p5 >>> Running show-prepare-results in games/boswars at 1713533425.10 ===> games/boswars ===> Building from scratch boswars-2.7p4 ===> boswars-2.7p4 depends on: sdl-image-* -> sdl-image-1.2.12p5 ===> boswars-2.7p4 depends on: optipng-* -> optipng-0.7.8 ===> boswars-2.7p4 depends on: scons-* -> scons-4.6.0 ===> boswars-2.7p4 depends on: lua->=5.1,<5.2 -> lua-5.1.5p7 ===> boswars-2.7p4 depends on: sdl-* -> sdl-1.2.15p12 ===> boswars-2.7p4 depends on: libtheora-* -> libtheora-1.2.20190601p0 ===> boswars-2.7p4 depends on: libvorbis-* -> libvorbis-1.3.7 ===> boswars-2.7p4 depends on: png-* -> png-1.6.43 ===> Verifying specs: c++ c++abi pthread GL SDL X11 c m ogg png theora vorbis z lua5.1 ===> found c++.10.0 c++abi.7.0 pthread.27.1 GL.19.1 SDL.8.0 X11.18.0 c.100.0 m.10.1 ogg.6.2 png.18.0 theora.4.0 vorbis.9.0 z.7.0 lua5.1.5.1 libtheora-1.2.20190601p0 libvorbis-1.3.7 lua-5.1.5p7 optipng-0.7.8 png-1.6.43 scons-4.6.0 sdl-1.2.15p12 sdl-image-1.2.12p5 (Junk lock released for exopi-6 at 1713533427.63) Woken up print/qpdf distfiles size=77280735 >>> Running extract in games/boswars at 1713533427.70 ===> games/boswars ===> Checking files for boswars-2.7p4 `/exopi-cvs/ports/distfiles/boswars-2.7-src.tar.gz' is up to date. >> (SHA256) boswars-2.7-src.tar.gz: OK ===> Extracting for boswars-2.7p4 >>> Running patch in games/boswars at 1713533431.26 ===> games/boswars ===> Patching for boswars-2.7p4 2to3 -w /exopi-obj/pobj/boswars-2.7/boswars-2.7-src/SConstruct RefactoringTool: Skipping optional fixer: buffer RefactoringTool: Skipping optional fixer: idioms RefactoringTool: Skipping optional fixer: set_literal RefactoringTool: Skipping optional fixer: ws_comma RefactoringTool: Refactored /exopi-obj/pobj/boswars-2.7/boswars-2.7-src/SConstruct RefactoringTool: Files that were modified: RefactoringTool: /exopi-obj/pobj/boswars-2.7/boswars-2.7-src/SConstruct --- /exopi-obj/pobj/boswars-2.7/boswars-2.7-src/SConstruct (original) +++ /exopi-obj/pobj/boswars-2.7/boswars-2.7-src/SConstruct (refactored) @@ -122,7 +122,7 @@ flags['LINKFLAGS'].append(arg) else: flags['CCFLAGS'].append(arg) - apply(env.Append, (), flags) + env.Append(*(), **flags) return static_libs if function is None: @@ -190,20 +190,20 @@ ## check for required libs ## if not conf.CheckLibWithHeader('png', 'png.h', 'c'): - print 'Did not find png library or headers, exiting!' + print('Did not find png library or headers, exiting!') Exit(1) if not conf.CheckLibWithHeader('z', 'zlib.h', 'c'): - print 'Did not find the zlib library or headers, exiting!' + print('Did not find the zlib library or headers, exiting!') Exit(1) if not 'USE_WIN32' in env['CPPDEFINES'] and not sys.platform.startswith('freebsd'): if not conf.CheckLib('dl'): - print 'Did not find dl library or header which is needed on some systems for lua. Exiting!' + print('Did not find dl library or header which is needed on some systems for lua. Exiting!') Exit(1) if not CheckLuaLib(env, conf): - print 'Did not find required lua library. Exiting!' + print('Did not find required lua library. Exiting!') Exit(1) if not CheckOpenGL(env, conf): - print 'Did not find required OpenGL library. Exiting!' + print('Did not find required OpenGL library. Exiting!') Exit(1) # Check for optional libraries # @@ -232,7 +232,7 @@ env.ParseConfig('sdl-config --libs') if sys.platform != "darwin" and not '-Dmain=SDL_main' in env['CCFLAGS']: if not conf.CheckLibWithHeader('SDL', 'SDL.h', 'c'): - print 'Did not find SDL library or headers, exiting!' + print('Did not find SDL library or headers, exiting!') Exit(1) env = conf.Finish() @@ -245,14 +245,14 @@ # Remove outdated cache file os.remove(cachename) if optionsChanged or not os.path.exists(cachename): - print cachename + " doesn't exist or out of date." - print "Generating new build config cache ..." + print(cachename + " doesn't exist or out of date.") + print("Generating new build config cache ...") cache = DefineOptions(cachename, {}) AutoConfigure(env) cache.Save(cachename, env) else: cache = DefineOptions(cachename, {}) - print "Using " + cachename + print("Using " + cachename) cache.Update(env) AutoConfigureIfNeeded(env, '') ===> Applying OpenBSD patch patch-SConstruct Hmm... Looks like a unified diff to me... The text leading up to this was: -------------------------- |Index: SConstruct |--- SConstruct.orig |+++ SConstruct -------------------------- Patching file SConstruct using Plan A... Hunk #1 succeeded at 32. Hunk #2 succeeded at 51. Hunk #3 succeeded at 147. Hunk #4 succeeded at 162. Hunk #5 succeeded at 177. Hunk #6 succeeded at 193. Hunk #7 succeeded at 211. Hunk #8 succeeded at 269. Hunk #9 succeeded at 315. done ===> Applying OpenBSD patch patch-engine_include_stratagus_h Hmm... Looks like a unified diff to me... The text leading up to this was: -------------------------- |--- engine/include/stratagus.h.orig Sun Apr 11 14:12:18 2010 |+++ engine/include/stratagus.h Mon Apr 12 12:49:55 2010 -------------------------- Patching file engine/include/stratagus.h using Plan A... Hunk #1 succeeded at 133. done ===> Compiler link: clang -> /usr/bin/clang ===> Compiler link: clang++ -> /usr/bin/clang++ ===> Compiler link: cc -> /usr/bin/cc ===> Compiler link: c++ -> /usr/bin/c++ >>> Running configure in games/boswars at 1713533432.83 ===> games/boswars ===> Generating configure for boswars-2.7p4 ===> Configuring for boswars-2.7p4 optipng -force -fix /exopi-obj/pobj/boswars-2.7/boswars-2.7-src/maps/antarticum.map/terrain.png ** Processing: /exopi-obj/pobj/boswars-2.7/boswars-2.7-src/maps/antarticum.map/terrain.png Warning: IDAT: invalid distance too far back 512x512 pixels, 8 bits/pixel, 200 colors in palette Reducing image to 8 bits/pixel, 199 colors in palette Recoverable errors found in input. Fixing... Input IDAT size = 8192 bytes Input file size = 8962 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 1907 zc = 9 zm = 8 zs = 1 f = 0 IDAT size = 1904 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 IDAT size = 1904 zc = 9 zm = 8 zs = 0 f = 5 zc = 9 zm = 8 zs = 1 f = 5 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 Selecting parameters: zc = 9 zm = 8 zs = 3 f = 0 IDAT size = 1904 Output IDAT size = 1904 bytes (6288 bytes decrease) Output file size = 2687 bytes (6275 bytes = 70.02% decrease) ** Status report 1 file(s) have been processed. 1 error(s) have been encountered. 1 erroneous file(s) have been fixed. optipng -force -fix /exopi-obj/pobj/boswars-2.7/boswars-2.7-src/graphics/ui/ui_*.png ** Processing: /exopi-obj/pobj/boswars-2.7/boswars-2.7-src/graphics/ui/ui_bpanel_200x144.png Warning: IDAT: invalid distance too far back 200x144 pixels, 3x8 bits/pixel, RGB Reducing image to 8 bits/pixel, grayscale Recoverable errors found in input. Fixing... Input IDAT size = 8192 bytes Input file size = 8291 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 466 zc = 9 zm = 8 zs = 1 f = 0 IDAT size = 465 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 IDAT size = 463 zc = 9 zm = 8 zs = 0 f = 5 zc = 9 zm = 8 zs = 1 f = 5 IDAT size = 439 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 IDAT size = 432 Selecting parameters: zc = 9 zm = 8 zs = 3 f = 5 IDAT size = 432 Output IDAT size = 432 bytes (7760 bytes decrease) Output file size = 543 bytes (7748 bytes = 93.45% decrease) ** Processing: /exopi-obj/pobj/boswars-2.7/boswars-2.7-src/graphics/ui/ui_bpanel_200x264.png Warning: IDAT: invalid distance too far back 200x264 pixels, 8 bits/pixel, 103 colors in palette Reducing image to 8 bits/pixel, 71 colors in palette Recoverable errors found in input. Fixing... Input IDAT size = 8192 bytes Input file size = 8607 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 711 zc = 9 zm = 8 zs = 1 f = 0 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 zc = 9 zm = 8 zs = 0 f = 5 zc = 9 zm = 8 zs = 1 f = 5 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 Selecting parameters: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 711 Output IDAT size = 711 bytes (7481 bytes decrease) Output file size = 1046 bytes (7561 bytes = 87.85% decrease) ** Processing: /exopi-obj/pobj/boswars-2.7/boswars-2.7-src/graphics/ui/ui_bpanel_200x432.png Warning: IDAT: invalid distance too far back 200x432 pixels, 8 bits/pixel, 104 colors in palette Reducing image to 8 bits/pixel, 71 colors in palette Recoverable errors found in input. Fixing... Input IDAT size = 8192 bytes Input file size = 8610 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 762 zc = 9 zm = 8 zs = 1 f = 0 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 zc = 9 zm = 8 zs = 0 f = 5 zc = 9 zm = 8 zs = 1 f = 5 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 Selecting parameters: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 762 Output IDAT size = 762 bytes (7430 bytes decrease) Output file size = 1097 bytes (7513 bytes = 87.26% decrease) ** Processing: /exopi-obj/pobj/boswars-2.7/boswars-2.7-src/graphics/ui/ui_bpanel_200x624.png Warning: IDAT: invalid distance too far back 200x624 pixels, 8 bits/pixel, 104 colors in palette Reducing image to 8 bits/pixel, 74 colors in palette Recoverable errors found in input. Fixing... Input IDAT size = 8192 bytes Input file size = 8610 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 1406 zc = 9 zm = 8 zs = 1 f = 0 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 zc = 9 zm = 8 zs = 0 f = 5 zc = 9 zm = 8 zs = 1 f = 5 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 Selecting parameters: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 1406 Output IDAT size = 1406 bytes (6786 bytes decrease) Output file size = 1750 bytes (6860 bytes = 79.67% decrease) ** Processing: /exopi-obj/pobj/boswars-2.7/boswars-2.7-src/graphics/ui/ui_bpanel_200x864.png Warning: IDAT: invalid distance too far back 200x864 pixels, 8 bits/pixel, 104 colors in palette Reducing image to 8 bits/pixel, 74 colors in palette Recoverable errors found in input. Fixing... Input IDAT size = 8192 bytes Input file size = 8610 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 1472 zc = 9 zm = 8 zs = 1 f = 0 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 zc = 9 zm = 8 zs = 0 f = 5 zc = 9 zm = 8 zs = 1 f = 5 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 Selecting parameters: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 1472 Output IDAT size = 1472 bytes (6720 bytes decrease) Output file size = 1816 bytes (6794 bytes = 78.91% decrease) ** Processing: /exopi-obj/pobj/boswars-2.7/boswars-2.7-src/graphics/ui/ui_info.png Warning: IDAT: invalid distance too far back 200x704 pixels, 8 bits/pixel, 106 colors in palette Reducing image to 8 bits/pixel, grayscale Recoverable errors found in input. Fixing... Input IDAT size = 8192 bytes Input file size = 8616 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 1894 zc = 9 zm = 8 zs = 1 f = 0 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 zc = 9 zm = 8 zs = 0 f = 5 zc = 9 zm = 8 zs = 1 f = 5 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 Selecting parameters: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 1894 Output IDAT size = 1894 bytes (6298 bytes decrease) Output file size = 2005 bytes (6611 bytes = 76.73% decrease) ** Processing: /exopi-obj/pobj/boswars-2.7/boswars-2.7-src/graphics/ui/ui_minimap.png Warning: IDAT: invalid distance too far back 200x136 pixels, 3x8 bits/pixel, RGB Reducing image to 8 bits/pixel, grayscale Recoverable errors found in input. Fixing... Input IDAT size = 8192 bytes Input file size = 8291 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 448 zc = 9 zm = 8 zs = 1 f = 0 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 zc = 9 zm = 8 zs = 0 f = 5 zc = 9 zm = 8 zs = 1 f = 5 IDAT size = 419 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 IDAT size = 413 Selecting parameters: zc = 9 zm = 8 zs = 3 f = 5 IDAT size = 413 Output IDAT size = 413 bytes (7779 bytes decrease) Output file size = 524 bytes (7767 bytes = 93.68% decrease) ** Processing: /exopi-obj/pobj/boswars-2.7/boswars-2.7-src/graphics/ui/ui_res_icons.png 14x28 pixels, 4x8 bits/pixel, RGB+alpha Input IDAT size = 1183 bytes Input file size = 1293 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 1112 zc = 9 zm = 8 zs = 1 f = 0 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 zc = 9 zm = 8 zs = 0 f = 5 zc = 9 zm = 8 zs = 1 f = 5 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 Selecting parameters: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 1112 Output IDAT size = 1112 bytes (71 bytes decrease) Output file size = 1222 bytes (71 bytes = 5.49% decrease) ** Status report 8 file(s) have been processed. 7 error(s) have been encountered. 7 erroneous file(s) have been fixed. optipng -force -fix /exopi-obj/pobj/boswars-2.7/boswars-2.7-src/units/radar/radar*.png ** Processing: /exopi-obj/pobj/boswars-2.7/boswars-2.7-src/units/radar/radar.png Warning: IDAT: invalid distance too far back 64x768 pixels, 8 bits/pixel, 256 colors (1 transparent) in palette Reducing image to 8 bits/pixel, 233 colors (1 transparent) in palette Recoverable errors found in input. Fixing... Input IDAT size = 6487 bytes Input file size = 7374 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 770 zc = 9 zm = 8 zs = 1 f = 0 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 IDAT size = 767 zc = 9 zm = 8 zs = 0 f = 5 zc = 9 zm = 8 zs = 1 f = 5 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 Selecting parameters: zc = 9 zm = 8 zs = 3 f = 0 IDAT size = 767 Output IDAT size = 767 bytes (5720 bytes decrease) Output file size = 1601 bytes (5773 bytes = 78.29% decrease) ** Processing: /exopi-obj/pobj/boswars-2.7/boswars-2.7-src/units/radar/radar_i.png 46x38 pixels, 8 bits/pixel, 256 colors (71 transparent) in palette Reducing image to 8 bits/pixel, 71 colors (71 transparent) in palette Input IDAT size = 574 bytes Input file size = 1547 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 571 zc = 9 zm = 8 zs = 1 f = 0 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 zc = 9 zm = 8 zs = 0 f = 5 zc = 9 zm = 8 zs = 1 f = 5 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 Selecting parameters: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 571 Output IDAT size = 571 bytes (3 bytes decrease) Output file size = 989 bytes (558 bytes = 36.07% decrease) ** Processing: /exopi-obj/pobj/boswars-2.7/boswars-2.7-src/units/radar/radar_s.png Warning: IDAT: invalid distance too far back 64x768 pixels, 8 bits/pixel, 256 colors (1 transparent) in palette Reducing image to 1 bit/pixel, 2 colors (1 transparent) in palette Recoverable errors found in input. Fixing... Input IDAT size = 1028 bytes Input file size = 1915 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 158 zc = 9 zm = 8 zs = 1 f = 0 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 zc = 9 zm = 8 zs = 0 f = 5 zc = 9 zm = 8 zs = 1 f = 5 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 Selecting parameters: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 158 Output IDAT size = 158 bytes (870 bytes decrease) Output file size = 299 bytes (1616 bytes = 84.39% decrease) ** Status report 3 file(s) have been processed. 2 error(s) have been encountered. 2 erroneous file(s) have been fixed. optipng -force -fix /exopi-obj/pobj/boswars-2.7/boswars-2.7-src/units/tree*/tree*.png ** Processing: /exopi-obj/pobj/boswars-2.7/boswars-2.7-src/units/tree/tree01.png Warning: IDAT: invalid distance too far back 315x210 pixels, 8 bits/pixel, 201 colors (1 transparent) in palette Reducing image to 8 bits/pixel, 195 colors (1 transparent) in palette Recoverable errors found in input. Fixing... Input IDAT size = 8192 bytes Input file size = 8914 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 232 zc = 9 zm = 8 zs = 1 f = 0 IDAT size = 227 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 IDAT size = 216 zc = 9 zm = 8 zs = 0 f = 5 zc = 9 zm = 8 zs = 1 f = 5 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 Selecting parameters: zc = 9 zm = 8 zs = 3 f = 0 IDAT size = 216 Output IDAT size = 216 bytes (7976 bytes decrease) Output file size = 936 bytes (7978 bytes = 89.50% decrease) ** Processing: /exopi-obj/pobj/boswars-2.7/boswars-2.7-src/units/tree/tree01_i.png 46x38 pixels, 8 bits/pixel, 136 colors (1 transparent) in palette Input IDAT size = 609 bytes Input file size = 1165 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 609 zc = 9 zm = 8 zs = 1 f = 0 IDAT size = 595 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 IDAT size = 581 zc = 9 zm = 8 zs = 0 f = 5 zc = 9 zm = 8 zs = 1 f = 5 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 Selecting parameters: zc = 9 zm = 8 zs = 3 f = 0 IDAT size = 581 Output IDAT size = 581 bytes (28 bytes decrease) Output file size = 1137 bytes (28 bytes = 2.40% decrease) ** Processing: /exopi-obj/pobj/boswars-2.7/boswars-2.7-src/units/tree/tree01_s.png 315x210 pixels, 8 bits/pixel, 256 colors (57 transparent) in palette Input IDAT size = 3219 bytes Input file size = 4178 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 2036 zc = 9 zm = 8 zs = 1 f = 0 IDAT size = 2027 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 zc = 9 zm = 8 zs = 0 f = 5 zc = 9 zm = 8 zs = 1 f = 5 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 Selecting parameters: zc = 9 zm = 8 zs = 1 f = 0 IDAT size = 2027 Output IDAT size = 2027 bytes (1192 bytes decrease) Output file size = 2986 bytes (1192 bytes = 28.53% decrease) ** Processing: /exopi-obj/pobj/boswars-2.7/boswars-2.7-src/units/tree02/tree02.png Warning: IDAT: invalid distance too far back 384x256 pixels, 8 bits/pixel, 175 colors (1 transparent) in palette Reducing image to 8 bits/pixel, 114 colors (1 transparent) in palette Recoverable errors found in input. Fixing... Input IDAT size = 8192 bytes Input file size = 8836 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 196 zc = 9 zm = 8 zs = 1 f = 0 IDAT size = 195 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 IDAT size = 188 zc = 9 zm = 8 zs = 0 f = 5 zc = 9 zm = 8 zs = 1 f = 5 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 Selecting parameters: zc = 9 zm = 8 zs = 3 f = 0 IDAT size = 188 Output IDAT size = 188 bytes (8004 bytes decrease) Output file size = 665 bytes (8171 bytes = 92.47% decrease) ** Processing: /exopi-obj/pobj/boswars-2.7/boswars-2.7-src/units/tree02/tree02_s.png 384x256 pixels, 8 bits/pixel, 256 colors (1 transparent) in palette Reducing image to 8 bits/pixel, grayscale+transparency Input IDAT size = 2080 bytes Input file size = 2983 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 2454 zc = 9 zm = 8 zs = 1 f = 0 IDAT size = 2449 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 zc = 9 zm = 8 zs = 0 f = 5 zc = 9 zm = 8 zs = 1 f = 5 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 Selecting parameters: zc = 9 zm = 8 zs = 1 f = 0 IDAT size = 2449 Output IDAT size = 2449 bytes (369 bytes increase) Output file size = 2573 bytes (410 bytes = 13.74% decrease) ** Processing: /exopi-obj/pobj/boswars-2.7/boswars-2.7-src/units/tree03/tree03.png Warning: IDAT: invalid distance too far back 384x256 pixels, 8 bits/pixel, 177 colors (1 transparent) in palette Reducing image to 8 bits/pixel, 166 colors (1 transparent) in palette Recoverable errors found in input. Fixing... Input IDAT size = 8192 bytes Input file size = 8842 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 168 zc = 9 zm = 8 zs = 1 f = 0 IDAT size = 168 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 IDAT size = 160 zc = 9 zm = 8 zs = 0 f = 5 zc = 9 zm = 8 zs = 1 f = 5 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 Selecting parameters: zc = 9 zm = 8 zs = 3 f = 0 IDAT size = 160 Output IDAT size = 160 bytes (8032 bytes decrease) Output file size = 793 bytes (8049 bytes = 91.03% decrease) ** Processing: /exopi-obj/pobj/boswars-2.7/boswars-2.7-src/units/tree03/tree03_s.png 384x256 pixels, 8 bits/pixel, 256 colors (9 transparent) in palette Input IDAT size = 3165 bytes Input file size = 4076 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 3163 zc = 9 zm = 8 zs = 1 f = 0 IDAT size = 3163 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 zc = 9 zm = 8 zs = 0 f = 5 zc = 9 zm = 8 zs = 1 f = 5 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 Selecting parameters: zc = 9 zm = 8 zs = 1 f = 0 IDAT size = 3163 Output IDAT size = 3163 bytes (2 bytes decrease) Output file size = 4074 bytes (2 bytes = 0.05% decrease) ** Processing: /exopi-obj/pobj/boswars-2.7/boswars-2.7-src/units/tree04/tree04.png Warning: IDAT: invalid distance too far back 384x256 pixels, 8 bits/pixel, 192 colors (1 transparent) in palette Reducing image to 8 bits/pixel, 182 colors (1 transparent) in palette Recoverable errors found in input. Fixing... Input IDAT size = 8192 bytes Input file size = 8887 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 246 zc = 9 zm = 8 zs = 1 f = 0 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 IDAT size = 238 zc = 9 zm = 8 zs = 0 f = 5 zc = 9 zm = 8 zs = 1 f = 5 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 Selecting parameters: zc = 9 zm = 8 zs = 3 f = 0 IDAT size = 238 Output IDAT size = 238 bytes (7954 bytes decrease) Output file size = 919 bytes (7968 bytes = 89.66% decrease) ** Processing: /exopi-obj/pobj/boswars-2.7/boswars-2.7-src/units/tree04/tree04_s.png 384x256 pixels, 8 bits/pixel, 256 colors (9 transparent) in palette Input IDAT size = 3968 bytes Input file size = 4879 bytes Trying: zc = 9 zm = 8 zs = 0 f = 0 IDAT size = 3966 zc = 9 zm = 8 zs = 1 f = 0 IDAT size = 3965 zc = 1 zm = 8 zs = 2 f = 0 zc = 9 zm = 8 zs = 3 f = 0 zc = 9 zm = 8 zs = 0 f = 5 zc = 9 zm = 8 zs = 1 f = 5 zc = 1 zm = 8 zs = 2 f = 5 zc = 9 zm = 8 zs = 3 f = 5 Selecting parameters: zc = 9 zm = 8 zs = 1 f = 0 IDAT size = 3965 Output IDAT size = 3965 bytes (3 bytes decrease) Output file size = 4876 bytes (3 bytes = 0.06% decrease) ** Status report 9 file(s) have been processed. 4 error(s) have been encountered. 4 erroneous file(s) have been fixed. >>> Running build in games/boswars at 1713533434.61 ===> games/boswars ===> Building for boswars-2.7p4 scons: Entering directory `/exopi-obj/pobj/boswars-2.7/boswars-2.7-src' scons: Reading SConscript files ... build_conf_cache.py doesn't exist or out of date. Generating new build config cache ... Checking for C library z... yes Checking for C library png... yes Checking for C library lua51... no Checking for C library lua5.1... yes Checking for C library GL... yes Checking for C library ogg... yes Checking for C library vorbis... yes Checking for C library theora... yes Checking for C function strcasestr()... yes Checking for C function strnlen()... yes Checking for C header file X11/Xlib.h... yes Checking for C header file X11/Xatom.h... yes Checking for C library X11... yes Checking for C library SDL... yes scons: done reading SConscript files. scons: Building targets ... c++ -std=gnu++14 -o build/release/action/action_attack.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/action/action_attack.cpp c++ -std=gnu++14 -o build/release/action/action_board.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/action/action_board.cpp c++ -std=gnu++14 -o build/release/action/action_build.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/action/action_build.cpp c++ -std=gnu++14 -o build/release/action/action_die.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/action/action_die.cpp c++ -std=gnu++14 -o build/release/action/action_follow.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/action/action_follow.cpp c++ -std=gnu++14 -o build/release/action/action_move.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/action/action_move.cpp c++ -std=gnu++14 -o build/release/action/action_patrol.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/action/action_patrol.cpp c++ -std=gnu++14 -o build/release/action/action_repair.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/action/action_repair.cpp c++ -std=gnu++14 -o build/release/action/action_resource.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/action/action_resource.cpp c++ -std=gnu++14 -o build/release/action/action_spellcast.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/action/action_spellcast.cpp c++ -std=gnu++14 -o build/release/action/action_stand.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/action/action_stand.cpp c++ -std=gnu++14 -o build/release/action/action_still.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/action/action_still.cpp c++ -std=gnu++14 -o build/release/action/action_train.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/action/action_train.cpp c++ -std=gnu++14 -o build/release/action/action_unload.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/action/action_unload.cpp c++ -std=gnu++14 -o build/release/action/actions.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/action/actions.cpp c++ -std=gnu++14 -o build/release/action/command.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/action/command.cpp c++ -std=gnu++14 -o build/release/ai/ai.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/ai/ai.cpp c++ -std=gnu++14 -o build/release/ai/ai_building.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/ai/ai_building.cpp c++ -std=gnu++14 -o build/release/ai/ai_force.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/ai/ai_force.cpp c++ -std=gnu++14 -o build/release/ai/ai_magic.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/ai/ai_magic.cpp c++ -std=gnu++14 -o build/release/ai/ai_resource.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/ai/ai_resource.cpp c++ -std=gnu++14 -o build/release/ai/script_ai.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/ai/script_ai.cpp c++ -std=gnu++14 -o build/release/editor/editloop.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/editor/editloop.cpp c++ -std=gnu++14 -o build/release/editor/patch_editor.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/editor/patch_editor.cpp c++ -std=gnu++14 -o build/release/game/construct.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/game/construct.cpp c++ -std=gnu++14 -o build/release/game/game.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/game/game.cpp engine/game/game.cpp:627:36: warning: result of comparison of constant -1 with expression of type 'PlayerTypes' is always true [-Wtautological-constant-out-of-range-compare] if (GameSettings.Presets[i].Type != SettingsPresetMapDefault) { ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^ ~~~~~~~~~~~~~~~~~~~~~~~~ 1 warning generated. c++ -std=gnu++14 -o build/release/game/groups.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/game/groups.cpp c++ -std=gnu++14 -o build/release/game/loadgame.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/game/loadgame.cpp c++ -std=gnu++14 -o build/release/game/mainloop.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/game/mainloop.cpp c++ -std=gnu++14 -o build/release/game/missile.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/game/missile.cpp c++ -std=gnu++14 -o build/release/game/player.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/game/player.cpp c++ -std=gnu++14 -o build/release/game/replay.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/game/replay.cpp c++ -std=gnu++14 -o build/release/game/savegame.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/game/savegame.cpp c++ -std=gnu++14 -o build/release/game/script_missile.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/game/script_missile.cpp c++ -std=gnu++14 -o build/release/game/script_player.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/game/script_player.cpp c++ -std=gnu++14 -o build/release/game/script_spell.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/game/script_spell.cpp c++ -std=gnu++14 -o build/release/game/selection.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/game/selection.cpp c++ -std=gnu++14 -o build/release/game/spells.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/game/spells.cpp c++ -std=gnu++14 -o build/release/game/trigger.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/game/trigger.cpp c++ -std=gnu++14 -o build/release/map/map.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/map/map.cpp c++ -std=gnu++14 -o build/release/map/map_draw.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/map/map_draw.cpp c++ -std=gnu++14 -o build/release/map/map_fog.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/map/map_fog.cpp c++ -std=gnu++14 -o build/release/map/map_radar.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/map/map_radar.cpp c++ -std=gnu++14 -o build/release/map/map_save.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/map/map_save.cpp c++ -std=gnu++14 -o build/release/map/minimap.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/map/minimap.cpp c++ -std=gnu++14 -o build/release/map/patch_manager.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/map/patch_manager.cpp c++ -std=gnu++14 -o build/release/map/script_map.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/map/script_map.cpp c++ -std=gnu++14 -o build/release/network/commands.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/network/commands.cpp c++ -std=gnu++14 -o build/release/network/lowlevel.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/network/lowlevel.cpp c++ -std=gnu++14 -o build/release/network/netconnect.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/network/netconnect.cpp c++ -std=gnu++14 -o build/release/network/network.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/network/network.cpp c++ -std=gnu++14 -o build/release/particle/chunkparticle.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/particle/chunkparticle.cpp c++ -std=gnu++14 -o build/release/particle/graphicanimation.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/particle/graphicanimation.cpp c++ -std=gnu++14 -o build/release/particle/particlemanager.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/particle/particlemanager.cpp c++ -std=gnu++14 -o build/release/particle/smokeparticle.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/particle/smokeparticle.cpp c++ -std=gnu++14 -o build/release/particle/staticparticle.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/particle/staticparticle.cpp c++ -std=gnu++14 -o build/release/pathfinder/astar.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/pathfinder/astar.cpp c++ -std=gnu++14 -o build/release/pathfinder/pathfinder.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/pathfinder/pathfinder.cpp c++ -std=gnu++14 -o build/release/sound/music.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/sound/music.cpp c++ -std=gnu++14 -o build/release/sound/ogg.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/sound/ogg.cpp c++ -std=gnu++14 -o build/release/sound/script_sound.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/sound/script_sound.cpp c++ -std=gnu++14 -o build/release/sound/sound.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/sound/sound.cpp c++ -std=gnu++14 -o build/release/sound/sound_id.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/sound/sound_id.cpp c++ -std=gnu++14 -o build/release/sound/sound_server.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/sound/sound_server.cpp c++ -std=gnu++14 -o build/release/sound/unitsound.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/sound/unitsound.cpp c++ -std=gnu++14 -o build/release/sound/wav.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/sound/wav.cpp c++ -std=gnu++14 -o build/release/stratagus/iolib.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/stratagus/iolib.cpp c++ -std=gnu++14 -o build/release/stratagus/luacallback.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/stratagus/luacallback.cpp c++ -std=gnu++14 -o build/release/stratagus/script.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/stratagus/script.cpp c++ -std=gnu++14 -o build/release/stratagus/stratagus.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/stratagus/stratagus.cpp c++ -std=gnu++14 -o build/release/stratagus/title.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/stratagus/title.cpp c++ -std=gnu++14 -o build/release/stratagus/translate.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/stratagus/translate.cpp c++ -std=gnu++14 -o build/release/stratagus/util.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/stratagus/util.cpp c++ -std=gnu++14 -o build/release/ui/botpanel.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/ui/botpanel.cpp c++ -std=gnu++14 -o build/release/ui/button_checks.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/ui/button_checks.cpp c++ -std=gnu++14 -o build/release/ui/icons.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/ui/icons.cpp c++ -std=gnu++14 -o build/release/ui/interface.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/ui/interface.cpp c++ -std=gnu++14 -o build/release/ui/mainscr.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/ui/mainscr.cpp c++ -std=gnu++14 -o build/release/ui/menu_proc.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/ui/menu_proc.cpp c++ -std=gnu++14 -o build/release/ui/mouse.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/ui/mouse.cpp c++ -std=gnu++14 -o build/release/ui/script_ui.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/ui/script_ui.cpp c++ -std=gnu++14 -o build/release/ui/ui.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/ui/ui.cpp c++ -std=gnu++14 -o build/release/ui/widgets.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/ui/widgets.cpp c++ -std=gnu++14 -o build/release/unit/build.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/unit/build.cpp c++ -std=gnu++14 -o build/release/unit/script_unit.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/unit/script_unit.cpp c++ -std=gnu++14 -o build/release/unit/script_unittype.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/unit/script_unittype.cpp c++ -std=gnu++14 -o build/release/unit/unit.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/unit/unit.cpp c++ -std=gnu++14 -o build/release/unit/unit_cache.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/unit/unit_cache.cpp c++ -std=gnu++14 -o build/release/unit/unit_draw.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/unit/unit_draw.cpp c++ -std=gnu++14 -o build/release/unit/unit_find.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/unit/unit_find.cpp c++ -std=gnu++14 -o build/release/unit/unit_manager.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/unit/unit_manager.cpp c++ -std=gnu++14 -o build/release/unit/unit_save.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/unit/unit_save.cpp c++ -std=gnu++14 -o build/release/unit/unittype.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/unit/unittype.cpp c++ -std=gnu++14 -o build/release/unit/upgrade.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/unit/upgrade.cpp c++ -std=gnu++14 -o build/release/video/cursor.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/video/cursor.cpp c++ -std=gnu++14 -o build/release/video/font.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/video/font.cpp engine/video/font.cpp:1093:8: warning: 'auto_ptr' is deprecated [-Wdeprecated-declarations] std::auto_ptr fontFamily(new CFontFamily(ident)); ^ /usr/include/c++/v1/__memory/auto_ptr.h:30:28: note: 'auto_ptr' has been explicitly marked deprecated here class _LIBCPP_TEMPLATE_VIS _LIBCPP_DEPRECATED_IN_CXX11 auto_ptr ^ /usr/include/c++/v1/__config:796:41: note: expanded from macro '_LIBCPP_DEPRECATED_IN_CXX11' # define _LIBCPP_DEPRECATED_IN_CXX11 _LIBCPP_DEPRECATED ^ /usr/include/c++/v1/__config:781:49: note: expanded from macro '_LIBCPP_DEPRECATED' # define _LIBCPP_DEPRECATED __attribute__((deprecated)) ^ 1 warning generated. c++ -std=gnu++14 -o build/release/video/glgraphicdraw.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/video/glgraphicdraw.cpp c++ -std=gnu++14 -o build/release/video/graphic.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/video/graphic.cpp c++ -std=gnu++14 -o build/release/video/linedraw.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/video/linedraw.cpp c++ -std=gnu++14 -o build/release/video/movie.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/video/movie.cpp c++ -std=gnu++14 -o build/release/video/png.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/video/png.cpp c++ -std=gnu++14 -o build/release/video/sdl.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/video/sdl.cpp c++ -std=gnu++14 -o build/release/video/video.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/video/video.cpp c++ -std=gnu++14 -o build/release/tolua/tolua.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/tolua/tolua.cpp c++ -std=gnu++14 -o build/release/tolua/tolua_event.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/tolua/tolua_event.cpp c++ -std=gnu++14 -o build/release/tolua/tolua_is.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/tolua/tolua_is.cpp c++ -std=gnu++14 -o build/release/tolua/tolua_map.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/tolua/tolua_map.cpp c++ -std=gnu++14 -o build/release/tolua/tolua_push.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/tolua/tolua_push.cpp c++ -std=gnu++14 -o build/release/tolua/tolua_to.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/tolua/tolua_to.cpp c++ -std=gnu++14 -o build/release/guichan/cliprectangle.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/guichan/cliprectangle.cpp c++ -std=gnu++14 -o build/release/guichan/color.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/guichan/color.cpp c++ -std=gnu++14 -o build/release/guichan/defaultfont.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/guichan/defaultfont.cpp c++ -std=gnu++14 -o build/release/guichan/exception.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/guichan/exception.cpp c++ -std=gnu++14 -o build/release/guichan/focushandler.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/guichan/focushandler.cpp c++ -std=gnu++14 -o build/release/guichan/gfont.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/guichan/gfont.cpp c++ -std=gnu++14 -o build/release/guichan/graphics.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/guichan/graphics.cpp c++ -std=gnu++14 -o build/release/guichan/gui.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/guichan/gui.cpp c++ -std=gnu++14 -o build/release/guichan/guichan.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/guichan/guichan.cpp c++ -std=gnu++14 -o build/release/guichan/image.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/guichan/image.cpp c++ -std=gnu++14 -o build/release/guichan/imagefont.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/guichan/imagefont.cpp c++ -std=gnu++14 -o build/release/guichan/key.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/guichan/key.cpp c++ -std=gnu++14 -o build/release/guichan/keyinput.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/guichan/keyinput.cpp c++ -std=gnu++14 -o build/release/guichan/mouseinput.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/guichan/mouseinput.cpp c++ -std=gnu++14 -o build/release/guichan/rectangle.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/guichan/rectangle.cpp c++ -std=gnu++14 -o build/release/guichan/widget.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/guichan/widget.cpp c++ -std=gnu++14 -o build/release/guichan/sdl/gsdl.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/guichan/sdl/gsdl.cpp c++ -std=gnu++14 -o build/release/guichan/sdl/sdlgraphics.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/guichan/sdl/sdlgraphics.cpp c++ -std=gnu++14 -o build/release/guichan/sdl/sdlimageloader.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/guichan/sdl/sdlimageloader.cpp c++ -std=gnu++14 -o build/release/guichan/sdl/sdlinput.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/guichan/sdl/sdlinput.cpp c++ -std=gnu++14 -o build/release/guichan/widgets/button.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/guichan/widgets/button.cpp c++ -std=gnu++14 -o build/release/guichan/widgets/checkbox.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/guichan/widgets/checkbox.cpp c++ -std=gnu++14 -o build/release/guichan/widgets/container.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/guichan/widgets/container.cpp c++ -std=gnu++14 -o build/release/guichan/widgets/dropdown.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/guichan/widgets/dropdown.cpp c++ -std=gnu++14 -o build/release/guichan/widgets/icon.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/guichan/widgets/icon.cpp c++ -std=gnu++14 -o build/release/guichan/widgets/label.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/guichan/widgets/label.cpp c++ -std=gnu++14 -o build/release/guichan/widgets/listbox.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/guichan/widgets/listbox.cpp c++ -std=gnu++14 -o build/release/guichan/widgets/radiobutton.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/guichan/widgets/radiobutton.cpp c++ -std=gnu++14 -o build/release/guichan/widgets/scrollarea.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/guichan/widgets/scrollarea.cpp c++ -std=gnu++14 -o build/release/guichan/widgets/slider.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/guichan/widgets/slider.cpp c++ -std=gnu++14 -o build/release/guichan/widgets/textbox.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/guichan/widgets/textbox.cpp c++ -std=gnu++14 -o build/release/guichan/widgets/textfield.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/guichan/widgets/textfield.cpp c++ -std=gnu++14 -o build/release/guichan/widgets/window.o -c -fsigned-char -O2 -pipe -pthread -fomit-frame-pointer -ffast-math -DUSE_OGG -DUSE_VORBIS -DUSE_THEORA -DHAVE_STRCASESTR -DHAVE_STRNLEN -DHAVE_X -D_GNU_SOURCE=1 -D_REENTRANT -DXTHREADS -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/lua-5.1 -I/usr/local/include/SDL -Iengine/include -Iengine/guichan/include engine/guichan/widgets/window.cpp c++ -std=gnu++14 -o build/boswars-release -pthread build/release/action/action_attack.o build/release/action/action_board.o build/release/action/action_build.o build/release/action/action_die.o build/release/action/action_follow.o build/release/action/action_move.o build/release/action/action_patrol.o build/release/action/action_repair.o build/release/action/action_resource.o build/release/action/action_spellcast.o build/release/action/action_stand.o build/release/action/action_still.o build/release/action/action_train.o build/release/action/action_unload.o build/release/action/actions.o build/release/action/command.o build/release/ai/ai.o build/release/ai/ai_building.o build/release/ai/ai_force.o build/release/ai/ai_magic.o build/release/ai/ai_resource.o build/release/ai/script_ai.o build/release/editor/editloop.o build/release/editor/patch_editor.o build/release/game/construct.o build/release/game/game.o build/release/game/groups.o build/release/game/loadgame.o build/release/game/mainloop.o build/release/game/missile.o build/release/game/player.o build/release/game/replay.o build/release/game/savegame.o build/release/game/script_missile.o build/release/game/script_player.o build/release/game/script_spell.o build/release/game/selection.o build/release/game/spells.o build/release/game/trigger.o build/release/map/map.o build/release/map/map_draw.o build/release/map/map_fog.o build/release/map/map_radar.o build/release/map/map_save.o build/release/map/minimap.o build/release/map/patch_manager.o build/release/map/script_map.o build/release/network/commands.o build/release/network/lowlevel.o build/release/network/netconnect.o build/release/network/network.o build/release/particle/chunkparticle.o build/release/particle/graphicanimation.o build/release/particle/particlemanager.o build/release/particle/smokeparticle.o build/release/particle/staticparticle.o build/release/pathfinder/astar.o build/release/pathfinder/pathfinder.o build/release/sound/music.o build/release/sound/ogg.o build/release/sound/script_sound.o build/release/sound/sound.o build/release/sound/sound_id.o build/release/sound/sound_server.o build/release/sound/unitsound.o build/release/sound/wav.o build/release/stratagus/iolib.o build/release/stratagus/luacallback.o build/release/stratagus/script.o build/release/stratagus/stratagus.o build/release/stratagus/title.o build/release/stratagus/translate.o build/release/stratagus/util.o build/release/ui/botpanel.o build/release/ui/button_checks.o build/release/ui/icons.o build/release/ui/interface.o build/release/ui/mainscr.o build/release/ui/menu_proc.o build/release/ui/mouse.o build/release/ui/script_ui.o build/release/ui/ui.o build/release/ui/widgets.o build/release/unit/build.o build/release/unit/script_unit.o build/release/unit/script_unittype.o build/release/unit/unit.o build/release/unit/unit_cache.o build/release/unit/unit_draw.o build/release/unit/unit_find.o build/release/unit/unit_manager.o build/release/unit/unit_save.o build/release/unit/unittype.o build/release/unit/upgrade.o build/release/video/cursor.o build/release/video/font.o build/release/video/glgraphicdraw.o build/release/video/graphic.o build/release/video/linedraw.o build/release/video/movie.o build/release/video/png.o build/release/video/sdl.o build/release/video/video.o build/release/tolua/tolua.o build/release/tolua/tolua_event.o build/release/tolua/tolua_is.o build/release/tolua/tolua_map.o build/release/tolua/tolua_push.o build/release/tolua/tolua_to.o build/release/guichan/cliprectangle.o build/release/guichan/color.o build/release/guichan/defaultfont.o build/release/guichan/exception.o build/release/guichan/focushandler.o build/release/guichan/gfont.o build/release/guichan/graphics.o build/release/guichan/gui.o build/release/guichan/guichan.o build/release/guichan/image.o build/release/guichan/imagefont.o build/release/guichan/key.o build/release/guichan/keyinput.o build/release/guichan/mouseinput.o build/release/guichan/rectangle.o build/release/guichan/widget.o build/release/guichan/sdl/gsdl.o build/release/guichan/sdl/sdlgraphics.o build/release/guichan/sdl/sdlimageloader.o build/release/guichan/sdl/sdlinput.o build/release/guichan/widgets/button.o build/release/guichan/widgets/checkbox.o build/release/guichan/widgets/container.o build/release/guichan/widgets/dropdown.o build/release/guichan/widgets/icon.o build/release/guichan/widgets/label.o build/release/guichan/widgets/listbox.o build/release/guichan/widgets/radiobutton.o build/release/guichan/widgets/scrollarea.o build/release/guichan/widgets/slider.o build/release/guichan/widgets/textbox.o build/release/guichan/widgets/textfield.o build/release/guichan/widgets/window.o -L/usr/local/lib -L/usr/X11R6/lib -lz -lpng -lm -llua5.1 -lGL -logg -lvorbis -ltheora -lX11 -lSDL -lSDL action_build.cpp(build/release/action/action_build.o:(HandleActionBuilt(CUnit*))): warning: rand() may return deterministic values, is that what you want? util.cpp(build/release/stratagus/util.o:(strcpy_s(char*, unsigned long, char const*))): warning: strcpy() is almost always misused, please use strlcpy() scons: done building targets. >>> Running fake in games/boswars at 1713533798.54 ===> games/boswars ===> Faking installation for boswars-2.7p4 /exopi-obj/pobj/boswars-2.7/bin/install -d -m 755 /exopi-obj/pobj/boswars-2.7/fake-amd64/usr/local/share/boswars /exopi-obj/pobj/boswars-2.7/bin/install -d -m 755 /exopi-obj/pobj/boswars-2.7/fake-amd64/usr/local/share/doc/boswars/html/scripts /exopi-obj/pobj/boswars-2.7/bin/install -c -s -m 755 /exopi-obj/pobj/boswars-2.7/boswars-2.7-src/build/boswars-release /exopi-obj/pobj/boswars-2.7/fake-amd64/usr/local/bin/boswars /exopi-obj/pobj/boswars-2.7/bin/install -c -m 644 /exopi-obj/pobj/boswars-2.7/boswars-2.7-src/doc/*.html /exopi-obj/pobj/boswars-2.7/fake-amd64/usr/local/share/doc/boswars/html /exopi-obj/pobj/boswars-2.7/bin/install -c -m 644 /exopi-obj/pobj/boswars-2.7/boswars-2.7-src/doc/scripts/{*.html,*.py} /exopi-obj/pobj/boswars-2.7/fake-amd64/usr/local/share/doc/boswars/html/scripts cp -R /exopi-obj/pobj/boswars-2.7/boswars-2.7-src/campaigns /exopi-obj/pobj/boswars-2.7/fake-amd64/usr/local/share/boswars cp -R /exopi-obj/pobj/boswars-2.7/boswars-2.7-src/graphics /exopi-obj/pobj/boswars-2.7/fake-amd64/usr/local/share/boswars cp -R /exopi-obj/pobj/boswars-2.7/boswars-2.7-src/intro /exopi-obj/pobj/boswars-2.7/fake-amd64/usr/local/share/boswars cp -R /exopi-obj/pobj/boswars-2.7/boswars-2.7-src/languages /exopi-obj/pobj/boswars-2.7/fake-amd64/usr/local/share/boswars cp -R /exopi-obj/pobj/boswars-2.7/boswars-2.7-src/maps /exopi-obj/pobj/boswars-2.7/fake-amd64/usr/local/share/boswars cp -R /exopi-obj/pobj/boswars-2.7/boswars-2.7-src/patches /exopi-obj/pobj/boswars-2.7/fake-amd64/usr/local/share/boswars cp -R /exopi-obj/pobj/boswars-2.7/boswars-2.7-src/scripts /exopi-obj/pobj/boswars-2.7/fake-amd64/usr/local/share/boswars cp -R /exopi-obj/pobj/boswars-2.7/boswars-2.7-src/sounds /exopi-obj/pobj/boswars-2.7/fake-amd64/usr/local/share/boswars cp -R /exopi-obj/pobj/boswars-2.7/boswars-2.7-src/units /exopi-obj/pobj/boswars-2.7/fake-amd64/usr/local/share/boswars chown -R root:bin /exopi-obj/pobj/boswars-2.7/fake-amd64/usr/local/share/boswars >>> Running package in games/boswars at 1713533801.03 ===> games/boswars `/exopi-obj/pobj/boswars-2.7/fake-amd64/.fake_done' is up to date. ===> Building package for boswars-2.7p4 Create /exopi-cvs/ports/packages/amd64/all/boswars-2.7p4.tgz Creating package boswars-2.7p4 reading plist| checking dependencies| checking dependencies|audio/libvorbis checking dependencies|devel/sdl checking dependencies|graphics/png checking dependencies|lang/lua/5.1 checking dependencies|multimedia/libtheora checksumming| checksumming| | 0% checksumming| | 1% checksumming|* | 1% checksumming|* | 2% checksumming|** | 2% checksumming|** | 3% checksumming|** | 4% checksumming|*** | 4% checksumming|*** | 5% checksumming|*** | 6% checksumming|**** | 6% checksumming|**** | 7% checksumming|***** | 7% checksumming|***** | 8% checksumming|***** | 9% checksumming|****** | 9% checksumming|****** | 10% checksumming|****** | 11% checksumming|******* | 11% checksumming|******* | 12% checksumming|******** | 12% checksumming|******** | 13% checksumming|******** | 14% checksumming|********* | 14% checksumming|********* | 15% checksumming|********* | 16% checksumming|********** | 16% checksumming|********** | 17% checksumming|*********** | 17% checksumming|*********** | 18% checksumming|*********** | 19% checksumming|************ | 19% checksumming|************ | 20% checksumming|************* | 21% checksumming|************* | 22% checksumming|************** | 22% checksumming|************** | 23% checksumming|************** | 24% checksumming|*************** | 24% checksumming|*************** | 25% checksumming|**************** | 25% checksumming|**************** | 26% checksumming|**************** | 27% checksumming|***************** | 27% checksumming|***************** | 28% checksumming|***************** | 29% checksumming|****************** | 29% checksumming|****************** | 30% checksumming|******************* | 30% checksumming|******************* | 31% checksumming|******************* | 32% checksumming|******************** | 32% checksumming|******************** | 33% checksumming|******************** | 34% checksumming|********************* | 34% checksumming|********************* | 35% checksumming|********************** | 35% checksumming|********************** | 36% checksumming|********************** | 37% checksumming|*********************** | 37% checksumming|*********************** | 38% checksumming|************************ | 39% checksumming|************************ | 40% checksumming|************************* | 40% checksumming|************************* | 41% checksumming|************************* | 42% checksumming|************************** | 42% checksumming|************************** | 43% checksumming|*************************** | 43% checksumming|*************************** | 44% checksumming|*************************** | 45% checksumming|**************************** | 45% checksumming|**************************** | 46% checksumming|**************************** | 47% checksumming|***************************** | 47% checksumming|***************************** | 48% checksumming|****************************** | 48% checksumming|****************************** | 49% checksumming|****************************** | 50% checksumming|******************************* | 50% checksumming|******************************* | 51% checksumming|******************************* | 52% checksumming|******************************** | 52% checksumming|******************************** | 53% checksumming|********************************* | 53% checksumming|********************************* | 54% checksumming|********************************* | 55% checksumming|********************************** | 55% checksumming|********************************** | 56% checksumming|********************************** | 57% checksumming|*********************************** | 57% checksumming|*********************************** | 58% checksumming|************************************ | 58% checksumming|************************************ | 59% checksumming|************************************ | 60% checksumming|************************************* | 60% checksumming|************************************* | 61% checksumming|************************************** | 62% checksumming|************************************** | 63% checksumming|*************************************** | 63% checksumming|*************************************** | 64% checksumming|*************************************** | 65% checksumming|**************************************** | 65% checksumming|**************************************** | 66% checksumming|***************************************** | 66% checksumming|***************************************** | 67% checksumming|***************************************** | 68% checksumming|****************************************** | 68% checksumming|****************************************** | 69% checksumming|****************************************** | 70% checksumming|******************************************* | 70% checksumming|******************************************* | 71% checksumming|******************************************** | 71% checksumming|******************************************** | 72% checksumming|******************************************** | 73% checksumming|********************************************* | 73% checksumming|********************************************* | 74% checksumming|********************************************* | 75% checksumming|********************************************** | 75% checksumming|********************************************** | 76% checksumming|*********************************************** | 76% checksumming|*********************************************** | 77% checksumming|*********************************************** | 78% checksumming|************************************************ | 78% checksumming|************************************************ | 79% checksumming|************************************************* | 80% checksumming|************************************************* | 81% checksumming|************************************************** | 81% checksumming|************************************************** | 82% checksumming|************************************************** | 83% checksumming|*************************************************** | 83% checksumming|*************************************************** | 84% checksumming|**************************************************** | 84% checksumming|**************************************************** | 85% checksumming|**************************************************** | 86% checksumming|***************************************************** | 86% checksumming|***************************************************** | 87% checksumming|***************************************************** | 88% checksumming|****************************************************** | 88% checksumming|****************************************************** | 89% checksumming|******************************************************* | 89% checksumming|******************************************************* | 90% checksumming|******************************************************* | 91% checksumming|******************************************************** | 91% checksumming|******************************************************** | 92% checksumming|******************************************************** | 93% checksumming|********************************************************* | 93% checksumming|********************************************************* | 94% checksumming|********************************************************** | 94% checksumming|********************************************************** | 95% checksumming|********************************************************** | 96% checksumming|*********************************************************** | 96% checksumming|*********************************************************** | 97% checksumming|*********************************************************** | 98% checksumming|************************************************************ | 98% checksumming|************************************************************ | 99% checksumming|*************************************************************| 99% checksumming|*************************************************************|100% archiving| archiving| | 0% archiving|* | 2% archiving|** | 2% archiving|** | 3% archiving|** | 4% archiving|*** | 5% archiving|**** | 6% archiving|***** | 7% archiving|***** | 8% archiving|****** | 9% archiving|****** | 10% archiving|******* | 10% archiving|******* | 11% archiving|******** | 12% archiving|******** | 13% archiving|********* | 13% archiving|********* | 14% archiving|********** | 16% archiving|************ | 19% archiving|************* | 20% archiving|************** | 22% archiving|*************** | 24% archiving|***************** | 26% archiving|****************** | 28% archiving|******************** | 31% archiving|********************* | 33% archiving|********************** | 34% archiving|********************** | 35% archiving|*********************** | 37% archiving|************************ | 37% archiving|************************* | 39% archiving|************************** | 40% archiving|************************** | 41% archiving|*************************** | 43% archiving|***************************** | 45% archiving|****************************** | 48% archiving|******************************** | 50% archiving|********************************* | 52% archiving|*********************************** | 54% archiving|************************************ | 57% archiving|************************************* | 57% archiving|************************************** | 59% archiving|*************************************** | 61% archiving|**************************************** | 62% archiving|**************************************** | 63% archiving|***************************************** | 63% archiving|***************************************** | 64% archiving|***************************************** | 65% archiving|****************************************** | 65% archiving|****************************************** | 66% archiving|******************************************* | 66% archiving|******************************************* | 67% archiving|******************************************* | 68% archiving|******************************************** | 68% archiving|******************************************** | 69% archiving|******************************************** | 70% archiving|********************************************* | 70% archiving|********************************************* | 71% archiving|********************************************** | 71% archiving|********************************************** | 72% archiving|********************************************** | 73% archiving|*********************************************** | 73% archiving|*********************************************** | 74% archiving|************************************************ | 74% archiving|************************************************ | 75% archiving|************************************************ | 76% archiving|************************************************* | 76% archiving|************************************************* | 77% archiving|************************************************** | 77% archiving|************************************************** | 78% archiving|************************************************** | 79% archiving|*************************************************** | 79% archiving|*************************************************** | 80% archiving|**************************************************** | 81% archiving|**************************************************** | 82% archiving|***************************************************** | 82% archiving|***************************************************** | 83% archiving|***************************************************** | 84% archiving|****************************************************** | 84% archiving|****************************************************** | 85% archiving|******************************************************* | 85% archiving|******************************************************* | 86% archiving|******************************************************* | 87% archiving|******************************************************** | 87% archiving|******************************************************** | 88% archiving|********************************************************* | 88% archiving|********************************************************* | 89% archiving|********************************************************* | 90% archiving|********************************************************** | 90% archiving|********************************************************** | 91% archiving|*********************************************************** | 91% archiving|*********************************************************** | 92% archiving|*********************************************************** | 93% archiving|************************************************************ | 93% archiving|************************************************************ | 94% archiving|************************************************************ | 95% archiving|************************************************************* | 95% archiving|************************************************************* | 96% archiving|************************************************************** | 96% archiving|************************************************************** | 97% archiving|************************************************************** | 98% archiving|*************************************************************** | 98% archiving|*************************************************************** | 99% archiving|****************************************************************| 99% archiving|****************************************************************|100% Link to /exopi-cvs/ports/packages/amd64/ftp/boswars-2.7p4.tgz >>> Running clean in games/boswars at 1713533832.90 ===> games/boswars ===> Cleaning for boswars-2.7p4 >>> Ended at 1713533834.62 max_stuck=7.60/depends=8.44/show-prepare-results=2.58/extract=3.58/patch=1.57/configure=1.78/build=363.92/fake=2.50/package=31.87/clean=1.76