aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorNils Dagsson Moskopp <nils@dieweltistgarnichtso.net>2019-11-27 01:46:59 +0100
committersfan5 <sfan5@live.de>2019-12-02 10:49:39 +0100
commitef8bf3cf3567b15feae4fd3ca1e2ea33bbd6600b (patch)
treec8f4d5bd412f9b09c12c74b5651eb21a2e2ead11 /.travis.yml
parent4b6bff46e14c6215828da5ca9ad2cb79aa517a6e (diff)
downloadminetest-ef8bf3cf3567b15feae4fd3ca1e2ea33bbd6600b.tar.gz
minetest-ef8bf3cf3567b15feae4fd3ca1e2ea33bbd6600b.tar.bz2
minetest-ef8bf3cf3567b15feae4fd3ca1e2ea33bbd6600b.zip
Fix Debian build dependencies in README
This patch replaces the statement in the README about a build dependency of the minetest binary on the package “build-essential” with a corresponding statement about build dependencies on the three packages “g++”, “make”, and “libc6-dev”. Though often used as a shorthand, “build-essential” is not a package used to install packages that are essential for building software – “build-essential” depends on packages that are essential for building Debian packages. Therefore, the dependency on “build-essential” implies a dependency on a lot of packages that are not actually necessary to build minetest (e.g. the Perl programming language).
Diffstat (limited to '.travis.yml')
0 files changed, 0 insertions, 0 deletions
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. */ #pragma once #include "irrlichttypes.h" #include "irr_v3d.h" #include <iostream> #include <string> enum PointedThingType { POINTEDTHING_NOTHING, POINTEDTHING_NODE, POINTEDTHING_OBJECT }; //! An active object or node which is selected by a ray on the map. struct PointedThing { //! The type of the pointed object. PointedThingType type = POINTEDTHING_NOTHING; /*! * Only valid if type is POINTEDTHING_NODE. * The coordinates of the node which owns the * nodebox that the ray hits first. * This may differ from node_real_undersurface if