11, added misc/mac files

master
Omnistudent 2013-11-25 22:59:35 +01:00
parent 9baa1c8146
commit 4669575f8f
36 changed files with 4140 additions and 116 deletions

BIN
.CMakeLists.txt.swp Normal file

Binary file not shown.

View File

@ -70,13 +70,18 @@ if(WIN32)
set(EXAMPLE_CONF_DIR ".")
set(LOCALEDIR "locale")
elseif(APPLE)
set(SHAREDIR ".")
# Random placeholders; this isn't usually used and may not work
# See https://github.com/toabi/minetest-mac/
set(SHAREDIR "${CMAKE_INSTALL_PREFIX}/share/${PROJECT_NAME}")
set(BINDIR "bin")
set(DOCDIR "share/doc/${PROJECT_NAME}")
set(EXAMPLE_CONF_DIR ${DOCDIR})
set(LOCALEDIR "locale")
#set(SHAREDIR "${CMAKE_INSTALL_PREFIX}/share/${PROJECT_NAME}")
#set(BINDIR "bin")
#set(DOCDIR "share/doc/${PROJECT_NAME}")
#set(EXAMPLE_CONF_DIR ${DOCDIR})
#set(LOCALEDIR "locale")
set(BINDIR "./bin")
set(DOCDIR "./doc/${PROJECT_NAME}")
set(EXAMPLE_CONF_DIR ${DOCDIR})
set(LOCALEDIR "locale")
elseif(UNIX) # Linux, BSD etc
if(RUN_IN_PLACE)
set(SHAREDIR ".")
@ -95,7 +100,8 @@ elseif(UNIX) # Linux, BSD etc
set(EXAMPLE_CONF_DIR ${DOCDIR})
set(XDG_APPS_DIR "${CMAKE_INSTALL_PREFIX}/share/applications")
set(ICONDIR "${CMAKE_INSTALL_PREFIX}/share/icons")
set(LOCALEDIR "${CMAKE_INSTALL_PREFIX}/share/${PROJECT_NAME}/locale")
#set(LOCALEDIR "${CMAKE_INSTALL_PREFIX}/share/${PROJECT_NAME}/locale")
set(LOCALEDIR "${CMAKE_INSTALL_PREFIX}/share/locale")
endif()
endif()
@ -139,24 +145,38 @@ if(NOT CUSTOM_LOCALEDIR STREQUAL "")
set(LOCALEDIR "${CUSTOM_LOCALEDIR}")
message(STATUS "Using LOCALEDIR=${LOCALEDIR}")
endif()
install(DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/builtin" DESTINATION "./bin/share/")
install(DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/builtin" DESTINATION "${SHAREDIR}")
#install(DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/builtin" DESTINATION "${SHAREDIR}")
install(DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/client" DESTINATION "${SHAREDIR}")
install(DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/games/minimal" DESTINATION "${SHAREDIR}/games")
#install(DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/games/minimal" DESTINATION "${SHAREDIR}/games")
install(DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/games/minimal" DESTINATION "./bin/share/games")
set(MINETEST_GAME_SOURCE "${CMAKE_CURRENT_SOURCE_DIR}/games/minetest_game")
if(EXISTS ${MINETEST_GAME_SOURCE} AND IS_DIRECTORY ${MINETEST_GAME_SOURCE})
install(FILES ${MINETEST_GAME_SOURCE}/game.conf DESTINATION "${SHAREDIR}/games/minetest_game/")
install(FILES ${MINETEST_GAME_SOURCE}/README.txt DESTINATION "${SHAREDIR}/games/minetest_game/")
install(DIRECTORY ${MINETEST_GAME_SOURCE}/mods DESTINATION "${SHAREDIR}/games/minetest_game")
install(DIRECTORY ${MINETEST_GAME_SOURCE}/menu DESTINATION "${SHAREDIR}/games/minetest_game")
# install(FILES ${MINETEST_GAME_SOURCE}/game.conf DESTINATION "${SHAREDIR}/games/minetest_game/")
# install(FILES ${MINETEST_GAME_SOURCE}/README.txt DESTINATION "${SHAREDIR}/games/minetest_game/")
# install(DIRECTORY ${MINETEST_GAME_SOURCE}/mods DESTINATION "${SHAREDIR}/games/minetest_game")
# install(DIRECTORY ${MINETEST_GAME_SOURCE}/menu DESTINATION "${SHAREDIR}/games/minetest_game")
install(FILES ${MINETEST_GAME_SOURCE}/game.conf DESTINATION "./bin/share/games/minetest_game/")
install(FILES ${MINETEST_GAME_SOURCE}/README.txt DESTINATION "./bin/share/games/minetest_game/")
install(DIRECTORY ${MINETEST_GAME_SOURCE}/mods DESTINATION "./bin/share/games/minetest_game")
install(DIRECTORY ${MINETEST_GAME_SOURCE}/menu DESTINATION "./bin/share/games/minetest_game")
endif()
if(BUILD_CLIENT)
#install(DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/sounds/base/pack" DESTINATION "${SHAREDIR}/sounds/base")
install(DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/textures/base/pack" DESTINATION "${SHAREDIR}/textures/base")
# install(DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/textures/base/pack" DESTINATION "${SHAREDIR}/textures/base")
install(DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/textures/base/pack" DESTINATION "./bin/share/textures/base")
endif()
if(RUN_IN_PLACE)
install(FILES "${CMAKE_CURRENT_SOURCE_DIR}/mods/mods_here.txt" DESTINATION "${SHAREDIR}/mods")
install(FILES "${CMAKE_CURRENT_SOURCE_DIR}/textures/texture_packs_here.txt" DESTINATION "${SHAREDIR}/textures")
install(FILES "${CMAKE_CURRENT_SOURCE_DIR}/mods/mods_here.txt" DESTINATION "${SHAREDIR}/mods")
#install(FILES "${CMAKE_CURRENT_SOURCE_DIR}/mods/mods_here.txt" DESTINATION "${SHAREDIR}/mods")
# install(FILES "${CMAKE_CURRENT_SOURCE_DIR}/textures/texture_packs_here.txt" DESTINATION "${SHAREDIR}/textures")
install(FILES "${CMAKE_CURRENT_SOURCE_DIR}/textures/texture_packs_here.txt" DESTINATION "./bin/share/textures")
endif()
install(DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/fonts" DESTINATION "${SHAREDIR}")
@ -166,9 +186,9 @@ install(FILES "doc/lua_api.txt" DESTINATION "${DOCDIR}")
install(FILES "doc/mapformat.txt" DESTINATION "${DOCDIR}")
install(FILES "minetest.conf.example" DESTINATION "${EXAMPLE_CONF_DIR}")
if(UNIX)
if(UNIX AND NOT APPLE)
install(FILES "doc/minetest.6" "doc/minetestserver.6" DESTINATION "${MANDIR}/man6")
#install(FILES "misc/minetest.desktop" DESTINATION "${XDG_APPS_DIR}")
install(FILES "misc/minetest.desktop" DESTINATION "${XDG_APPS_DIR}")
install(FILES "misc/minetest-icon.svg" DESTINATION "${ICONDIR}/hicolor/scalable/apps")
endif()
@ -209,11 +229,20 @@ elseif(APPLE)
# see http://cmake.org/Wiki/CMake:CPackPackageGenerators#Bundle_.28OSX_only.29
#
set(CPACK_PACKAGE_FILE_NAME "${PROJECT_NAME}-${VERSION_STRING}-osx")
set(CPACK_PACKAGE_ICON "")
# set(CPACK_PACKAGE_ICON "")
set(CPACK_PACKAGE_ICON ${CMAKE_CURRENT_SOURCE_DIR}/misc/mac/minetest-icon.icns)
set(CPACK_BUNDLE_NAME ${PROJECT_NAME})
set(CPACK_BUNDLE_ICON "")
set(CPACK_BUNDLE_PLIST "")
set(CPACK_BUNDLE_STARTUP_COMMAND "Contents/MacOS/${PROJECT_NAME}")
set(CPACK_BUNDLE_ICON ${CPACK_PACKAGE_ICON})
# set(CPACK_BUNDLE_ICON "")
#set(CPACK_BUNDLE_PLIST "")
set(CPACK_BUNDLE_PLIST ${CMAKE_CURRENT_SOURCE_DIR}/misc/mac/Info.plist)
#set(CPACK_BUNDLE_STARTUP_COMMAND "Contents/MacOS/${PROJECT_NAME}")
set(CPACK_BUNDLE_STARTUP_COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/misc/mac/minetest-mac.sh)
set(CPACK_GENERATOR "Bundle")
else()
set(CPACK_PACKAGE_FILE_NAME "${PROJECT_NAME}-${VERSION_STRING}-linux")

View File

@ -0,0 +1,412 @@
Minetest
============
An InfiniMiner/Minecraft inspired game.
Copyright (c) 2010-2013 Perttu Ahola <celeron55@gmail.com>
and contributors (see source file comments and the version control log)
In case you downloaded the source code:
---------------------------------------
If you downloaded the Minetest Engine source code in which this file is
contained, you probably want to download the minetest_game project too:
https://github.com/minetest/minetest_game/
See the README.txt in it.
Further documentation
----------------------
- Website: http://minetest.net/
- Wiki: http://wiki.minetest.net/
- Developer wiki: http://dev.minetest.net/
- Forum: http://forum.minetest.net/
- Github: https://github.com/minetest/minetest/
- doc/ directory of source distribution
This game is not finished
--------------------------
- Don't expect it to work as well as a finished game will.
- Please report any bugs. When doing that, debug.txt is useful.
Default Controls
-----------------
- WASD: move
- Space: jump/climb
- Shift: sneak/go down
- Q: drop item
- I: inventory
- Mouse: turn/look
- Mouse left: dig/punch
- Mouse right: place/use
- Mouse wheel: select item
- Esc: pause menu
- T: chat
- Settable in the configuration file, see the section below.
Paths
------
$bin - Compiled binaries
$share - Distributed read-only data
$user - User-created modifiable data
Windows .zip / RUN_IN_PLACE source:
$bin = bin
$share = .
$user = .
Linux installed:
$bin = /usr/bin
$share = /usr/share/minetest
$user = ~/.minetest
OS X:
$bin = ?
$share = ?
$user = ~/Library/Application Support/minetest
World directory
----------------
- Worlds can be found as separate folders in:
$user/worlds/
Configuration file:
-------------------
- Default location:
$user/minetest.conf
- It is created by Minetest when it is ran the first time.
- A specific file can be specified on the command line:
--config <path-to-file>
Command-line options:
---------------------
- Use --help
Compiling on GNU/Linux:
-----------------------
Install dependencies. Here's an example for Debian/Ubuntu:
$ apt-get install build-essential libirrlicht-dev cmake libbz2-dev libpng12-dev libjpeg8-dev libxxf86vm-dev libgl1-mesa-dev libsqlite3-dev libogg-dev libvorbis-dev libopenal-dev libcurl4-gnutls-dev libfreetype6-dev
Download source, extract (this is the URL to the latest of source repository, which might not work at all times):
$ wget https://github.com/minetest/minetest/tarball/master -O master.tar.gz
$ tar xf master.tar.gz
$ cd minetest-minetest-286edd4 (or similar)
Download minetest_game (otherwise only the "Minimal development test" game is available)
$ cd games/
$ wget https://github.com/minetest/minetest_game/tarball/master -O minetest_game.tar.gz
$ tar xf minetest_game.tar.gz
$ mv minetest-minetest_game-* minetest_game
$ cd ..
Build a version that runs directly from the source directory:
$ cmake . -DRUN_IN_PLACE=1
$ make -j2
Run it:
$ cd bin
$ ./minetest
- Use cmake . -LH to see all CMake options and their current state
- If you want to install it system-wide (or are making a distribution package), you will want to use -DRUN_IN_PLACE=0
- You can build a bare server or a bare client by specifying -DBUILD_CLIENT=0 or -DBUILD_SERVER=0
- You can select between Release and Debug build by -DCMAKE_BUILD_TYPE=<Debug or Release>
- Debug build is slower, but gives much more useful output in a debugger
- If you build a bare server, you don't need to have Irrlicht installed. In that case use -DIRRLICHT_SOURCE_DIR=/the/irrlicht/source
Compiling on Windows:
---------------------
- This section is outdated. In addition to what is described here:
- In addition to minetest, you need to download minetest_game.
- If you wish to have sound support, you need libogg, libvorbis and libopenal
- You need:
* CMake:
http://www.cmake.org/cmake/resources/software.html
* MinGW or Visual Studio
http://www.mingw.org/
http://msdn.microsoft.com/en-us/vstudio/default
* Irrlicht SDK 1.7:
http://irrlicht.sourceforge.net/downloads.html
* Zlib headers (zlib125.zip)
http://www.winimage.com/zLibDll/index.html
* Zlib library (zlibwapi.lib and zlibwapi.dll from zlib125dll.zip):
http://www.winimage.com/zLibDll/index.html
* Optional: gettext library and tools:
http://gnuwin32.sourceforge.net/downlinks/gettext.php
- This is used for other UI languages. Feel free to leave it out.
* And, of course, Minetest:
http://minetest.net/download.php
- Steps:
- Select a directory called DIR hereafter in which you will operate.
- Make sure you have CMake and a compiler installed.
- Download all the other stuff to DIR and extract them into there.
("extract here", not "extract to packagename/")
NOTE: zlib125dll.zip needs to be extracted into zlib125dll
- All those packages contain a nice base directory in them, which
should end up being the direct subdirectories of DIR.
- You will end up with a directory structure like this (+=dir, -=file):
-----------------
+ DIR
- zlib-1.2.5.tar.gz
- zlib125dll.zip
- irrlicht-1.7.1.zip
- 110214175330.zip (or whatever, this is the minetest source)
+ zlib-1.2.5
- zlib.h
+ win32
...
+ zlib125dll
- readme.txt
+ dll32
...
+ irrlicht-1.7.1
+ lib
+ include
...
+ gettext (optional)
+bin
+include
+lib
+ minetest
+ src
+ doc
- CMakeLists.txt
...
-----------------
- Start up the CMake GUI
- Select "Browse Source..." and select DIR/minetest
- Now, if using MSVC:
- Select "Browse Build..." and select DIR/minetest-build
- Else if using MinGW:
- Select "Browse Build..." and select DIR/minetest
- Select "Configure"
- Select your compiler
- It will warn about missing stuff, ignore that at this point. (later don't)
- Make sure the configuration is as follows
(note that the versions may differ for you):
-----------------
BUILD_CLIENT [X]
BUILD_SERVER [ ]
CMAKE_BUILD_TYPE Release
CMAKE_INSTALL_PREFIX DIR/minetest-install
IRRLICHT_SOURCE_DIR DIR/irrlicht-1.7.1
RUN_IN_PLACE [X]
WARN_ALL [ ]
ZLIB_DLL DIR/zlib125dll/dll32/zlibwapi.dll
ZLIB_INCLUDE_DIR DIR/zlib-1.2.5
ZLIB_LIBRARIES DIR/zlib125dll/dll32/zlibwapi.lib
GETTEXT_BIN_DIR DIR/gettext/bin
GETTEXT_INCLUDE_DIR DIR/gettext/include
GETTEXT_LIBRARIES DIR/gettext/lib/intl.lib
GETTEXT_MSGFMT DIR/gettext/bin/msgfmt
-----------------
- Hit "Configure"
- Hit "Configure" once again 8)
- If something is still coloured red, you have a problem.
- Hit "Generate"
If using MSVC:
- Open the generated minetest.sln
- The project defaults to the "Debug" configuration. Make very sure to
select "Release", unless you want to debug some stuff (it's slower
and might not even work at all)
- Build the ALL_BUILD project
- Build the INSTALL project
- You should now have a working game with the executable in
DIR/minetest-install/bin/minetest.exe
- Additionally you may create a zip package by building the PACKAGE
project.
If using MinGW:
- Using the command line, browse to the build directory and run 'make'
(or mingw32-make or whatever it happens to be)
- You may need to copy some of the downloaded DLLs into bin/, see what
running the produced executable tells you it doesn't have.
- You should now have a working game with the executable in
DIR/minetest/bin/minetest.exe
Windows releases of minetest are built using a bat script like this:
--------------------------------------------------------------------
set sourcedir=%CD%
set installpath="C:\tmp\minetest_install"
set irrlichtpath="C:\tmp\irrlicht-1.7.2"
set builddir=%sourcedir%\bvc10
mkdir %builddir%
pushd %builddir%
cmake %sourcedir% -G "Visual Studio 10" -DIRRLICHT_SOURCE_DIR=%irrlichtpath% -DRUN_IN_PLACE=1 -DCMAKE_INSTALL_PREFIX=%installpath%
if %errorlevel% neq 0 goto fail
"C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe" ALL_BUILD.vcxproj /p:Configuration=Release
if %errorlevel% neq 0 goto fail
"C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe" INSTALL.vcxproj /p:Configuration=Release
if %errorlevel% neq 0 goto fail
"C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe" PACKAGE.vcxproj /p:Configuration=Release
if %errorlevel% neq 0 goto fail
popd
echo Finished.
exit /b 0
:fail
popd
echo Failed.
exit /b 1
License of Minetest textures and sounds
---------------------------------------
This applies to textures and sounds contained in the main Minetest
distribution.
Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0)
http://creativecommons.org/licenses/by-sa/3.0/
Authors of media files
-----------------------
Everything not listed in here:
Copyright (C) 2010-2012 celeron55, Perttu Ahola <celeron55@gmail.com>
BlockMen:
textures/base/pack/menuheader.png
erlehmann:
misc/minetest-icon-24x24.png
misc/minetest-icon.ico
misc/minetest-icon.svg
textures/base/pack/logo.png
License of Minetest source code
-------------------------------
Minetest
Copyright (C) 2010-2013 celeron55, Perttu Ahola <celeron55@gmail.com>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
Irrlicht
---------------
This program uses the Irrlicht Engine. http://irrlicht.sourceforge.net/
The Irrlicht Engine License
Copyright © 2002-2005 Nikolaus Gebhardt
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute
it freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you
must not claim that you wrote the original software. If you use
this software in a product, an acknowledgment in the product
documentation would be appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must
not be misrepresented as being the original software.
3. This notice may not be removed or altered from any source
distribution.
JThread
---------------
This program uses the JThread library. License for JThread follows:
Copyright (c) 2000-2006 Jori Liesenborgs (jori.liesenborgs@gmail.com)
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
IN THE SOFTWARE.
Lua
---------------
Lua is licensed under the terms of the MIT license reproduced below.
This means that Lua is free software and can be used for both academic
and commercial purposes at absolutely no cost.
For details and rationale, see http://www.lua.org/license.html .
Copyright (C) 1994-2008 Lua.org, PUC-Rio.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
Fonts
---------------
DejaVu Sans Mono:
Fonts are (c) Bitstream (see below). DejaVu changes are in public domain.
Glyphs imported from Arev fonts are (c) Tavmjong Bah (see below)
Bitstream Vera Fonts Copyright:
Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. Bitstream Vera is
a trademark of Bitstream, Inc.
Arev Fonts Copyright:
Copyright (c) 2006 by Tavmjong Bah. All Rights Reserved.
Liberation Fonts Copyright:
Copyright (c) 2007 Red Hat, Inc. All rights reserved. LIBERATION is a trademark of Red Hat, Inc.
DroidSansFallback:
Copyright (C) 2008 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

View File

@ -0,0 +1,583 @@
=============================
Minetest World Format 22...25
=============================
This applies to a world format carrying the block serialization version
22...25, used at least in
- 0.4.dev-20120322 ... 0.4.dev-20120606 (22...23)
- 0.4.0 (23)
- 24 was never released as stable and existed for ~2 days
The block serialization version does not fully specify every aspect of this
format; if compliance with this format is to be checked, it needs to be
done by detecting if the files and data indeed follows it.
Legacy stuff
=============
Data can, in theory, be contained in the flat file directory structure
described below in Version 17, but it is not officially supported. Also you
may stumble upon all kinds of oddities in not-so-recent formats.
Files
======
Everything is contained in a directory, the name of which is freeform, but
often serves as the name of the world.
Currently the authentication and ban data is stored on a per-world basis.
It can be copied over from an old world to a newly created world.
World
|-- auth.txt ----- Authentication data
|-- env_meta.txt - Environment metadata
|-- ipban.txt ---- Banned ips/users
|-- map_meta.txt - Map metadata
|-- map.sqlite --- Map data
|-- players ------ Player directory
| |-- player1 -- Player file
| '-- Foo ------ Player file
`-- world.mt ----- World metadata
auth.txt
---------
Contains authentication data, player per line.
<name>:<password hash>:<privilege1,...>
Format of password hash is <name><password> SHA1'd, in the base64 encoding.
Example lines:
- Player "celeron55", no password, privileges "interact" and "shout":
celeron55::interact,shout
- Player "Foo", password "bar", privilege "shout":
foo:iEPX+SQWIR3p67lj/0zigSWTKHg:shout
- Player "bar", no password, no privileges:
bar::
env_meta.txt
-------------
Simple global environment variables.
Example content (added indentation):
game_time = 73471
time_of_day = 19118
EnvArgsEnd
ipban.txt
----------
Banned IP addresses and usernames.
Example content (added indentation):
123.456.78.9|foo
123.456.78.10|bar
map_meta.txt
-------------
Simple global map variables.
Example content (added indentation):
seed = 7980462765762429666
[end_of_params]
map.sqlite
-----------
Map data.
See Map File Format below.
player1, Foo
-------------
Player data.
Filename can be anything.
See Player File Format below.
world.mt
---------
World metadata.
Example content (added indentation):
gameid = mesetint
Player File Format
===================
- Should be pretty self-explanatory.
- Note: position is in nodes * 10
Example content (added indentation):
hp = 11
name = celeron55
pitch = 39.77
position = (-5231.97,15,1961.41)
version = 1
yaw = 101.37
PlayerArgsEnd
List main 32
Item default:torch 13
Item default:pick_steel 1 50112
Item experimental:tnt
Item default:cobble 99
Item default:pick_stone 1 13104
Item default:shovel_steel 1 51838
Item default:dirt 61
Item default:rail 78
Item default:coal_lump 3
Item default:cobble 99
Item default:leaves 22
Item default:gravel 52
Item default:axe_steel 1 2045
Item default:cobble 98
Item default:sand 61
Item default:water_source 94
Item default:glass 2
Item default:mossycobble
Item default:pick_steel 1 64428
Item animalmaterials:bone
Item default:sword_steel
Item default:sapling
Item default:sword_stone 1 10647
Item default:dirt 99
Empty
Empty
Empty
Empty
Empty
Empty
Empty
Empty
EndInventoryList
List craft 9
Empty
Empty
Empty
Empty
Empty
Empty
Empty
Empty
Empty
EndInventoryList
List craftpreview 1
Empty
EndInventoryList
List craftresult 1
Empty
EndInventoryList
EndInventory
Map File Format
================
Minetest maps consist of MapBlocks, chunks of 16x16x16 nodes.
In addition to the bulk node data, MapBlocks stored on disk also contain
other things.
History
--------
We need a bit of history in here. Initially Minetest stored maps in a
format called the "sectors" format. It was a directory/file structure like
this:
sectors2/XXX/ZZZ/YYYY
For example, the MapBlock at (0,1,-2) was this file:
sectors2/000/ffd/0001
Eventually Minetest outgrow this directory structure, as filesystems were
struggling under the amount of files and directories.
Large servers seriously needed a new format, and thus the base of the
current format was invented, suggested by celeron55 and implemented by
JacobF.
SQLite3 was slammed in, and blocks files were directly inserted as blobs
in a single table, indexed by integer primary keys, oddly mangled from
coordinates.
Today we know that SQLite3 allows multiple primary keys (which would allow
storing coordinates separately), but the format has been kept unchanged for
that part. So, this is where it has come.
</history>
So here goes
-------------
map.sqlite is an sqlite3 database, containg a single table, called
"blocks". It looks like this:
CREATE TABLE `blocks` (`pos` INT NOT NULL PRIMARY KEY,`data` BLOB);
The key
--------
"pos" is created from the three coordinates of a MapBlock using this
algorithm, defined here in Python:
def getBlockAsInteger(p):
return int64(p[2]*16777216 + p[1]*4096 + p[0])
def int64(u):
while u >= 2**63:
u -= 2**64
while u <= -2**63:
u += 2**64
return u
It can be converted the other way by using this code:
def getIntegerAsBlock(i):
x = unsignedToSigned(i % 4096, 2048)
i = int((i - x) / 4096)
y = unsignedToSigned(i % 4096, 2048)
i = int((i - y) / 4096)
z = unsignedToSigned(i % 4096, 2048)
return x,y,z
def unsignedToSigned(i, max_positive):
if i < max_positive:
return i
else:
return i - 2*max_positive
The blob
---------
The blob is the data that would have otherwise gone into the file.
See below for description.
MapBlock serialization format
==============================
NOTE: Byte order is MSB first (big-endian).
NOTE: Zlib data is in such a format that Python's zlib at least can
directly decompress.
u8 version
- map format version number, this one is version 22
u8 flags
- Flag bitmasks:
- 0x01: is_underground: Should be set to 0 if there will be no light
obstructions above the block. If/when sunlight of a block is updated
and there is no block above it, this value is checked for determining
whether sunlight comes from the top.
- 0x02: day_night_differs: Whether the lighting of the block is different
on day and night. Only blocks that have this bit set are updated when
day transforms to night.
- 0x04: lighting_expired: If true, lighting is invalid and should be
updated. If you can't calculate lighting in your generator properly,
you could try setting this 1 to everything and setting the uppermost
block in every sector as is_underground=0. I am quite sure it doesn't
work properly, though.
- 0x08: generated: True if the block has been generated. If false, block
is mostly filled with CONTENT_IGNORE and is likely to contain eg. parts
of trees of neighboring blocks.
u8 content_width
- Number of bytes in the content (param0) fields of nodes
if map format version <= 23:
- Always 1
if map format version >= 24:
- Always 2
u8 params_width
- Number of bytes used for parameters per node
- Always 2
zlib-compressed node data:
if content_width == 1:
- content:
u8[4096]: param0 fields
u8[4096]: param1 fields
u8[4096]: param2 fields
if content_width == 2:
- content:
u16[4096]: param0 fields
u8[4096]: param1 fields
u8[4096]: param2 fields
- The location of a node in each of those arrays is (z*16*16 + y*16 + x).
zlib-compressed node metadata list
- content:
u16 version (=1)
u16 count of metadata
foreach count:
u16 position (p.Z*MAP_BLOCKSIZE*MAP_BLOCKSIZE + p.Y*MAP_BLOCKSIZE + p.X)
u16 type_id
u16 content_size
u8[content_size] (content of metadata)
- Node timers
if map format version == 23:
u8 unused version (always 0)
if map format version == 24: (NOTE: Not released as stable)
u8 nodetimer_version
if nodetimer_version == 0:
(nothing else)
if nodetimer_version == 1:
u16 num_of_timers
foreach num_of_timers:
u16 timer position (z*16*16 + y*16 + x)
s32 timeout*1000
s32 elapsed*1000
u8 static object version:
- Always 0
u16 static_object_count
foreach static_object_count:
u8 type (object type-id)
s32 pos_x_nodes * 10000
s32 pos_y_nodes * 10000
s32 pos_z_nodes * 10000
u16 data_size
u8[data_size] data
u32 timestamp
- Timestamp when last saved, as seconds from starting the game.
- 0xffffffff = invalid/unknown timestamp, nothing should be done with the time
difference when loaded
u8 name-id-mapping version
- Always 0
u16 num_name_id_mappings
foreach num_name_id_mappings
u16 id
u16 name_len
u8[name_len] name
- Node timers
if map format version == 25:
u8 length of the data of a single timer (always 2+4+4=10)
u16 num_of_timers
foreach num_of_timers:
u16 timer position (z*16*16 + y*16 + x)
s32 timeout*1000
s32 elapsed*1000
EOF.
Format of nodes
----------------
A node is composed of the u8 fields param0, param1 and param2.
if map format version <= 23:
The content id of a node is determined as so:
- If param0 < 0x80,
content_id = param0
- Otherwise
content_id = (param0<<4) + (param2>>4)
if map format version >= 24:
The content id of a node is param0.
The purpose of param1 and param2 depend on the definition of the node.
The name-id-mapping
--------------------
The mapping maps node content ids to node names.
Node metadata format
---------------------
1: Generic metadata
serialized inventory
u32 len
u8[len] text
u16 len
u8[len] owner
u16 len
u8[len] infotext
u16 len
u8[len] inventory drawspec
u8 allow_text_input (bool)
u8 removal_disabled (bool)
u8 enforce_owner (bool)
u32 num_vars
foreach num_vars
u16 len
u8[len] name
u32 len
u8[len] value
14: Sign metadata
u16 text_len
u8[text_len] text
15: Chest metadata
serialized inventory
16: Furnace metadata
TBD
17: Locked Chest metadata
u16 len
u8[len] owner
serialized inventory
Static objects
---------------
Static objects are persistent freely moving objects in the world.
Object types:
1: Test object
2: Item
3: Rat (deprecated)
4: Oerkki (deprecated)
5: Firefly (deprecated)
6: MobV2 (deprecated)
7: LuaEntity
1: Item:
u8 version
version 0:
u16 len
u8[len] itemstring
7: LuaEntity:
u8 version
version 1:
u16 len
u8[len] entity name
u32 len
u8[len] static data
s16 hp
s32 velocity.x * 10000
s32 velocity.y * 10000
s32 velocity.z * 10000
s32 yaw * 1000
Itemstring format
------------------
eg. 'default:dirt 5'
eg. 'default:pick_wood 21323'
eg. '"default:apple" 2'
eg. 'default:apple'
- The wear value in tools is 0...65535
- There are also a number of older formats that you might stumble upon:
eg. 'node "default:dirt" 5'
eg. 'NodeItem default:dirt 5'
eg. 'ToolItem WPick 21323'
Inventory serialization format
-------------------------------
- The inventory serialization format is line-based
- The newline character used is "\n"
- The end condition of a serialized inventory is always "EndInventory\n"
- All the slots in a list must always be serialized.
Example (format does not include "---"):
---
List foo 4
Item default:sapling
Item default:sword_stone 1 10647
Item default:dirt 99
Empty
EndInventoryList
List bar 9
Empty
Empty
Empty
Empty
Empty
Empty
Empty
Empty
Empty
EndInventoryList
EndInventory
---
==============================================
Minetest World Format used as of 2011-05 or so
==============================================
Map data serialization format version 17.
0.3.1 does not use this format, but a more recent one. This exists here for
historical reasons.
Directory structure:
sectors/XXXXZZZZ or sectors2/XXX/ZZZ
XXXX, ZZZZ, XXX and ZZZ being the hexadecimal X and Z coordinates.
Under these, the block files are stored, called YYYY.
There also exists files map_meta.txt and chunk_meta, that are used by the
generator. If they are not found or invalid, the generator will currently
behave quite strangely.
The MapBlock file format (sectors2/XXX/ZZZ/YYYY):
-------------------------------------------------
NOTE: Byte order is MSB first.
u8 version
- map format version number, this one is version 17
u8 flags
- Flag bitmasks:
- 0x01: is_underground: Should be set to 0 if there will be no light
obstructions above the block. If/when sunlight of a block is updated and
there is no block above it, this value is checked for determining whether
sunlight comes from the top.
- 0x02: day_night_differs: Whether the lighting of the block is different on
day and night. Only blocks that have this bit set are updated when day
transforms to night.
- 0x04: lighting_expired: If true, lighting is invalid and should be updated.
If you can't calculate lighting in your generator properly, you could try
setting this 1 to everything and setting the uppermost block in every
sector as is_underground=0. I am quite sure it doesn't work properly,
though.
zlib-compressed map data:
- content:
u8[4096]: content types
u8[4096]: param1 values
u8[4096]: param2 values
zlib-compressed node metadata
- content:
u16 version (=1)
u16 count of metadata
foreach count:
u16 position (= p.Z*MAP_BLOCKSIZE*MAP_BLOCKSIZE + p.Y*MAP_BLOCKSIZE + p.X)
u16 type_id
u16 content_size
u8[content_size] misc. stuff contained in the metadata
u16 mapblockobject_count
- always write as 0.
- if read != 0, just fail.
foreach mapblockobject_count:
- deprecated, should not be used. Length of this data can only be known by
properly parsing it. Just hope not to run into any of this.
u8 static object version:
- currently 0
u16 static_object_count
foreach static_object_count:
u8 type (object type-id)
s32 pos_x * 1000
s32 pos_y * 1000
s32 pos_z * 1000
u16 data_size
u8[data_size] data
u32 timestamp
- Timestamp when last saved, as seconds from starting the game.
- 0xffffffff = invalid/unknown timestamp, nothing will be done with the time
difference when loaded (recommended)
Node metadata format:
---------------------
Sign metadata:
u16 string_len
u8[string_len] string
Furnace metadata:
TBD
Chest metadata:
TBD
Locking Chest metadata:
u16 string_len
u8[string_len] string
TBD
// END

View File

@ -0,0 +1,402 @@
# This file is read by default from:
# ../minetest.conf
# ../../minetest.conf
# Any other path can be chosen by passing the path as a parameter
# to the program, eg. "minetest.exe --config ../minetest.conf.example"
#
# By default, all the settings are commented and not functional.
# Uncomment settings by removing the preceding #.
#
# Further documentation:
# http://wiki.minetest.net/
#
# NOTE: This file might not be up-to-date, refer to the
# defaultsettings.cpp file for an up-to-date list:
# https://github.com/minetest/minetest/blob/master/src/defaultsettings.cpp
#
# A vim command to convert most of defaultsettings.cpp to conf file format:
# :'<,'>s/\tsettings->setDefault("\([^"]*\)", "\([^"]*\)");.*/#\1 = \2/g
# Note: Some of the settings are implemented in Lua
#
# Client and server
#
# Network port (UDP)
#port =
# Name of player; on a server this is the main admin
#name =
#
# Client stuff
#
# Key mappings
# See http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3
#keymap_forward = KEY_KEY_W
#keymap_backward = KEY_KEY_S
#keymap_left = KEY_KEY_A
#keymap_right = KEY_KEY_D
#keymap_jump = KEY_SPACE
#keymap_sneak = KEY_LSHIFT
#keymap_inventory = KEY_KEY_I
# Go down ladder / go down in fly mode / go fast in fast mode
#keymap_special1 = KEY_KEY_E
#keymap_chat = KEY_KEY_T
#keymap_cmd = /
#keyman_console = KEY_F10
#keymap_rangeselect = KEY_KEY_R
#keymap_freemove = KEY_KEY_K
#keymap_fastmove = KEY_KEY_J
#keymap_screenshot = KEY_F12
# If true, keymap_special1 instead of keymap_sneak is used for climbing down and descending
#aux1_descends = false
# Doubletaping the jump key toogles fly mode
#doubletap_jump = false
# If false aux1 is used to fly fast
#always_fly_fast = true
# Some (temporary) keys for debugging
#keymap_print_debug_stacks = KEY_KEY_P
#keymap_quicktune_prev = KEY_HOME
#keymap_quicktune_next = KEY_END
#keymap_quicktune_dec = KEY_NEXT
#keymap_quicktune_inc = KEY_PRIOR
# Minimum FPS
# The amount of rendered stuff is dynamically set according to this
#wanted_fps = 30
# If FPS would go higher than this, limit it by sleeping
# (to not waste CPU power for no benefit)
#fps_max = 60
# The allowed adjustment range for the automatic rendering range adjustment
#viewing_range_nodes_max = 160
#viewing_range_nodes_min = 35
# Initial window size
#screenW = 800
#screenH = 600
#fullscreen = false
#fullscreen_bpp = 24
# Experimental option, might cause visible spaces between blocks
# when set to higher number than 0
#fsaa = 0
#vsync = false
#fov = 72
# Address to connect to (#blank = start local server)
#address =
# Enable random user input, for testing
#random_input = false
# Timeout for client to remove unused map data from memory
#client_unload_unused_data_timeout = 600
# Whether to fog out the end of the visible area
#enable_fog = true
# Enable a bit lower water surface; disable for speed (not quite optimized)
#new_style_water = false
# Constant volume liquids
#liquid_finite = false
# Max liquids processed per step
#liquid_loop_max = 10000
# Update liquids every .. recommend for finite: 0.2
#liquid_update = 1.0
# Relax flowing blocks to source if level near max and N nearby
# source blocks, more realistic, but not true constant.
# values: 0,1,2,3,4 : 0 - disable, 1 - most aggresive
# (for finite liquids)
#liquid_relax = 2
# Optimization: faster cave flood (and not true constant)
# (for finite liquids)
#liquid_fast_flood = 1
# Underground water and lava springs, its infnity sources if liquid_finite enabled
#underground_springs = 1
# Enable weather (cold-hot, water freeze-melt). use only with liquid_finite=1
#weather = false
# Enable nice leaves; disable for speed
#new_style_leaves = true
# Enable smooth lighting with simple ambient occlusion;
# disable for speed or for different looks.
#smooth_lighting = true
# Path to texture directory. All textures are first searched from here.
#texture_path =
# Video back-end.
# Possible values: null, software, burningsvideo, direct3d8, direct3d9, opengl
#video_driver = opengl
# Unobstructed movement without physics, downwards key is keymap_special1
#free_move = false
# Continuous forward movement (for testing)
#continuous_forward = false
# Fast movement (keymap_special1)
#fast_move = false
# Invert mouse
#invert_mouse = false
# Enable/disable clouds
#enable_clouds = true
#cloud_height = 120
#enable_3d_clouds = true
# Use a cloud animation for the main menu background
#menu_clouds = true
# Path for screenshots
#screenshot_path = .
# Amount of view bobbing (0 = no view bobbing, 1.0 = normal, 2.0 = double)
#view_bobbing_amount = 1.0
# Amount of fall bobbing (0 = no fall bobbing, 1.0 = normal, 2.0 = double)
#fall_bobbing_amount = 0.0
# Anaglyph stereo
#anaglyph = false
#anaglyph_strength = 0.1
# In-game chat console background color (R,G,B)
#console_color = (0,0,0)
# In-game chat console background alpha (opaqueness, between 0 and 255)
#console_alpha = 200
# Selection box border color (R,G,B)
#selectionbox_color = (0,0,0)
# Crosshair color (R,G,B)
#crosshair_color = (255,255,255)
# Cross alpha (opaqueness, between 0 and 255)
#crosshair_alpha = 255
# Sensitivity multiplier
#mouse_sensitivity = 0.2
# Sound settings
#enable_sound = true
#sound_volume = 0.7
# Whether node texture animations should be desynchronized per MapBlock
#desynchronize_mapblock_texture_animation = true
# Texture filtering settings
#mip_map = false
#anisotropic_filter = false
#bilinear_filter = false
#trilinear_filter = false
# Set to true to pre-generate all item visuals
#preload_item_visuals = true
# Set to true to enable shaders. Disable them if video_driver = direct3d9/8.
#enable_shaders = true
# Set to true to enable textures bumpmapping. Requires shaders enabled.
#enable_bumpmapping = false
# The time in seconds it takes between repeated
# right clicks when holding the right mouse button
#repeat_rightclick_time = 0.25
# will only work for servers which use remote_media setting
# and only for clients compiled with cURL
#media_fetch_threads = 8
# Url to the server list displayed in the Multiplayer Tab
#serverlist_url = servers.minetest.net
# File in client/serverlist/ that contains your favorite servers displayed in the Multiplayer Tab
#serverlist_file = favoriteservers.txt
# Whether freetype fonts are used, requires freetype support to be compiled in
#freetype = true
# Path to TrueTypeFont or bitmap
#font_path = fonts/liberationsans.ttf
#font_size = 13
#mono_font_path = fonts/liberationmono.ttf
#mono_font_size = 13
# This font will be used for certain languages
#fallback_font_path = fonts/DroidSansFallbackFull.ttf
#fallback_font_size = 13
#
# Server stuff
#
# Name of server
#server_name = Minetest server
# Description of server
#server_description = mine here
# Domain name of server
#server_address = game.minetest.net
# Homepage of server
#server_url = http://minetest.net
# Automaticaly report to masterserver
#server_announce = 0
# Announce to this masterserver. if you want to announce your ipv6 address - use serverlist_url = v6.servers.minetest.net
#serverlist_url = servers.minetest.net
# Default game (default when creating a new world)
#default_game = minetest
# World directory (everything in the world is stored here)
#map-dir = /custom/world
# Message of the Day
#motd = Welcome to this awesome Minetest server!
# Maximum number of players connected simultaneously
#max_users = 15
# Set to true to disallow old clients from connecting
#strict_protocol_version_checking = false
# Set to true to enable creative mode (unlimited inventory)
#creative_mode = false
# Enable players getting damage and dying
#enable_damage = false
# Despawn all non-peaceful mobs
#only_peaceful_mobs = false
# A chosen map seed for a new map, leave empty for random
#fixed_map_seed =
# Gives some stuff to players at the beginning
#give_initial_stuff = false
# New users need to input this password
#default_password =
# Available privileges: interact, shout, teleport, settime, privs, ...
# See /privs in game for a full list on your server and mod configuration.
#default_privs = interact, shout
# Whether players are shown to clients without any range limit
#unlimited_player_transfer_distance = true
# Whether to enable players killing each other
#enable_pvp = true
# If this is set, players will always (re)spawn at the given position
#static_spawnpoint = 0, 10, 0
# If true, new players cannot join with an empty password
#disallow_empty_password = false
# If true, disable cheat prevention in multiplayer
#disable_anticheat = false
# If true, actions are recorded for rollback
#enable_rollback_recording = false
# Profiler data print interval. #0 = disable.
#profiler_print_interval = 0
#enable_mapgen_debug_info = false
# from how far client knows about objects
#active_object_send_range_blocks = 3
# how large area of blocks are subject to the active block stuff (active = objects are loaded and ABMs run)
#active_block_range = 2
# how many blocks are flying in the wire simultaneously per client
#max_simultaneous_block_sends_per_client = 2
# how many blocks are flying in the wire simultaneously per server
#max_simultaneous_block_sends_server_total = 8
# From how far blocks are sent to clients (value * 16 nodes)
#max_block_send_distance = 10
# From how far blocks are generated for clients (value * 16 nodes)
#max_block_generate_distance = 6
# Number of extra blocks that can be loaded by /clearobjects at once
# This is a trade-off between sqlite transaction overhead and
# memory consumption (4096=100MB, as a rule of thumb)
#max_clearobjects_extra_loaded_blocks = 4096
# Interval of sending time of day to clients
#time_send_interval = 5
# Length of day/night cycle. 72=20min, 360=4min, 1=24hour, 0=day/night/whatever stays unchanged
#time_speed = 72
# Length of year in days for seasons change. With default time_speed 365 days = 5 real days for year. 30 days = 10 real hours
#year_days = 30
#server_unload_unused_data_timeout = 29
# Maximum number of statically stored objects in a block
#max_objects_per_block = 49
# Interval of saving important changes in the world
#server_map_save_interval = 5.3
# http://www.sqlite.org/pragma.html#pragma_synchronous only numeric values: 0 1 2
#sqlite_synchronous = 2
# To reduce lag, block transfers are slowed down when a player is building something.
# This determines how long they are slowed down after placing or removing a node.
#full_block_send_enable_min_time_from_building = 2.0
# Length of a server tick and the interval at which objects are generally updated over network
#dedicated_server_step = 0.1
# Can be set to true to disable shutting down on invalid world data
#ignore_world_load_errors = false
# Congestion control parameters
# time in seconds, rate in ~500B packets
#congestion_control_aim_rtt = 0.2
#congestion_control_max_rate = 400
#congestion_control_min_rate = 10
# Specifies URL from which client fetches media instead of using UDP
# $filename should be accessible from $remote_media$filename via cURL
# (obviously, remote_media should end with a slash)
# Files that are not present would be fetched the usual way
#remote_media =
# Level of logging to be written to debug.txt.
# 0 = none, 1 = errors and debug, 2 = action, 3 = info, 4 = verbose
#debug_log_level = 2
# Maximum number of blocks that can be queued for loading.
#emergequeue_limit_total = 256
# Maximum number of blocks to be queued that are to be loaded from file.
# Leave blank for an appropriate amount to be chosen automatically.
#emergequeue_limit_diskonly =
# Maximum number of blocks to be queued that are to be generated.
# Leave blank for an appropriate amount to be chosen automatically.
#emergequeue_limit_generate =
# Number of emerge threads to use. Make this field blank, or increase this number, to use multiple threads.
# On multiprocessor systems, this will improve mapgen speed greatly, at the cost of slightly buggy caves.
#num_emerge_threads = 1
#
# Physics stuff
#
#movement_acceleration_default = 3
#movement_acceleration_air = 2
#movement_acceleration_fast = 10
#movement_speed_walk = 4
#movement_speed_crouch = 1.35
#movement_speed_fast = 20
#movement_speed_climb = 2
#movement_speed_jump = 6.5
#movement_speed_descend = 6
#movement_liquid_fluidity = 1
#movement_liquid_fluidity_smooth = 0.5
#movement_liquid_sink = 10
#movement_gravity = 9.81
#
# Mapgen stuff
#
# Name of map generator to be used. Currently supported: v6, indev, singlenode, math
#mg_name = v6
# Water level of map.
#water_level = 1
# Size of chunks to be generated.
#chunksize = 5
# Map generation attributes. Currently supported: trees, caves, flat, v6_biome_blend, v6_jungles, dungeons, nolight
#mg_flags = trees, caves, v6_biome_blend
# How large deserts and beaches are
#mgv6_freq_desert = 0.45
#mgv6_freq_beach = 0.15
# Perlin noise attributes for different map generation parameters
# Offset, scale, spread factor, seed offset, number of octaves, persistence
#mgv6_np_terrain_base = -4, 20, (250, 250, 250), 82341, 5, 0.6
#mgv6_np_terrain_higher = 20, 16, (500, 500, 500), 85039, 5, 0.6
#mgv6_np_steepness = 0.85, 0.5, (125, 125, 125), -932, 5, 0.7
#mgv6_np_height_select = 0.5, 1, (250, 250, 250), 4213, 5, 0.69
#mgv6_np_mud = 4, 2, (200, 200, 200), 91013, 3, 0.55
#mgv6_np_beach = 0, 1, (250, 250, 250), 59420, 3, 0.50
#mgv6_np_biome = 0, 1, (250, 250, 250), 9130, 3, 0.50
#mgv6_np_cave = 6, 6, (250, 250, 250), 34329, 3, 0.50
#mgv6_np_humidity = 0.5, 0.5, (500, 500, 500), 72384, 4, 0.66
#mgv6_np_trees = 0, 1, (125, 125, 125), 2, 4, 0.66
#mgv6_np_apple_trees = 0, 1, (100, 100, 100), 342902, 3, 0.45
#mgv7_np_terrain = 10, 12, (350, 350, 350), 82341, 5, 0.6
#mgv7_np_bgroup = 0.5, 0.3125, (350, 350, 350), 5923, 2, 0.6
#mgv7_np_heat = 25, 50, (500, 500, 500), 35293, 1, 0
#mgv7_np_humidity = 50, 31.25, (750, 750, 750), 12094, 2, 0.6
# Offset, scale, spread factor, seed offset, number of octaves, persistence, farscale, farspread
#mgindev_np_terrain_base = -4, 20, (250, 250, 250), 82341, 5, 0.6, 10, 10
#mgindev_np_terrain_higher = 20, 16, (500, 500, 500), 85039, 5, 0.6, 10, 10
#mgindev_np_steepness = 0.85, 0.5, (125, 125, 125), -932, 5, 0.7, 2, 10
#mgindev_np_mud = 4, 2, (200, 200, 200), 91013, 3, 0.55, 1, 1
#mgindev_np_float_islands1 = 0, 1, (64, 64, 64 ), 3683, 5, 0.5, 1, 1.5
#mgindev_np_float_islands2 = 0, 1, (8, 8, 8 ), 9292, 2, 0.5, 1, 1.5
#mgindev_np_float_islands3 = 0, 1, (256, 256, 256), 6412, 2, 0.5, 1, 0.5
#mgindev_np_biome = 0, 1, (250, 250, 250), 9130, 3, 0.50, 1, 10
# Float islands starts from height, 0 to disable
#mgindev_float_islands = 500
# Math mapgen generator: sphere, mandelbox, mengersponge dont forget to lower water_level = -30000
#mgmath_generator = mandelbox
# Enable/disable IPv6
#enable_ipv6 = true
# Enable/disable running an IPv6 server. An IPv6 server may be restricted
# to IPv6 clients, depending on system configuration.
#ipv6_server = false
#main_menu_script =
#main_menu_game_mgr = 0
#main_menu_mod_mgr = 1
#modstore_download_url = https://forum.minetest.net/media/
#modstore_listmods_url = https://forum.minetest.net/mmdb/mods/
#modstore_details_url = https://forum.minetest.net/mmdb/mod/*/
# Makes DirectX work with LuaJIT. Disable if it causes troubles.
#high_precision_fpu = true
# Override language. When no value is provided (default) system language is used.
# Check "locale" directory for the list of available translations.
#language =

Binary file not shown.

Binary file not shown.

9
install_manifest.txt Normal file
View File

@ -0,0 +1,9 @@
/Users/security/mtclient/_CPack_Packages/Darwin/Bundle/minetest-0.4.8-dev-osx/minetest.app/Contents/Resources/share/doc/minetest/README.txt
/Users/security/mtclient/_CPack_Packages/Darwin/Bundle/minetest-0.4.8-dev-osx/minetest.app/Contents/Resources/share/doc/minetest/lua_api.txt
/Users/security/mtclient/_CPack_Packages/Darwin/Bundle/minetest-0.4.8-dev-osx/minetest.app/Contents/Resources/share/doc/minetest/mapformat.txt
/Users/security/mtclient/_CPack_Packages/Darwin/Bundle/minetest-0.4.8-dev-osx/minetest.app/Contents/Resources/share/doc/minetest/minetest.conf.example
/man6/minetest.6
/man6/minetestserver.6
/hicolor/scalable/apps/minetest-icon.svg
/Users/security/mtclient/_CPack_Packages/Darwin/Bundle/minetest-0.4.8-dev-osx/minetest.app/Contents/Resources/bin/minetest
/Users/security/mtclient/_CPack_Packages/Darwin/Bundle/minetest-0.4.8-dev-osx/minetest.app/Contents/Resources/bin/minetestserver

View File

@ -1,7 +1,7 @@
TALL_BUILD
v7
r0
t407107592.714796
t407108814.099758
cCheck dependencies
cPhaseScriptExecution "CMake Rules" /Users/security/mtclient/minetest.build/Release/ALL_BUILD.build/Script-BCF089DB325944129340037A.sh
@ -12,11 +12,11 @@ s138
CCheck dependencies
r0
lSLF07#2@18"Check dependencies407107591#407107591#0(0"0(0#1#0"8631629536#0"0#
lSLF07#2@18"Check dependencies407108814#407108814#0(0"0(0#1#0"8636652352#0"0#
CPhaseScriptExecution "CMake Rules" /Users/security/mtclient/minetest.build/Release/ALL_BUILD.build/Script-BCF089DB325944129340037A.sh
s407107591.758159
e407107592.714752
s407108814.071264
e407108814.099718
r1
xPhaseScriptExecution
xCMake Rules
@ -25,5 +25,5 @@ oecho ""
o
oecho Build\ all\ projects
oBuild all projects
lSLF07#2@37"Run custom shell script 'CMake Rules'407107591#407107592#0(54"echo "" echo Build\ all\ projects Build all projects 3(13@8"echo "" 407107591#0#8#0(1@0"0(13@26"echo Build\ all\ projects 407107591#9#26#0(1@0"0(13@19"Build all projects 407107592#35#19#0(1@0"0(0#0#0"8636188192#146" cd /Users/security/mtclient /bin/sh -c /Users/security/mtclient/minetest.build/Release/ALL_BUILD.build/Script-BCF089DB325944129340037A.sh 0#
lSLF07#2@37"Run custom shell script 'CMake Rules'407108814#407108814#0(54"echo "" echo Build\ all\ projects Build all projects 3(13@8"echo "" 407108814#0#8#0(1@0"0(13@26"echo Build\ all\ projects 407108814#9#26#0(1@0"0(13@19"Build all projects 407108814#35#19#0(1@0"0(0#0#0"8638163040#146" cd /Users/security/mtclient /bin/sh -c /Users/security/mtclient/minetest.build/Release/ALL_BUILD.build/Script-BCF089DB325944129340037A.sh 0#

View File

@ -1,7 +1,7 @@
TZERO_CHECK
v7
r0
t407106835.259044
t407108813.099788
cCheck dependencies
cPhaseScriptExecution "CMake Rules" /Users/security/mtclient/minetest.build/Release/ZERO_CHECK.build/Script-26650A071AEC474F8ACD3CA6.sh
@ -12,11 +12,11 @@ s139
CCheck dependencies
r0
lSLF07#2@18"Check dependencies407106835#407106835#0(0"0(0#1#0"8635640160#0"0#
lSLF07#2@18"Check dependencies407108812#407108812#0(0"0(0#1#0"8624059872#0"0#
CPhaseScriptExecution "CMake Rules" /Users/security/mtclient/minetest.build/Release/ZERO_CHECK.build/Script-26650A071AEC474F8ACD3CA6.sh
s407106835.171227
e407106835.259003
s407108812.891306
e407108813.099748
r1
xPhaseScriptExecution
xCMake Rules
@ -25,5 +25,5 @@ oecho ""
o
omake -f /Users/security/mtclient/CMakeScripts/ReRunCMake.make
omake[1]: `CMakeFiles/cmake.check_cache' is up to date.
lSLF07#2@37"Run custom shell script 'CMake Rules'407106835#407106835#0(126"echo "" make -f /Users/security/mtclient/CMakeScripts/ReRunCMake.make make[1]: `CMakeFiles/cmake.check_cache' is up to date. 3(13@8"echo "" 407106835#0#8#0(1@0"0(13@62"make -f /Users/security/mtclient/CMakeScripts/ReRunCMake.make 407106835#9#62#0(1@0"0(13@55"make[1]: `CMakeFiles/cmake.check_cache' is up to date. 407106835#71#55#0(1@0"0(0#0#0"8617183936#147" cd /Users/security/mtclient /bin/sh -c /Users/security/mtclient/minetest.build/Release/ZERO_CHECK.build/Script-26650A071AEC474F8ACD3CA6.sh 0#
lSLF07#2@37"Run custom shell script 'CMake Rules'407108812#407108813#0(126"echo "" make -f /Users/security/mtclient/CMakeScripts/ReRunCMake.make make[1]: `CMakeFiles/cmake.check_cache' is up to date. 3(13@8"echo "" 407108812#0#8#0(1@0"0(13@62"make -f /Users/security/mtclient/CMakeScripts/ReRunCMake.make 407108812#9#62#0(1@0"0(13@55"make[1]: `CMakeFiles/cmake.check_cache' is up to date. 407108813#71#55#0(1@0"0(0#0#0"8636970112#147" cd /Users/security/mtclient /bin/sh -c /Users/security/mtclient/minetest.build/Release/ZERO_CHECK.build/Script-26650A071AEC474F8ACD3CA6.sh 0#

View File

@ -0,0 +1,2 @@
#!/bin/sh
make -C /Users/security/mtclient -f /Users/security/mtclient/CMakeScripts/install_postBuildPhase.make$CONFIGURATION all

View File

@ -0,0 +1,33 @@
Tinstall
v7
r0
t407108688.282519
cCheck dependencies
cPhaseScriptExecution "CMake PostBuild Rules" /Users/security/mtclient/minetest.build/Release/install.build/Script-1A2EBC7B195A4A1083A1F7CB.sh
N/Users/security/mtclient/minetest.build/Release/install.build/Script-1A2EBC7B195A4A1083A1F7CB.sh
c000000005293C4D00000000000000082
t1385415888
s130
CCheck dependencies
r0
lSLF07#2@18"Check dependencies407108687#407108688#0(0"0(0#1#0"8632921248#0"0#
CPhaseScriptExecution "CMake PostBuild Rules" /Users/security/mtclient/minetest.build/Release/install.build/Script-1A2EBC7B195A4A1083A1F7CB.sh
s407108688.012743
e407108688.282486
r0
xPhaseScriptExecution
xCMake PostBuild Rules
x/Users/security/mtclient/minetest.build/Release/install.build/Script-1A2EBC7B195A4A1083A1F7CB.sh
o/opt/local/bin/cmake -DBUILD_TYPE=Release -P cmake_install.cmake
o-- Install configuration: "Release"
oCMake Error at cmake_install.cmake:39 (FILE):
o file cannot create directory: /usr/local/share/minetest. Maybe need
o administrative privileges.
o
o
omake: *** [install_buildpart_0] Error 1
lSLF07#2@47"Run custom shell script 'CMake PostBuild Rules'407108688#407108688#0(329"/opt/local/bin/cmake -DBUILD_TYPE=Release -P cmake_install.cmake -- Install configuration: "Release" CMake Error at cmake_install.cmake:39 (FILE): file cannot create directory: /usr/local/share/minetest. Maybe need administrative privileges. make: *** [install_buildpart_0] Error 1 Command /bin/sh failed with exit code 2 7(13@65"/opt/local/bin/cmake -DBUILD_TYPE=Release -P cmake_install.cmake 407108688#0#65#0(1@0"0(13@36"-- Install configuration: "Release" 407108688#65#36#0(1@0"0(13@46"CMake Error at cmake_install.cmake:39 (FILE): 407108688#101#46#0(1@0"0(13@71" file cannot create directory: /usr/local/share/minetest. Maybe need 407108688#147#71#0(1@0"0(13@29" administrative privileges. 407108688#218#29#0(1@0"0(13@40"make: *** [install_buildpart_0] Error 1 407108688#249#40#0(1@0"0(4@39"Command /bin/sh failed with exit code 2407108688#18446744073709551615#0#0(1@0"0(0#0#0"8632738880#144" cd /Users/security/mtclient /bin/sh -c /Users/security/mtclient/minetest.build/Release/install.build/Script-1A2EBC7B195A4A1083A1F7CB.sh 2#

View File

@ -0,0 +1,2 @@
#!/bin/sh
make -C /Users/security/mtclient -f /Users/security/mtclient/CMakeScripts/package_postBuildPhase.make$CONFIGURATION all

File diff suppressed because one or more lines are too long

View File

@ -266,12 +266,14 @@
<key>PBXSmartGroupTreeModuleOutlineStateExpansionKey</key>
<array>
<string>FE0DFAB313A244EF9D592EA6</string>
<string>1C37FBAC04509CD000000102</string>
<string>1C37FABC05509CD000000102</string>
</array>
<key>PBXSmartGroupTreeModuleOutlineStateSelectionKey</key>
<array>
<array>
<integer>0</integer>
<integer>5</integer>
<integer>4</integer>
</array>
</array>
<key>PBXSmartGroupTreeModuleOutlineStateVisibleRectKey</key>
@ -322,7 +324,7 @@
<key>_historyCapacity</key>
<integer>0</integer>
<key>bookmark</key>
<string>957435131843F7DC00125813</string>
<string>957435261843FCDD00125813</string>
<key>history</key>
<array>
<string>957435111843F7DC00125813</string>
@ -524,6 +526,7 @@
<integer>5</integer>
<key>WindowOrderList</key>
<array>
<string>1CD10A99069EF8BA00B06720</string>
<string>957434F81843F3D300125813</string>
<string>/Users/security/mtclient/minetest.xcodeproj</string>
</array>
@ -556,18 +559,16 @@
<key>GeometryConfiguration</key>
<dict>
<key>Frame</key>
<string>{{0, 0}, {500, 218}}</string>
<string>{{0, 0}, {1153, 264}}</string>
<key>RubberWindowFrame</key>
<string>42 231 500 500 0 0 1280 778 </string>
<string>42 185 1153 546 0 0 1280 778 </string>
</dict>
<key>Module</key>
<string>PBXNavigatorGroup</string>
<key>Proportion</key>
<string>218pt</string>
<string>264pt</string>
</dict>
<dict>
<key>BecomeActive</key>
<true/>
<key>ContentConfiguration</key>
<dict>
<key>PBXProjectModuleGUID</key>
@ -582,9 +583,9 @@
<key>GeometryConfiguration</key>
<dict>
<key>Frame</key>
<string>{{0, 223}, {500, 236}}</string>
<string>{{0, 269}, {1153, 236}}</string>
<key>RubberWindowFrame</key>
<string>42 231 500 500 0 0 1280 778 </string>
<string>42 185 1153 546 0 0 1280 778 </string>
</dict>
<key>Module</key>
<string>PBXBuildResultsModule</string>
@ -593,7 +594,7 @@
</dict>
</array>
<key>Proportion</key>
<string>459pt</string>
<string>505pt</string>
</dict>
</array>
<key>Name</key>
@ -616,15 +617,19 @@
<key>WindowContentMinSize</key>
<string>486 300</string>
<key>WindowString</key>
<string>42 231 500 500 0 0 1280 778 </string>
<string>42 185 1153 546 0 0 1280 778 </string>
<key>WindowToolGUID</key>
<string>957434F81843F3D300125813</string>
<key>WindowToolIsVisible</key>
<false/>
</dict>
<dict>
<key>FirstTimeWindowDisplayed</key>
<false/>
<key>Identifier</key>
<string>windowTool.debugger</string>
<key>IsVertical</key>
<true/>
<key>Layout</key>
<array>
<dict>
@ -647,8 +652,8 @@
<string>yes</string>
<key>sizes</key>
<array>
<string>{{0, 0}, {317, 164}}</string>
<string>{{317, 0}, {377, 164}}</string>
<string>{{0, 0}, {316, 185}}</string>
<string>{{316, 0}, {378, 185}}</string>
</array>
</dict>
<key>VerticalSplitView</key>
@ -663,8 +668,8 @@
<string>yes</string>
<key>sizes</key>
<array>
<string>{{0, 0}, {694, 164}}</string>
<string>{{0, 164}, {694, 216}}</string>
<string>{{0, 0}, {694, 185}}</string>
<string>{{0, 185}, {694, 196}}</string>
</array>
</dict>
</dict>
@ -677,8 +682,6 @@
</dict>
<key>GeometryConfiguration</key>
<dict>
<key>DebugConsoleDrawerSize</key>
<string>{100, 120}</string>
<key>DebugConsoleVisible</key>
<string>None</string>
<key>DebugConsoleWindowFrame</key>
@ -686,18 +689,34 @@
<key>DebugSTDIOWindowFrame</key>
<string>{{200, 200}, {500, 300}}</string>
<key>Frame</key>
<string>{{0, 0}, {694, 380}}</string>
<string>{{0, 0}, {694, 381}}</string>
<key>PBXDebugSessionStackFrameViewKey</key>
<dict>
<key>DebugVariablesTableConfiguration</key>
<array>
<string>Name</string>
<real>120</real>
<string>Value</string>
<real>85</real>
<string>Summary</string>
<real>148</real>
</array>
<key>Frame</key>
<string>{{316, 0}, {378, 185}}</string>
<key>RubberWindowFrame</key>
<string>42 309 694 422 0 0 1280 778 </string>
</dict>
<key>RubberWindowFrame</key>
<string>321 238 694 422 0 0 1440 878 </string>
<string>42 309 694 422 0 0 1280 778 </string>
</dict>
<key>Module</key>
<string>PBXDebugSessionModule</string>
<key>Proportion</key>
<string>100%</string>
<string>381pt</string>
</dict>
</array>
<key>Proportion</key>
<string>100%</string>
<string>381pt</string>
</dict>
</array>
<key>Name</key>
@ -707,22 +726,26 @@
<string>PBXDebugSessionModule</string>
</array>
<key>StatusbarIsVisible</key>
<integer>1</integer>
<true/>
<key>TableOfContents</key>
<array>
<string>1CD10A99069EF8BA00B06720</string>
<string>1C0AD2AB069F1E9B00FABCE6</string>
<string>9574351A1843FCB400125813</string>
<string>1C162984064C10D400B95A72</string>
<string>1C0AD2AC069F1E9B00FABCE6</string>
<string>9574351B1843FCB400125813</string>
<string>9574351C1843FCB400125813</string>
<string>9574351D1843FCB400125813</string>
<string>9574351E1843FCB400125813</string>
<string>9574351F1843FCB400125813</string>
</array>
<key>ToolbarConfiguration</key>
<string>xcode.toolbar.config.debugV3</string>
<key>WindowString</key>
<string>321 238 694 422 0 0 1440 878 </string>
<string>42 309 694 422 0 0 1280 778 </string>
<key>WindowToolGUID</key>
<string>1CD10A99069EF8BA00B06720</string>
<key>WindowToolIsVisible</key>
<integer>0</integer>
<false/>
</dict>
<dict>
<key>Identifier</key>

View File

@ -209,10 +209,30 @@
vrLen = 399;
vrLoc = 2590;
};
957435191843FCB400125813 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 4551C08A281146649ED201DE /* l_item.cpp */;
name = "l_item.cpp: 116";
rLen = 0;
rLoc = 2792;
rType = 0;
vrLen = 404;
vrLoc = 2616;
};
957435261843FCDD00125813 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 4551C08A281146649ED201DE /* l_item.cpp */;
name = "l_item.cpp: 116";
rLen = 0;
rLoc = 2792;
rType = 0;
vrLen = 399;
vrLoc = 2590;
};
9C1555C95EAD461792DDEF70 /* Project object */ = {
activeBuildConfigurationName = Release;
activeExecutable = 957434EE1843F3B700125813 /* minetest */;
activeTarget = 00B16596904D417299D556F2 /* ALL_BUILD */;
activeTarget = FFC2C255521C4B8E80BE2D44 /* package */;
codeSenseManager = 957434FB1843F3D300125813 /* Code sense */;
executables = (
957434EE1843F3B700125813 /* minetest */,
@ -241,6 +261,28 @@
PBXFileDataSource_Target_ColumnID,
);
};
PBXConfiguration.PBXTargetDataSource.PBXTargetDataSource = {
PBXFileTableDataSourceColumnSortingDirectionKey = "-1";
PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Filename_ColumnID;
PBXFileTableDataSourceColumnWidthsKey = (
20,
301,
60,
20,
48.16259765625,
43,
43,
);
PBXFileTableDataSourceColumnsKey = (
PBXFileDataSource_FiletypeID,
PBXFileDataSource_Filename_ColumnID,
PBXTargetDataSource_PrimaryAttribute,
PBXFileDataSource_Built_ColumnID,
PBXFileDataSource_ObjectSize_ColumnID,
PBXFileDataSource_Errors_ColumnID,
PBXFileDataSource_Warnings_ColumnID,
);
};
PBXPerProjectTemplateStateSaveDate = 407106488;
PBXWorkspaceStateSaveDate = 407106488;
};
@ -255,6 +297,8 @@
957435111843F7DC00125813 /* PBXTextBookmark */ = 957435111843F7DC00125813 /* PBXTextBookmark */;
957435121843F7DC00125813 /* XCBuildMessageTextBookmark */ = 957435121843F7DC00125813 /* XCBuildMessageTextBookmark */;
957435131843F7DC00125813 /* PBXTextBookmark */ = 957435131843F7DC00125813 /* PBXTextBookmark */;
957435191843FCB400125813 /* PBXTextBookmark */ = 957435191843FCB400125813 /* PBXTextBookmark */;
957435261843FCDD00125813 /* PBXTextBookmark */ = 957435261843FCDD00125813 /* PBXTextBookmark */;
};
sourceControlManager = 957434FA1843F3D300125813 /* Source Control */;
userBuildSettings = {

BIN
src/.cmake_config.h.swp Normal file

Binary file not shown.

View File

@ -4,7 +4,7 @@
#ifndef CMAKE_CONFIG_GITHASH_H
#define CMAKE_CONFIG_GITHASH_H
#define CMAKE_VERSION_GITHASH "ca648ee-dirty"
#define CMAKE_VERSION_GITHASH "9baa1c8-dirty"
#endif

View File

@ -1,7 +1,7 @@
Tjsoncpp
v7
r0
t407106835.395072
t407108813.620293
cCheck dependencies
cCompileC src/json/minetest.build/Release/jsoncpp.build/Objects-normal/i386/jsoncpp.o /Users/security/mtclient/src/json/jsoncpp.cpp normal i386 c++ com.apple.compilers.gcc.4_2
cLibtool /Users/security/mtclient/src/json/Release/libjsoncpp.a normal i386
@ -132,7 +132,7 @@ s148
CCheck dependencies
r0
lSLF07#2@18"Check dependencies407106835#407106835#0(0"0(0#1#0"8636969376#0"0#
lSLF07#2@18"Check dependencies407108813#407108813#0(0"0(0#1#0"8638148992#0"0#
CCompileC src/json/minetest.build/Release/jsoncpp.build/Objects-normal/i386/jsoncpp.o /Users/security/mtclient/src/json/jsoncpp.cpp normal i386 c++ com.apple.compilers.gcc.4_2
s407106540.557632
@ -158,8 +158,8 @@ xi386
lSLF07#2@49"Libtool src/json/Release/libjsoncpp.a normal i386407106575#407106575#0(0"0(0#0#0"8627082272#395" cd /Users/security/mtclient setenv MACOSX_DEPLOYMENT_TARGET 10.6 /Developer/usr/bin/libtool -static -arch_only i386 -syslibroot /Developer/SDKs/MacOSX10.6.sdk -L/Users/security/mtclient/src/json/Release -filelist /Users/security/mtclient/src/json/minetest.build/Release/jsoncpp.build/Objects-normal/i386/jsoncpp.LinkFileList -o /Users/security/mtclient/src/json/Release/libjsoncpp.a 0#
CPhaseScriptExecution "CMake PostBuild Rules" /Users/security/mtclient/src/json/minetest.build/Release/jsoncpp.build/Script-7AFE8753250E491BBF17BE73.sh
s407106835.267504
e407106835.395027
s407108813.197515
e407108813.620263
r1
xPhaseScriptExecution
xCMake PostBuild Rules
@ -167,7 +167,6 @@ x/Users/security/mtclient/src/json/minetest.build/Release/jsoncpp.build/Script-7
oecho "Depend check for xcode"
oDepend check for xcode
ocd /Users/security/mtclient && make -C /Users/security/mtclient -f /Users/security/mtclient/CMakeScripts/XCODE_DEPEND_HELPER.make PostBuild.jsoncpp.Release
o/bin/rm -f /Users/security/mtclient/bin/Release/minetest
o/bin/rm -f /Users/security/mtclient/bin/Release/minetestserver
lSLF07#2@47"Run custom shell script 'CMake PostBuild Rules'407106835#407106835#0(329"echo "Depend check for xcode" Depend check for xcode cd /Users/security/mtclient && make -C /Users/security/mtclient -f /Users/security/mtclient/CMakeScripts/XCODE_DEPEND_HELPER.make PostBuild.jsoncpp.Release /bin/rm -f /Users/security/mtclient/bin/Release/minetest /bin/rm -f /Users/security/mtclient/bin/Release/minetestserver 5(13@30"echo "Depend check for xcode" 407106835#0#30#0(1@0"0(13@23"Depend check for xcode 407106835#30#23#0(1@0"0(13@156"cd /Users/security/mtclient && make -C /Users/security/mtclient -f /Users/security/mtclient/CMakeScripts/XCODE_DEPEND_HELPER.make PostBuild.jsoncpp.Release 407106835#53#156#0(1@0"0(13@57"/bin/rm -f /Users/security/mtclient/bin/Release/minetest 407106835#209#57#0(1@0"0(13@63"/bin/rm -f /Users/security/mtclient/bin/Release/minetestserver 407106835#266#63#0(1@0"0(0#0#0"8633892320#153" cd /Users/security/mtclient /bin/sh -c /Users/security/mtclient/src/json/minetest.build/Release/jsoncpp.build/Script-7AFE8753250E491BBF17BE73.sh 0#
omake[1]: Nothing to be done for `PostBuild.jsoncpp.Release'.
lSLF07#2@47"Run custom shell script 'CMake PostBuild Rules'407108813#407108813#0(270"echo "Depend check for xcode" Depend check for xcode cd /Users/security/mtclient && make -C /Users/security/mtclient -f /Users/security/mtclient/CMakeScripts/XCODE_DEPEND_HELPER.make PostBuild.jsoncpp.Release make[1]: Nothing to be done for `PostBuild.jsoncpp.Release'. 4(13@30"echo "Depend check for xcode" 407108813#0#30#0(1@0"0(13@23"Depend check for xcode 407108813#30#23#0(1@0"0(13@156"cd /Users/security/mtclient && make -C /Users/security/mtclient -f /Users/security/mtclient/CMakeScripts/XCODE_DEPEND_HELPER.make PostBuild.jsoncpp.Release 407108813#53#156#0(1@0"0(13@61"make[1]: Nothing to be done for `PostBuild.jsoncpp.Release'. 407108813#209#61#0(1@0"0(0#0#0"8624294144#153" cd /Users/security/mtclient /bin/sh -c /Users/security/mtclient/src/json/minetest.build/Release/jsoncpp.build/Script-7AFE8753250E491BBF17BE73.sh 0#

View File

@ -1,7 +1,7 @@
Tlua
v7
r0
t407106835.409991
t407108813.695888
cCheck dependencies
cCompileC src/lua/build/minetest.build/Release/lua.build/Objects-normal/i386/lapi.o /Users/security/mtclient/src/lua/src/lapi.c normal i386 c com.apple.compilers.gcc.4_2
cCompileC src/lua/build/minetest.build/Release/lua.build/Objects-normal/i386/lauxlib.o /Users/security/mtclient/src/lua/src/lauxlib.c normal i386 c com.apple.compilers.gcc.4_2
@ -847,7 +847,7 @@ i"lmem.h"
CCheck dependencies
r0
lSLF07#2@18"Check dependencies407106835#407106835#0(0"0(0#1#0"8633873568#0"0#
lSLF07#2@18"Check dependencies407108813#407108813#0(0"0(0#1#0"8623627744#0"0#
CCompileC src/lua/build/minetest.build/Release/lua.build/Objects-normal/i386/lapi.o /Users/security/mtclient/src/lua/src/lapi.c normal i386 c com.apple.compilers.gcc.4_2
s407106540.698129
@ -1239,8 +1239,8 @@ xi386
lSLF07#2@50"Libtool src/lua/build/Release/liblua.a normal i386407106575#407106576#0(0"0(0#0#0"8627504128#398" cd /Users/security/mtclient setenv MACOSX_DEPLOYMENT_TARGET 10.6 /Developer/usr/bin/libtool -static -arch_only i386 -syslibroot /Developer/SDKs/MacOSX10.6.sdk -L/Users/security/mtclient/src/lua/build/Release -filelist /Users/security/mtclient/src/lua/build/minetest.build/Release/lua.build/Objects-normal/i386/lua.LinkFileList -o /Users/security/mtclient/src/lua/build/Release/liblua.a 0#
CPhaseScriptExecution "CMake PostBuild Rules" /Users/security/mtclient/src/lua/build/minetest.build/Release/lua.build/Script-E17B6388A1F247C194D62D54.sh
s407106835.286090
e407106835.409960
s407108813.613426
e407108813.695848
r1
xPhaseScriptExecution
xCMake PostBuild Rules
@ -1252,7 +1252,6 @@ omake[1]: Nothing to be done for `PostBuild.lua.Release'.
oecho "Depend check for xcode"
oDepend check for xcode
ocd /Users/security/mtclient && make -C /Users/security/mtclient -f /Users/security/mtclient/CMakeScripts/XCODE_DEPEND_HELPER.make PostBuild.lua.Release
o/bin/rm -f /Users/security/mtclient/bin/Release/minetest
o/bin/rm -f /Users/security/mtclient/bin/Release/minetestserver
lSLF07#2@47"Run custom shell script 'CMake PostBuild Rules'407106835#407106835#0(611"echo "Depend check for xcode" Depend check for xcode cd /Users/security/mtclient/src/lua && make -C /Users/security/mtclient/src/lua -f /Users/security/mtclient/src/lua/CMakeScripts/XCODE_DEPEND_HELPER.make PostBuild.lua.Release make[1]: Nothing to be done for `PostBuild.lua.Release'. echo "Depend check for xcode" Depend check for xcode cd /Users/security/mtclient && make -C /Users/security/mtclient -f /Users/security/mtclient/CMakeScripts/XCODE_DEPEND_HELPER.make PostBuild.lua.Release /bin/rm -f /Users/security/mtclient/bin/Release/minetest /bin/rm -f /Users/security/mtclient/bin/Release/minetestserver 9(13@30"echo "Depend check for xcode" 407106835#0#30#0(1@0"0(13@23"Depend check for xcode 407106835#30#23#0(1@0"0(13@176"cd /Users/security/mtclient/src/lua && make -C /Users/security/mtclient/src/lua -f /Users/security/mtclient/src/lua/CMakeScripts/XCODE_DEPEND_HELPER.make PostBuild.lua.Release 407106835#53#176#0(1@0"0(13@57"make[1]: Nothing to be done for `PostBuild.lua.Release'. 407106835#229#57#0(1@0"0(13@30"echo "Depend check for xcode" 407106835#286#30#0(1@0"0(13@23"Depend check for xcode 407106835#316#23#0(1@0"0(13@152"cd /Users/security/mtclient && make -C /Users/security/mtclient -f /Users/security/mtclient/CMakeScripts/XCODE_DEPEND_HELPER.make PostBuild.lua.Release 407106835#339#152#0(1@0"0(13@57"/bin/rm -f /Users/security/mtclient/bin/Release/minetest 407106835#491#57#0(1@0"0(13@63"/bin/rm -f /Users/security/mtclient/bin/Release/minetestserver 407106835#548#63#0(1@0"0(0#0#0"8616698272#154" cd /Users/security/mtclient /bin/sh -c /Users/security/mtclient/src/lua/build/minetest.build/Release/lua.build/Script-E17B6388A1F247C194D62D54.sh 0#
omake[1]: Nothing to be done for `PostBuild.lua.Release'.
lSLF07#2@47"Run custom shell script 'CMake PostBuild Rules'407108813#407108813#0(548"echo "Depend check for xcode" Depend check for xcode cd /Users/security/mtclient/src/lua && make -C /Users/security/mtclient/src/lua -f /Users/security/mtclient/src/lua/CMakeScripts/XCODE_DEPEND_HELPER.make PostBuild.lua.Release make[1]: Nothing to be done for `PostBuild.lua.Release'. echo "Depend check for xcode" Depend check for xcode cd /Users/security/mtclient && make -C /Users/security/mtclient -f /Users/security/mtclient/CMakeScripts/XCODE_DEPEND_HELPER.make PostBuild.lua.Release make[1]: Nothing to be done for `PostBuild.lua.Release'. 8(13@30"echo "Depend check for xcode" 407108813#0#30#0(1@0"0(13@23"Depend check for xcode 407108813#30#23#0(1@0"0(13@176"cd /Users/security/mtclient/src/lua && make -C /Users/security/mtclient/src/lua -f /Users/security/mtclient/src/lua/CMakeScripts/XCODE_DEPEND_HELPER.make PostBuild.lua.Release 407108813#53#176#0(1@0"0(13@57"make[1]: Nothing to be done for `PostBuild.lua.Release'. 407108813#229#57#0(1@0"0(13@30"echo "Depend check for xcode" 407108813#286#30#0(1@0"0(13@23"Depend check for xcode 407108813#316#23#0(1@0"0(13@152"cd /Users/security/mtclient && make -C /Users/security/mtclient -f /Users/security/mtclient/CMakeScripts/XCODE_DEPEND_HELPER.make PostBuild.lua.Release 407108813#339#152#0(1@0"0(13@57"make[1]: Nothing to be done for `PostBuild.lua.Release'. 407108813#491#57#0(1@0"0(0#0#0"8616809600#154" cd /Users/security/mtclient /bin/sh -c /Users/security/mtclient/src/lua/build/minetest.build/Release/lua.build/Script-E17B6388A1F247C194D62D54.sh 0#

View File

@ -1,7 +1,7 @@
TGenerateVersion
v7
r0
t407106835.470953
t407108813.898175
cCheck dependencies
cPhaseScriptExecution "CMake Rules" /Users/security/mtclient/src/minetest.build/Release/GenerateVersion.build/Script-0286F77C320B44D6ACFDF46B.sh
@ -12,11 +12,11 @@ s152
CCheck dependencies
r0
lSLF07#2@18"Check dependencies407106835#407106835#0(0"0(0#1#0"8633328576#0"0#
lSLF07#2@18"Check dependencies407108813#407108813#0(0"0(0#1#0"8636296096#0"0#
CPhaseScriptExecution "CMake Rules" /Users/security/mtclient/src/minetest.build/Release/GenerateVersion.build/Script-0286F77C320B44D6ACFDF46B.sh
s407106835.407032
e407106835.470910
s407108813.673914
e407108813.898131
r1
xPhaseScriptExecution
xCMake Rules
@ -24,6 +24,6 @@ x/Users/security/mtclient/src/minetest.build/Release/GenerateVersion.build/Scrip
oecho ""
o
ocd /Users/security/mtclient/src && /opt/local/bin/cmake -D GENERATE_VERSION_SOURCE_DIR=/Users/security/mtclient/src -D GENERATE_VERSION_BINARY_DIR=/Users/security/mtclient/src -D VERSION_STRING=0.4.8-dev -D VERSION_EXTRA= -P /Users/security/mtclient/cmake/Modules/GenerateVersion.cmake
o-- *** Detected git version ca648ee-dirty ***
lSLF07#2@37"Run custom shell script 'CMake Rules'407106835#407106835#0(341"echo "" cd /Users/security/mtclient/src && /opt/local/bin/cmake -D GENERATE_VERSION_SOURCE_DIR=/Users/security/mtclient/src -D GENERATE_VERSION_BINARY_DIR=/Users/security/mtclient/src -D VERSION_STRING=0.4.8-dev -D VERSION_EXTRA= -P /Users/security/mtclient/cmake/Modules/GenerateVersion.cmake -- *** Detected git version ca648ee-dirty *** 3(13@8"echo "" 407106835#0#8#0(1@0"0(13@286"cd /Users/security/mtclient/src && /opt/local/bin/cmake -D GENERATE_VERSION_SOURCE_DIR=/Users/security/mtclient/src -D GENERATE_VERSION_BINARY_DIR=/Users/security/mtclient/src -D VERSION_STRING=0.4.8-dev -D VERSION_EXTRA= -P /Users/security/mtclient/cmake/Modules/GenerateVersion.cmake 407106835#9#286#0(1@0"0(13@46"-- *** Detected git version ca648ee-dirty *** 407106835#295#46#0(1@0"0(0#0#0"8632762400#156" cd /Users/security/mtclient /bin/sh -c /Users/security/mtclient/src/minetest.build/Release/GenerateVersion.build/Script-0286F77C320B44D6ACFDF46B.sh 0#
o-- *** Detected git version 9baa1c8-dirty ***
lSLF07#2@37"Run custom shell script 'CMake Rules'407108813#407108813#0(341"echo "" cd /Users/security/mtclient/src && /opt/local/bin/cmake -D GENERATE_VERSION_SOURCE_DIR=/Users/security/mtclient/src -D GENERATE_VERSION_BINARY_DIR=/Users/security/mtclient/src -D VERSION_STRING=0.4.8-dev -D VERSION_EXTRA= -P /Users/security/mtclient/cmake/Modules/GenerateVersion.cmake -- *** Detected git version 9baa1c8-dirty *** 3(13@8"echo "" 407108813#0#8#0(1@0"0(13@286"cd /Users/security/mtclient/src && /opt/local/bin/cmake -D GENERATE_VERSION_SOURCE_DIR=/Users/security/mtclient/src -D GENERATE_VERSION_BINARY_DIR=/Users/security/mtclient/src -D VERSION_STRING=0.4.8-dev -D VERSION_EXTRA= -P /Users/security/mtclient/cmake/Modules/GenerateVersion.cmake 407108813#9#286#0(1@0"0(13@46"-- *** Detected git version 9baa1c8-dirty *** 407108813#295#46#0(1@0"0(0#0#0"8617550560#156" cd /Users/security/mtclient /bin/sh -c /Users/security/mtclient/src/minetest.build/Release/GenerateVersion.build/Script-0286F77C320B44D6ACFDF46B.sh 0#

View File

@ -1,7 +1,7 @@
Tminetest
v7
r0
t407107290.930267
t407108814.040537
cCheck dependencies
cCompileC src/minetest.build/Release/minetest.build/Objects-normal/i386/jmutex.o /Users/security/mtclient/src/jthread/pthread/jmutex.cpp normal i386 c++ com.apple.compilers.gcc.4_2
cCompileC src/minetest.build/Release/minetest.build/Objects-normal/i386/jthread.o /Users/security/mtclient/src/jthread/pthread/jthread.cpp normal i386 c++ com.apple.compilers.gcc.4_2
@ -373,7 +373,7 @@ t1242688292
s139
N/Users/security/mtclient/bin/Release/minetest
t1385414488
t1385415998
s14055260
N/Users/security/mtclient/src/activeobject.h
@ -655,6 +655,11 @@ c000000005293BACA000000000000029D
t1385413322
s669
N/Users/security/mtclient/src/cmake_config_githash.h
c000000005293C53B00000000000000E5
t1385415995
s229
N/Users/security/mtclient/src/collision.cpp
c00000000529285E50000000000004437
t1385334245
@ -2980,7 +2985,7 @@ t1385414471
s59116
N/Users/security/mtclient/src/minetest.build/Release/minetest.build/Objects-normal/i386/version.o
t1385414469
t1385415995
s856
N/Users/security/mtclient/src/minetest.build/Release/minetest.build/Objects-normal/i386/voxel.o
@ -5122,7 +5127,7 @@ s17163
CCheck dependencies
r0
lSLF07#2@18"Check dependencies407106835#407106835#0(0"0(0#1#0"8632708064#0"0#
lSLF07#2@18"Check dependencies407108813#407108813#0(0"0(0#1#0"8636251744#0"0#
CCompileC src/minetest.build/Release/minetest.build/Objects-normal/i386/ban.o /Users/security/mtclient/src/ban.cpp normal i386 c++ com.apple.compilers.gcc.4_2
s407106913.662315
@ -6951,8 +6956,8 @@ xcom.apple.compilers.gcc.4_2
lSLF07#2@48"Compile /Users/security/mtclient/src/treegen.cpp407107264#407107271#0(0"0(0#0#40"/Users/security/mtclient/src/treegen.cpp8624588992#1420" cd /Users/security/mtclient setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c++ -arch i386 -fmessage-length=0 -pipe -Wno-trigraphs -fpascal-strings -fasm-blocks -O3 -mdynamic-no-pic -DCMAKE_INTDIR="Release" -DUSE_CMAKE_CONFIG_H -isysroot /Developer/SDKs/MacOSX10.6.sdk -mmacosx-version-min=10.6 -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/security/mtclient/bin/Release -F/Developer/SDKs/MacOSX10.6.sdk/Library/Frameworks -I/Users/security/mtclient/bin/Release/include -I/Users/security/mtclient/src -I/usr/local/include/irrlicht -I/Users/security/mtclient/src/Release -I/Developer/SDKs/MacOSX10.6.sdk/Library/Frameworks/UnixImageIO.framework/Headers -I/Developer/SDKs/MacOSX10.6.sdk/Library/Frameworks/OpenAL.framework/Headers -I/opt/local/include -I/Developer/SDKs/MacOSX10.6.sdk/Library/Frameworks/Ogg.framework/Headers/ogg -I/Users/security/mtclient/src/lua/src -I/Users/security/mtclient/src/json -I/Users/security/mtclient/src/script -I/Developer/SDKs/MacOSX10.6.sdk/usr/include/curl -I/Users/security/mtclient/src/minetest.build/Release/minetest.build/DerivedSources/i386 -I/Users/security/mtclient/src/minetest.build/Release/minetest.build/DerivedSources -DNDEBUG -Wall -ffast-math -Wall -fomit-frame-pointer -pipe -funroll-loops -c /Users/security/mtclient/src/treegen.cpp -o /Users/security/mtclient/src/minetest.build/Release/minetest.build/Objects-normal/i386/treegen.o 0#
CCompileC src/minetest.build/Release/minetest.build/Objects-normal/i386/version.o /Users/security/mtclient/src/version.cpp normal i386 c++ com.apple.compilers.gcc.4_2
s407107269.515654
e407107269.559142
s407108795.623441
e407108795.719776
r1
xCompileC
xsrc/minetest.build/Release/minetest.build/Objects-normal/i386/version.o
@ -6961,7 +6966,7 @@ xnormal
xi386
xc++
xcom.apple.compilers.gcc.4_2
lSLF07#2@48"Compile /Users/security/mtclient/src/version.cpp407107269#407107269#0(0"0(0#0#40"/Users/security/mtclient/src/version.cpp8615630112#1420" cd /Users/security/mtclient setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c++ -arch i386 -fmessage-length=0 -pipe -Wno-trigraphs -fpascal-strings -fasm-blocks -O3 -mdynamic-no-pic -DCMAKE_INTDIR="Release" -DUSE_CMAKE_CONFIG_H -isysroot /Developer/SDKs/MacOSX10.6.sdk -mmacosx-version-min=10.6 -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/security/mtclient/bin/Release -F/Developer/SDKs/MacOSX10.6.sdk/Library/Frameworks -I/Users/security/mtclient/bin/Release/include -I/Users/security/mtclient/src -I/usr/local/include/irrlicht -I/Users/security/mtclient/src/Release -I/Developer/SDKs/MacOSX10.6.sdk/Library/Frameworks/UnixImageIO.framework/Headers -I/Developer/SDKs/MacOSX10.6.sdk/Library/Frameworks/OpenAL.framework/Headers -I/opt/local/include -I/Developer/SDKs/MacOSX10.6.sdk/Library/Frameworks/Ogg.framework/Headers/ogg -I/Users/security/mtclient/src/lua/src -I/Users/security/mtclient/src/json -I/Users/security/mtclient/src/script -I/Developer/SDKs/MacOSX10.6.sdk/usr/include/curl -I/Users/security/mtclient/src/minetest.build/Release/minetest.build/DerivedSources/i386 -I/Users/security/mtclient/src/minetest.build/Release/minetest.build/DerivedSources -DNDEBUG -Wall -ffast-math -Wall -fomit-frame-pointer -pipe -funroll-loops -c /Users/security/mtclient/src/version.cpp -o /Users/security/mtclient/src/minetest.build/Release/minetest.build/Objects-normal/i386/version.o 0#
lSLF07#2@48"Compile /Users/security/mtclient/src/version.cpp407108795#407108795#0(0"0(0#0#40"/Users/security/mtclient/src/version.cpp8616967712#1420" cd /Users/security/mtclient setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c++ -arch i386 -fmessage-length=0 -pipe -Wno-trigraphs -fpascal-strings -fasm-blocks -O3 -mdynamic-no-pic -DCMAKE_INTDIR="Release" -DUSE_CMAKE_CONFIG_H -isysroot /Developer/SDKs/MacOSX10.6.sdk -mmacosx-version-min=10.6 -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/security/mtclient/bin/Release -F/Developer/SDKs/MacOSX10.6.sdk/Library/Frameworks -I/Users/security/mtclient/bin/Release/include -I/Users/security/mtclient/src -I/usr/local/include/irrlicht -I/Users/security/mtclient/src/Release -I/Developer/SDKs/MacOSX10.6.sdk/Library/Frameworks/UnixImageIO.framework/Headers -I/Developer/SDKs/MacOSX10.6.sdk/Library/Frameworks/OpenAL.framework/Headers -I/opt/local/include -I/Developer/SDKs/MacOSX10.6.sdk/Library/Frameworks/Ogg.framework/Headers/ogg -I/Users/security/mtclient/src/lua/src -I/Users/security/mtclient/src/json -I/Users/security/mtclient/src/script -I/Developer/SDKs/MacOSX10.6.sdk/usr/include/curl -I/Users/security/mtclient/src/minetest.build/Release/minetest.build/DerivedSources/i386 -I/Users/security/mtclient/src/minetest.build/Release/minetest.build/DerivedSources -DNDEBUG -Wall -ffast-math -Wall -fomit-frame-pointer -pipe -funroll-loops -c /Users/security/mtclient/src/version.cpp -o /Users/security/mtclient/src/minetest.build/Release/minetest.build/Objects-normal/i386/version.o 0#
CCompileC src/minetest.build/Release/minetest.build/Objects-normal/i386/voxel.o /Users/security/mtclient/src/voxel.cpp normal i386 c++ com.apple.compilers.gcc.4_2
s407107269.559275
@ -6990,18 +6995,18 @@ xcom.apple.compilers.gcc.4_2
lSLF07#2@56"Compile /Users/security/mtclient/src/voxelalgorithms.cpp407107271#407107272#0(0"0(0#0#48"/Users/security/mtclient/src/voxelalgorithms.cpp8637075200#1436" cd /Users/security/mtclient setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c++ -arch i386 -fmessage-length=0 -pipe -Wno-trigraphs -fpascal-strings -fasm-blocks -O3 -mdynamic-no-pic -DCMAKE_INTDIR="Release" -DUSE_CMAKE_CONFIG_H -isysroot /Developer/SDKs/MacOSX10.6.sdk -mmacosx-version-min=10.6 -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/security/mtclient/bin/Release -F/Developer/SDKs/MacOSX10.6.sdk/Library/Frameworks -I/Users/security/mtclient/bin/Release/include -I/Users/security/mtclient/src -I/usr/local/include/irrlicht -I/Users/security/mtclient/src/Release -I/Developer/SDKs/MacOSX10.6.sdk/Library/Frameworks/UnixImageIO.framework/Headers -I/Developer/SDKs/MacOSX10.6.sdk/Library/Frameworks/OpenAL.framework/Headers -I/opt/local/include -I/Developer/SDKs/MacOSX10.6.sdk/Library/Frameworks/Ogg.framework/Headers/ogg -I/Users/security/mtclient/src/lua/src -I/Users/security/mtclient/src/json -I/Users/security/mtclient/src/script -I/Developer/SDKs/MacOSX10.6.sdk/usr/include/curl -I/Users/security/mtclient/src/minetest.build/Release/minetest.build/DerivedSources/i386 -I/Users/security/mtclient/src/minetest.build/Release/minetest.build/DerivedSources -DNDEBUG -Wall -ffast-math -Wall -fomit-frame-pointer -pipe -funroll-loops -c /Users/security/mtclient/src/voxelalgorithms.cpp -o /Users/security/mtclient/src/minetest.build/Release/minetest.build/Objects-normal/i386/voxelalgorithms.o 0#
CLd /Users/security/mtclient/bin/Release/minetest normal i386
s407107272.979667
e407107290.652459
s407108795.719854
e407108800.595472
r1
xLd
x/Users/security/mtclient/bin/Release/minetest
xnormal
xi386
lSLF07#2@50"Link /Users/security/mtclient/bin/Release/minetest407107272#407107290#0(0"0(0#0#0"8623393824#1747" cd /Users/security/mtclient setenv MACOSX_DEPLOYMENT_TARGET 10.6 /Developer/usr/bin/g++-4.2 -arch i386 -isysroot /Developer/SDKs/MacOSX10.6.sdk -L/Users/security/mtclient/bin/Release -F/Users/security/mtclient/bin/Release -F/Developer/SDKs/MacOSX10.6.sdk/Library/Frameworks -filelist /Users/security/mtclient/src/minetest.build/Release/minetest.build/Objects-normal/i386/minetest.LinkFileList -mmacosx-version-min=10.6 -framework Cocoa -Wl,-search_paths_first -Wl,-headerpad_max_install_names /usr/lib/libz.dylib /usr/local/lib/libIrrlicht.a -framework AGL -framework OpenGL /opt/local/lib/libjpeg.dylib /usr/lib/libbz2.dylib /opt/local/lib/libpng.dylib /usr/lib/libz.dylib /opt/local/lib/libSM.dylib /opt/local/lib/libICE.dylib /opt/local/lib/libX11.dylib /opt/local/lib/libXext.dylib -framework OpenAL /opt/local/lib/libvorbisfile.dylib /opt/local/lib/libvorbis.dylib -framework ogg /usr/lib/libsqlite3.dylib /Users/security/mtclient/src/lua/build/Release/liblua.a /Users/security/mtclient/src/json/Release/libjsoncpp.a -lpthread -framework Carbon -framework Cocoa -framework IOKit -framework CoreFoundation /opt/local/lib/libXxf86vm.dylib /usr/lib/libcurl.dylib /usr/local/lib/libIrrlicht.a -framework AGL -framework OpenGL /opt/local/lib/libjpeg.dylib /usr/lib/libbz2.dylib /opt/local/lib/libpng.dylib /opt/local/lib/libSM.dylib /opt/local/lib/libICE.dylib /opt/local/lib/libX11.dylib /opt/local/lib/libXext.dylib -framework OpenAL /opt/local/lib/libvorbisfile.dylib /opt/local/lib/libvorbis.dylib -framework ogg /usr/lib/libsqlite3.dylib -lpthread -framework Carbon -framework Cocoa -framework IOKit -framework CoreFoundation /opt/local/lib/libXxf86vm.dylib /usr/lib/libcurl.dylib -o /Users/security/mtclient/bin/Release/minetest 0#
lSLF07#2@50"Link /Users/security/mtclient/bin/Release/minetest407108795#407108800#0(0"0(0#0#0"8601430336#1747" cd /Users/security/mtclient setenv MACOSX_DEPLOYMENT_TARGET 10.6 /Developer/usr/bin/g++-4.2 -arch i386 -isysroot /Developer/SDKs/MacOSX10.6.sdk -L/Users/security/mtclient/bin/Release -F/Users/security/mtclient/bin/Release -F/Developer/SDKs/MacOSX10.6.sdk/Library/Frameworks -filelist /Users/security/mtclient/src/minetest.build/Release/minetest.build/Objects-normal/i386/minetest.LinkFileList -mmacosx-version-min=10.6 -framework Cocoa -Wl,-search_paths_first -Wl,-headerpad_max_install_names /usr/lib/libz.dylib /usr/local/lib/libIrrlicht.a -framework AGL -framework OpenGL /opt/local/lib/libjpeg.dylib /usr/lib/libbz2.dylib /opt/local/lib/libpng.dylib /usr/lib/libz.dylib /opt/local/lib/libSM.dylib /opt/local/lib/libICE.dylib /opt/local/lib/libX11.dylib /opt/local/lib/libXext.dylib -framework OpenAL /opt/local/lib/libvorbisfile.dylib /opt/local/lib/libvorbis.dylib -framework ogg /usr/lib/libsqlite3.dylib /Users/security/mtclient/src/lua/build/Release/liblua.a /Users/security/mtclient/src/json/Release/libjsoncpp.a -lpthread -framework Carbon -framework Cocoa -framework IOKit -framework CoreFoundation /opt/local/lib/libXxf86vm.dylib /usr/lib/libcurl.dylib /usr/local/lib/libIrrlicht.a -framework AGL -framework OpenGL /opt/local/lib/libjpeg.dylib /usr/lib/libbz2.dylib /opt/local/lib/libpng.dylib /opt/local/lib/libSM.dylib /opt/local/lib/libICE.dylib /opt/local/lib/libX11.dylib /opt/local/lib/libXext.dylib -framework OpenAL /opt/local/lib/libvorbisfile.dylib /opt/local/lib/libvorbis.dylib -framework ogg /usr/lib/libsqlite3.dylib -lpthread -framework Carbon -framework Cocoa -framework IOKit -framework CoreFoundation /opt/local/lib/libXxf86vm.dylib /usr/lib/libcurl.dylib -o /Users/security/mtclient/bin/Release/minetest 0#
CPhaseScriptExecution "CMake PostBuild Rules" /Users/security/mtclient/src/minetest.build/Release/minetest.build/Script-5234A675472746F8B139E36E.sh
s407107290.652596
e407107290.930221
s407108813.948879
e407108814.040501
r1
xPhaseScriptExecution
xCMake PostBuild Rules
@ -7010,5 +7015,5 @@ oecho "Depend check for xcode"
oDepend check for xcode
ocd /Users/security/mtclient && make -C /Users/security/mtclient -f /Users/security/mtclient/CMakeScripts/XCODE_DEPEND_HELPER.make PostBuild.minetest.Release
omake[1]: Nothing to be done for `PostBuild.minetest.Release'.
lSLF07#2@47"Run custom shell script 'CMake PostBuild Rules'407107290#407107290#0(272"echo "Depend check for xcode" Depend check for xcode cd /Users/security/mtclient && make -C /Users/security/mtclient -f /Users/security/mtclient/CMakeScripts/XCODE_DEPEND_HELPER.make PostBuild.minetest.Release make[1]: Nothing to be done for `PostBuild.minetest.Release'. 4(13@30"echo "Depend check for xcode" 407107290#0#30#0(1@0"0(13@23"Depend check for xcode 407107290#30#23#0(1@0"0(13@157"cd /Users/security/mtclient && make -C /Users/security/mtclient -f /Users/security/mtclient/CMakeScripts/XCODE_DEPEND_HELPER.make PostBuild.minetest.Release 407107290#53#157#0(1@0"0(13@62"make[1]: Nothing to be done for `PostBuild.minetest.Release'. 407107290#210#62#0(1@0"0(0#0#0"8625132320#149" cd /Users/security/mtclient /bin/sh -c /Users/security/mtclient/src/minetest.build/Release/minetest.build/Script-5234A675472746F8B139E36E.sh 0#
lSLF07#2@47"Run custom shell script 'CMake PostBuild Rules'407107290#407107290#0(272"echo "Depend check for xcode" Depend check for xcode cd /Users/security/mtclient && make -C /Users/security/mtclient -f /Users/security/mtclient/CMakeScripts/XCODE_DEPEND_HELPER.make PostBuild.minetest.Release make[1]: Nothing to be done for `PostBuild.minetest.Release'. 4(13@30"echo "Depend check for xcode" 407108814#0#30#0(1@0"0(13@23"Depend check for xcode 407108814#30#23#0(1@0"0(13@157"cd /Users/security/mtclient && make -C /Users/security/mtclient -f /Users/security/mtclient/CMakeScripts/XCODE_DEPEND_HELPER.make PostBuild.minetest.Release 407108814#53#157#0(1@0"0(13@62"make[1]: Nothing to be done for `PostBuild.minetest.Release'. 407108814#210#62#0(1@0"0(0#0#0"8622033056#149" cd /Users/security/mtclient /bin/sh -c /Users/security/mtclient/src/minetest.build/Release/minetest.build/Script-5234A675472746F8B139E36E.sh 0#

View File

@ -1,7 +1,6 @@
0f859f09589caeedef1c11cb5644f15d c9b61bda05839c3287cf0b5fe45edffe ffffffffffffffffffffffffffffffff 14055260 /Users/security/mtclient/bin/Release/minetest
00000000509ebd7000000000000069bc f23405153b1501f0121d9af5744e5a91 ffffffffffffffffffffffffffffffff 11092 /Users/security/mtclient/src/minetest.build/Release/minetest.build/Objects-normal/i386/voxelalgorithms.o
0000000018cfab2c0000000000007010 87db75a12b90af6aca19e195e78d2889 ffffffffffffffffffffffffffffffff 19568 /Users/security/mtclient/src/minetest.build/Release/minetest.build/Objects-normal/i386/voxel.o
0000000000000000000000000000073b b0ba31e3562a9a1f09994af6870c6672 ffffffffffffffffffffffffffffffff 856 /Users/security/mtclient/src/minetest.build/Release/minetest.build/Objects-normal/i386/version.o
000000005293c53b00000000000007de b0ba31e3562a9a1f09994af6870c6672 ffffffffffffffffffffffffffffffff 856 /Users/security/mtclient/src/minetest.build/Release/minetest.build/Objects-normal/i386/version.o
00000000004cc5eb000000000001c94a 5c61139e1de98df65d172045ff175f7d ffffffffffffffffffffffffffffffff 59116 /Users/security/mtclient/src/minetest.build/Release/minetest.build/Objects-normal/i386/treegen.o
0000000018836ec00000000000012bf9 3e56280ce8137994bef7e03e29e4492f ffffffffffffffffffffffffffffffff 30756 /Users/security/mtclient/src/minetest.build/Release/minetest.build/Objects-normal/i386/tool.o
0000000000000000000000000000d1e6 b5af13d5d5e631209cfe18e1bc2d2acb ffffffffffffffffffffffffffffffff 127144 /Users/security/mtclient/src/minetest.build/Release/minetest.build/Objects-normal/i386/tile.o
@ -114,6 +113,7 @@
0000000050b15ebe00000000000058f3 589ef7a71c23087ef4d1f5e4c6af2bae ffffffffffffffffffffffffffffffff 6156 /Users/security/mtclient/src/minetest.build/Release/minetest.build/Objects-normal/i386/l_rollback.o
000000000223db5b000000000000464b 0b32d48803b174f896cd045a20b010f4 ffffffffffffffffffffffffffffffff 8872 /Users/security/mtclient/src/minetest.build/Release/minetest.build/Objects-normal/i386/l_particles.o
000000000223db5d000000000001b9f3 f516eb9e25800084d97792a94509d9e9 ffffffffffffffffffffffffffffffff 89388 /Users/security/mtclient/src/minetest.build/Release/minetest.build/Objects-normal/i386/l_object.o
000000000241c716000000000000249e 2937dcb1092bd6a6b917a25f2b77f670 ffffffffffffffffffffffffffffffff 37024 /Users/security/mtclient/src/minetest.build/Release/minetest.build/Objects-normal/i386/l_noise.o
000000000240fd7f0000000000019168 0b8df157d00a8557840bb4cd4eb713f5 ffffffffffffffffffffffffffffffff 8152 /Users/security/mtclient/src/minetest.build/Release/minetest.build/Objects-normal/i386/l_nodetimer.o
0000000018cfab2d00000000000154d2 af49aee52f5367753a97b904854ee3f6 ffffffffffffffffffffffffffffffff 38456 /Users/security/mtclient/src/minetest.build/Release/minetest.build/Objects-normal/i386/l_nodemeta.o
000000001aa0b59d000000000001d140 a135e36d6bbd2e17f90e4972a4d84e2d ffffffffffffffffffffffffffffffff 45744 /Users/security/mtclient/src/minetest.build/Release/minetest.build/Objects-normal/i386/l_mapgen.o
@ -122,21 +122,21 @@
000000004a3e08ec0000000000009c43 419d2ef0ae17fe84dd01e07b3026c0b0 ffffffffffffffffffffffffffffffff 46320 /Users/security/mtclient/src/minetest.build/Release/minetest.build/Objects-normal/i386/l_inventory.o
0000000018adb761000000000000c621 4ba0c17cd9bcda8655f9dec51b5dbe4b ffffffffffffffffffffffffffffffff 53304 /Users/security/mtclient/src/minetest.build/Release/minetest.build/Objects-normal/i386/l_env.o
0000000050b15eb8000000000000aa91 1b0b7bcd29a177c0be792d42135532bc ffffffffffffffffffffffffffffffff 92068 /Users/security/mtclient/src/minetest.build/Release/minetest.build/Objects-normal/i386/l_craft.o
00000000487fcffa000000000000e9ee 42d54882ac46081e21e3c0794d2d1dee ffffffffffffffffffffffffffffffff 19088 /Users/security/mtclient/src/minetest.build/Release/minetest.build/Objects-normal/i386/s_nodemeta.o
000000001aed4a1e000000000001df62 1ead5a372bfd2821ee9713e38bacb5e4 ffffffffffffffffffffffffffffffff 20628 /Users/security/mtclient/src/minetest.build/Release/minetest.build/Objects-normal/i386/s_node.o
0000000050fca13a0000000000018133 395242ecde1f52f761fba0089bb4c055 ffffffffffffffffffffffffffffffff 25496 /Users/security/mtclient/src/minetest.build/Release/minetest.build/Objects-normal/i386/s_item.o
000000001ac2a9d1000000000000a249 7b5b1967eb6304441afe5a4b86faf810 ffffffffffffffffffffffffffffffff 17276 /Users/security/mtclient/src/minetest.build/Release/minetest.build/Objects-normal/i386/s_env.o
000000004ecefda4000000000000dba6 528017c10487598982e1a8ecd9bfd0ed ffffffffffffffffffffffffffffffff 15732 /Users/security/mtclient/src/minetest.build/Release/minetest.build/Objects-normal/i386/s_base.o
0000000050b15bf900000000000128dd a4e15adf53f840faecdd84c0681be373 ffffffffffffffffffffffffffffffff 100892 /Users/security/mtclient/src/minetest.build/Release/minetest.build/Objects-normal/i386/c_content.o
000000000241c716000000000000249e 2937dcb1092bd6a6b917a25f2b77f670 ffffffffffffffffffffffffffffffff 37024 /Users/security/mtclient/src/minetest.build/Release/minetest.build/Objects-normal/i386/l_noise.o
0000000052df7a670000000000004eec 16c2834738cf4113c70e786400f26e71 ffffffffffffffffffffffffffffffff 3336 /Users/security/mtclient/src/minetest.build/Release/minetest.build/Objects-normal/i386/l_base.o
00000000020c3892000000000000b583 5d7733218d3bc20a55f4b7e610d74189 ffffffffffffffffffffffffffffffff 17636 /Users/security/mtclient/src/minetest.build/Release/minetest.build/Objects-normal/i386/s_server.o
00000000020c3892000000000000b539 dbd99d882a6274f226d5cc6a07c61b8f ffffffffffffffffffffffffffffffff 12096 /Users/security/mtclient/src/minetest.build/Release/minetest.build/Objects-normal/i386/s_player.o
00000000487fcffa000000000000e9ee 42d54882ac46081e21e3c0794d2d1dee ffffffffffffffffffffffffffffffff 19088 /Users/security/mtclient/src/minetest.build/Release/minetest.build/Objects-normal/i386/s_nodemeta.o
000000001aed4a1e000000000001df62 1ead5a372bfd2821ee9713e38bacb5e4 ffffffffffffffffffffffffffffffff 20628 /Users/security/mtclient/src/minetest.build/Release/minetest.build/Objects-normal/i386/s_node.o
00000000020c3892000000000000ae0e 48c861388d5d04114f319e151818bff5 ffffffffffffffffffffffffffffffff 6868 /Users/security/mtclient/src/minetest.build/Release/minetest.build/Objects-normal/i386/s_mainmenu.o
0000000050fca13a0000000000018133 395242ecde1f52f761fba0089bb4c055 ffffffffffffffffffffffffffffffff 25496 /Users/security/mtclient/src/minetest.build/Release/minetest.build/Objects-normal/i386/s_item.o
00000000509ebd77000000000000bfd1 337128dcbc307cc498ca0494fc6a9265 ffffffffffffffffffffffffffffffff 16868 /Users/security/mtclient/src/minetest.build/Release/minetest.build/Objects-normal/i386/s_inventory.o
000000001ac2a9d1000000000000a249 7b5b1967eb6304441afe5a4b86faf810 ffffffffffffffffffffffffffffffff 17276 /Users/security/mtclient/src/minetest.build/Release/minetest.build/Objects-normal/i386/s_env.o
00000000000000010000000000000929 63ed3c6a4e80336e3ee37bbea7e87c34 ffffffffffffffffffffffffffffffff 15944 /Users/security/mtclient/src/minetest.build/Release/minetest.build/Objects-normal/i386/s_entity.o
000000004ecefda4000000000000dba6 528017c10487598982e1a8ecd9bfd0ed ffffffffffffffffffffffffffffffff 15732 /Users/security/mtclient/src/minetest.build/Release/minetest.build/Objects-normal/i386/s_base.o
0000000052df7a660000000000011604 88e48d66c2f6cc665ea375cce0144c8c ffffffffffffffffffffffffffffffff 5628 /Users/security/mtclient/src/minetest.build/Release/minetest.build/Objects-normal/i386/c_types.o
00000000020c3892000000000000a7a9 c43a2394162efea6ab0529753a4962f9 ffffffffffffffffffffffffffffffff 7652 /Users/security/mtclient/src/minetest.build/Release/minetest.build/Objects-normal/i386/c_internal.o
000000000241c7160000000000002e24 4bb272e49f31d2a64612173dccd32c5f ffffffffffffffffffffffffffffffff 17256 /Users/security/mtclient/src/minetest.build/Release/minetest.build/Objects-normal/i386/c_converter.o
0000000050b15bf900000000000128dd a4e15adf53f840faecdd84c0681be373 ffffffffffffffffffffffffffffffff 100892 /Users/security/mtclient/src/minetest.build/Release/minetest.build/Objects-normal/i386/c_content.o
0000000018e153b100000000000015cf e5061051169dabfc424a56451122ae48 ffffffffffffffffffffffffffffffff 5880 /Users/security/mtclient/src/minetest.build/Release/minetest.build/Objects-normal/i386/jthread.o
0000000000000001000000000000308c 88f90751acc9dfec13ebeb90bd77affa ffffffffffffffffffffffffffffffff 1628 /Users/security/mtclient/src/minetest.build/Release/minetest.build/Objects-normal/i386/jmutex.o
0f859f090a0f6bd6ef1c11cb5644f1b8 c9b61bda05839c3287cf0b5fe45edffe ffffffffffffffffffffffffffffffff 14055260 /Users/security/mtclient/bin/Release/minetest

View File

@ -1,7 +1,7 @@
Tminetestserver
v7
r0
t407107591.640272
t407108814.062602
cCheck dependencies
cCompileC src/minetest.build/Release/minetestserver.build/Objects-normal/i386/jmutex.o /Users/security/mtclient/src/jthread/pthread/jmutex.cpp normal i386 c++ com.apple.compilers.gcc.4_2
cCompileC src/minetest.build/Release/minetestserver.build/Objects-normal/i386/jthread.o /Users/security/mtclient/src/jthread/pthread/jthread.cpp normal i386 c++ com.apple.compilers.gcc.4_2
@ -323,7 +323,7 @@ t1242688292
s139
N/Users/security/mtclient/bin/Release/minetestserver
t1385414790
t1385415996
s3601300
N/Users/security/mtclient/src/activeobject.h
@ -458,6 +458,11 @@ c000000005293BACA000000000000029D
t1385413322
s669
N/Users/security/mtclient/src/cmake_config_githash.h
c000000005293C53B00000000000000E5
t1385415995
s229
N/Users/security/mtclient/src/collision.cpp
c00000000529285E50000000000004437
t1385334245
@ -2141,7 +2146,7 @@ t1385414765
s59116
N/Users/security/mtclient/src/minetest.build/Release/minetestserver.build/Objects-normal/i386/version.o
t1385414766
t1385415995
s856
N/Users/security/mtclient/src/minetest.build/Release/minetestserver.build/Objects-normal/i386/voxel.o
@ -3888,7 +3893,7 @@ s17163
CCheck dependencies
r0
lSLF07#2@18"Check dependencies407107271#407107272#0(0"0(0#1#0"8633610912#0"0#
lSLF07#2@18"Check dependencies407108813#407108814#0(0"0(0#1#0"8618939840#0"0#
CCompileC src/minetest.build/Release/minetestserver.build/Objects-normal/i386/ban.o /Users/security/mtclient/src/ban.cpp normal i386 c++ com.apple.compilers.gcc.4_2
s407107341.727945
@ -5252,8 +5257,8 @@ xcom.apple.compilers.gcc.4_2
lSLF07#2@48"Compile /Users/security/mtclient/src/treegen.cpp407107560#407107566#0(0"0(0#0#40"/Users/security/mtclient/src/treegen.cpp8638061248#1395" cd /Users/security/mtclient setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c++ -arch i386 -fmessage-length=0 -pipe -Wno-trigraphs -fpascal-strings -fasm-blocks -O3 -mdynamic-no-pic -DCMAKE_INTDIR="Release" -DUSE_CMAKE_CONFIG_H -DSERVER -isysroot /Developer/SDKs/MacOSX10.6.sdk -mmacosx-version-min=10.6 -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/security/mtclient/bin/Release -I/Users/security/mtclient/bin/Release/include -I/Users/security/mtclient/src -I/usr/local/include/irrlicht -I/Users/security/mtclient/src/Release -I/Developer/SDKs/MacOSX10.6.sdk/Library/Frameworks/UnixImageIO.framework/Headers -I/Developer/SDKs/MacOSX10.6.sdk/Library/Frameworks/OpenAL.framework/Headers -I/opt/local/include -I/Developer/SDKs/MacOSX10.6.sdk/Library/Frameworks/Ogg.framework/Headers/ogg -I/Users/security/mtclient/src/lua/src -I/Users/security/mtclient/src/json -I/Users/security/mtclient/src/script -I/Developer/SDKs/MacOSX10.6.sdk/usr/include/curl -I/Users/security/mtclient/src/minetest.build/Release/minetestserver.build/DerivedSources/i386 -I/Users/security/mtclient/src/minetest.build/Release/minetestserver.build/DerivedSources -DNDEBUG -Wall -ffast-math -Wall -fomit-frame-pointer -pipe -funroll-loops -c /Users/security/mtclient/src/treegen.cpp -o /Users/security/mtclient/src/minetest.build/Release/minetestserver.build/Objects-normal/i386/treegen.o 0#
CCompileC src/minetest.build/Release/minetestserver.build/Objects-normal/i386/version.o /Users/security/mtclient/src/version.cpp normal i386 c++ com.apple.compilers.gcc.4_2
s407107566.018762
e407107566.063070
s407108795.718585
e407108795.761205
r1
xCompileC
xsrc/minetest.build/Release/minetestserver.build/Objects-normal/i386/version.o
@ -5262,7 +5267,7 @@ xnormal
xi386
xc++
xcom.apple.compilers.gcc.4_2
lSLF07#2@48"Compile /Users/security/mtclient/src/version.cpp407107566#407107566#0(0"0(0#0#40"/Users/security/mtclient/src/version.cpp8622500416#1395" cd /Users/security/mtclient setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c++ -arch i386 -fmessage-length=0 -pipe -Wno-trigraphs -fpascal-strings -fasm-blocks -O3 -mdynamic-no-pic -DCMAKE_INTDIR="Release" -DUSE_CMAKE_CONFIG_H -DSERVER -isysroot /Developer/SDKs/MacOSX10.6.sdk -mmacosx-version-min=10.6 -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/security/mtclient/bin/Release -I/Users/security/mtclient/bin/Release/include -I/Users/security/mtclient/src -I/usr/local/include/irrlicht -I/Users/security/mtclient/src/Release -I/Developer/SDKs/MacOSX10.6.sdk/Library/Frameworks/UnixImageIO.framework/Headers -I/Developer/SDKs/MacOSX10.6.sdk/Library/Frameworks/OpenAL.framework/Headers -I/opt/local/include -I/Developer/SDKs/MacOSX10.6.sdk/Library/Frameworks/Ogg.framework/Headers/ogg -I/Users/security/mtclient/src/lua/src -I/Users/security/mtclient/src/json -I/Users/security/mtclient/src/script -I/Developer/SDKs/MacOSX10.6.sdk/usr/include/curl -I/Users/security/mtclient/src/minetest.build/Release/minetestserver.build/DerivedSources/i386 -I/Users/security/mtclient/src/minetest.build/Release/minetestserver.build/DerivedSources -DNDEBUG -Wall -ffast-math -Wall -fomit-frame-pointer -pipe -funroll-loops -c /Users/security/mtclient/src/version.cpp -o /Users/security/mtclient/src/minetest.build/Release/minetestserver.build/Objects-normal/i386/version.o 0#
lSLF07#2@48"Compile /Users/security/mtclient/src/version.cpp407108795#407108795#0(0"0(0#0#40"/Users/security/mtclient/src/version.cpp8612409312#1395" cd /Users/security/mtclient setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c++ -arch i386 -fmessage-length=0 -pipe -Wno-trigraphs -fpascal-strings -fasm-blocks -O3 -mdynamic-no-pic -DCMAKE_INTDIR="Release" -DUSE_CMAKE_CONFIG_H -DSERVER -isysroot /Developer/SDKs/MacOSX10.6.sdk -mmacosx-version-min=10.6 -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/security/mtclient/bin/Release -I/Users/security/mtclient/bin/Release/include -I/Users/security/mtclient/src -I/usr/local/include/irrlicht -I/Users/security/mtclient/src/Release -I/Developer/SDKs/MacOSX10.6.sdk/Library/Frameworks/UnixImageIO.framework/Headers -I/Developer/SDKs/MacOSX10.6.sdk/Library/Frameworks/OpenAL.framework/Headers -I/opt/local/include -I/Developer/SDKs/MacOSX10.6.sdk/Library/Frameworks/Ogg.framework/Headers/ogg -I/Users/security/mtclient/src/lua/src -I/Users/security/mtclient/src/json -I/Users/security/mtclient/src/script -I/Developer/SDKs/MacOSX10.6.sdk/usr/include/curl -I/Users/security/mtclient/src/minetest.build/Release/minetestserver.build/DerivedSources/i386 -I/Users/security/mtclient/src/minetest.build/Release/minetestserver.build/DerivedSources -DNDEBUG -Wall -ffast-math -Wall -fomit-frame-pointer -pipe -funroll-loops -c /Users/security/mtclient/src/version.cpp -o /Users/security/mtclient/src/minetest.build/Release/minetestserver.build/Objects-normal/i386/version.o 0#
CCompileC src/minetest.build/Release/minetestserver.build/Objects-normal/i386/voxel.o /Users/security/mtclient/src/voxel.cpp normal i386 c++ com.apple.compilers.gcc.4_2
s407107566.063338
@ -5291,18 +5296,18 @@ xcom.apple.compilers.gcc.4_2
lSLF07#2@56"Compile /Users/security/mtclient/src/voxelalgorithms.cpp407107568#407107569#0(0"0(0#0#48"/Users/security/mtclient/src/voxelalgorithms.cpp8618028640#1411" cd /Users/security/mtclient setenv LANG en_US.US-ASCII /Developer/usr/bin/gcc-4.2 -x c++ -arch i386 -fmessage-length=0 -pipe -Wno-trigraphs -fpascal-strings -fasm-blocks -O3 -mdynamic-no-pic -DCMAKE_INTDIR="Release" -DUSE_CMAKE_CONFIG_H -DSERVER -isysroot /Developer/SDKs/MacOSX10.6.sdk -mmacosx-version-min=10.6 -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/security/mtclient/bin/Release -I/Users/security/mtclient/bin/Release/include -I/Users/security/mtclient/src -I/usr/local/include/irrlicht -I/Users/security/mtclient/src/Release -I/Developer/SDKs/MacOSX10.6.sdk/Library/Frameworks/UnixImageIO.framework/Headers -I/Developer/SDKs/MacOSX10.6.sdk/Library/Frameworks/OpenAL.framework/Headers -I/opt/local/include -I/Developer/SDKs/MacOSX10.6.sdk/Library/Frameworks/Ogg.framework/Headers/ogg -I/Users/security/mtclient/src/lua/src -I/Users/security/mtclient/src/json -I/Users/security/mtclient/src/script -I/Developer/SDKs/MacOSX10.6.sdk/usr/include/curl -I/Users/security/mtclient/src/minetest.build/Release/minetestserver.build/DerivedSources/i386 -I/Users/security/mtclient/src/minetest.build/Release/minetestserver.build/DerivedSources -DNDEBUG -Wall -ffast-math -Wall -fomit-frame-pointer -pipe -funroll-loops -c /Users/security/mtclient/src/voxelalgorithms.cpp -o /Users/security/mtclient/src/minetest.build/Release/minetestserver.build/Objects-normal/i386/voxelalgorithms.o 0#
CLd /Users/security/mtclient/bin/Release/minetestserver normal i386
s407107584.278338
e407107591.396762
s407108795.761477
e407108796.466097
r1
xLd
x/Users/security/mtclient/bin/Release/minetestserver
xnormal
xi386
lSLF07#2@56"Link /Users/security/mtclient/bin/Release/minetestserver407107584#407107591#0(0"0(0#0#0"8622070528#710" cd /Users/security/mtclient setenv MACOSX_DEPLOYMENT_TARGET 10.6 /Developer/usr/bin/g++-4.2 -arch i386 -isysroot /Developer/SDKs/MacOSX10.6.sdk -L/Users/security/mtclient/bin/Release -F/Users/security/mtclient/bin/Release -filelist /Users/security/mtclient/src/minetest.build/Release/minetestserver.build/Objects-normal/i386/minetestserver.LinkFileList -mmacosx-version-min=10.6 -framework Cocoa -Wl,-search_paths_first -Wl,-headerpad_max_install_names /usr/lib/libz.dylib /usr/lib/libsqlite3.dylib /Users/security/mtclient/src/json/Release/libjsoncpp.a /Users/security/mtclient/src/lua/build/Release/liblua.a -lpthread /usr/lib/libcurl.dylib -o /Users/security/mtclient/bin/Release/minetestserver 0#
lSLF07#2@56"Link /Users/security/mtclient/bin/Release/minetestserver407108795#407108796#0(0"0(0#0#0"8635830560#710" cd /Users/security/mtclient setenv MACOSX_DEPLOYMENT_TARGET 10.6 /Developer/usr/bin/g++-4.2 -arch i386 -isysroot /Developer/SDKs/MacOSX10.6.sdk -L/Users/security/mtclient/bin/Release -F/Users/security/mtclient/bin/Release -filelist /Users/security/mtclient/src/minetest.build/Release/minetestserver.build/Objects-normal/i386/minetestserver.LinkFileList -mmacosx-version-min=10.6 -framework Cocoa -Wl,-search_paths_first -Wl,-headerpad_max_install_names /usr/lib/libz.dylib /usr/lib/libsqlite3.dylib /Users/security/mtclient/src/json/Release/libjsoncpp.a /Users/security/mtclient/src/lua/build/Release/liblua.a -lpthread /usr/lib/libcurl.dylib -o /Users/security/mtclient/bin/Release/minetestserver 0#
CPhaseScriptExecution "CMake PostBuild Rules" /Users/security/mtclient/src/minetest.build/Release/minetestserver.build/Script-E991AAA6BB92487EA77177E3.sh
s407107591.396987
e407107591.640223
s407108814.021931
e407108814.062556
r1
xPhaseScriptExecution
xCMake PostBuild Rules
@ -5311,5 +5316,5 @@ oecho "Depend check for xcode"
oDepend check for xcode
ocd /Users/security/mtclient && make -C /Users/security/mtclient -f /Users/security/mtclient/CMakeScripts/XCODE_DEPEND_HELPER.make PostBuild.minetestserver.Release
omake[1]: Nothing to be done for `PostBuild.minetestserver.Release'.
lSLF07#2@47"Run custom shell script 'CMake PostBuild Rules'407107591#407107591#0(284"echo "Depend check for xcode" Depend check for xcode cd /Users/security/mtclient && make -C /Users/security/mtclient -f /Users/security/mtclient/CMakeScripts/XCODE_DEPEND_HELPER.make PostBuild.minetestserver.Release make[1]: Nothing to be done for `PostBuild.minetestserver.Release'. 4(13@30"echo "Depend check for xcode" 407107591#0#30#0(1@0"0(13@23"Depend check for xcode 407107591#30#23#0(1@0"0(13@163"cd /Users/security/mtclient && make -C /Users/security/mtclient -f /Users/security/mtclient/CMakeScripts/XCODE_DEPEND_HELPER.make PostBuild.minetestserver.Release 407107591#53#163#0(1@0"0(13@68"make[1]: Nothing to be done for `PostBuild.minetestserver.Release'. 407107591#216#68#0(1@0"0(0#0#0"8624186080#155" cd /Users/security/mtclient /bin/sh -c /Users/security/mtclient/src/minetest.build/Release/minetestserver.build/Script-E991AAA6BB92487EA77177E3.sh 0#
lSLF07#2@47"Run custom shell script 'CMake PostBuild Rules'407107591#407107591#0(284"echo "Depend check for xcode" Depend check for xcode cd /Users/security/mtclient && make -C /Users/security/mtclient -f /Users/security/mtclient/CMakeScripts/XCODE_DEPEND_HELPER.make PostBuild.minetestserver.Release make[1]: Nothing to be done for `PostBuild.minetestserver.Release'. 4(13@30"echo "Depend check for xcode" 407108814#0#30#0(1@0"0(13@23"Depend check for xcode 407108814#30#23#0(1@0"0(13@163"cd /Users/security/mtclient && make -C /Users/security/mtclient -f /Users/security/mtclient/CMakeScripts/XCODE_DEPEND_HELPER.make PostBuild.minetestserver.Release 407108814#53#163#0(1@0"0(13@68"make[1]: Nothing to be done for `PostBuild.minetestserver.Release'. 407108814#216#68#0(1@0"0(0#0#0"8631297920#155" cd /Users/security/mtclient /bin/sh -c /Users/security/mtclient/src/minetest.build/Release/minetestserver.build/Script-E991AAA6BB92487EA77177E3.sh 0#

View File

@ -1,7 +1,6 @@
ad5ef5e8bf71ae73997968dc05e498a7 4a350143e5a4ef8da3500c3b2c8b5349 ffffffffffffffffffffffffffffffff 3601300 /Users/security/mtclient/bin/Release/minetestserver
00000000509ebd7000000000000069bc d58e791856b4893f56e223ec96944605 ffffffffffffffffffffffffffffffff 11092 /Users/security/mtclient/src/minetest.build/Release/minetestserver.build/Objects-normal/i386/voxelalgorithms.o
0000000018cfab2c0000000000007010 1b6f180562116bd19c962b7f09ccdc8c ffffffffffffffffffffffffffffffff 19520 /Users/security/mtclient/src/minetest.build/Release/minetestserver.build/Objects-normal/i386/voxel.o
0000000000000000000000000000073b 8da836db30fdc73c931637926f7f0465 ffffffffffffffffffffffffffffffff 856 /Users/security/mtclient/src/minetest.build/Release/minetestserver.build/Objects-normal/i386/version.o
000000005293c53b00000000000007de 8da836db30fdc73c931637926f7f0465 ffffffffffffffffffffffffffffffff 856 /Users/security/mtclient/src/minetest.build/Release/minetestserver.build/Objects-normal/i386/version.o
00000000004cc5eb000000000001c94a ac7a9ab1b0c10245637cc1c5248dd385 ffffffffffffffffffffffffffffffff 59116 /Users/security/mtclient/src/minetest.build/Release/minetestserver.build/Objects-normal/i386/treegen.o
0000000018836ec00000000000012bf9 e772e5bb4199d972636cfb9d3a006f70 ffffffffffffffffffffffffffffffff 30772 /Users/security/mtclient/src/minetest.build/Release/minetestserver.build/Objects-normal/i386/tool.o
000000004a11eb24000000000001e3a6 06070495b7dd9911ffd6019786970bda ffffffffffffffffffffffffffffffff 261332 /Users/security/mtclient/src/minetest.build/Release/minetestserver.build/Objects-normal/i386/test.o
@ -105,3 +104,4 @@ ad5ef5e8bf71ae73997968dc05e498a7 4a350143e5a4ef8da3500c3b2c8b5349 ffffffffffffff
0000000050b15bf900000000000128dd 205a808b9a1738629c0e8b080f3c8fc7 ffffffffffffffffffffffffffffffff 100860 /Users/security/mtclient/src/minetest.build/Release/minetestserver.build/Objects-normal/i386/c_content.o
0000000018e153b100000000000015cf 3bb9fd0e13f833cf26f9a260b6ead956 ffffffffffffffffffffffffffffffff 5880 /Users/security/mtclient/src/minetest.build/Release/minetestserver.build/Objects-normal/i386/jthread.o
0000000000000001000000000000308c 63fd9227cab7a0f1ceeb276f492c353d ffffffffffffffffffffffffffffffff 1628 /Users/security/mtclient/src/minetest.build/Release/minetestserver.build/Objects-normal/i386/jmutex.o
ad5ef5e8ede26b48997968dc05e49842 4a350143e5a4ef8da3500c3b2c8b5349 ffffffffffffffffffffffffffffffff 3601300 /Users/security/mtclient/bin/Release/minetestserver