From dc5a8d44e5f9dacba2bd79dc563e13804b75b358 Mon Sep 17 00:00:00 2001 From: "Henrique N. Lengler" Date: Sun, 15 Mar 2015 16:27:00 -0300 Subject: [PATCH 1/2] Add OpenBSD option to Makefile --- build/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build/Makefile b/build/Makefile index 2ebc5db..6f4ec4c 100644 --- a/build/Makefile +++ b/build/Makefile @@ -24,6 +24,9 @@ endif ifeq ($(UNAME_S), FreeBSD) -include $(CFG_DIR)/systems/FreeBSD.mk endif +ifeq ($(UNAME_S), OpenBSD) + -include $(CFG_DIR)/systems/FreeBSD.mk +endif ifeq ($(UNAME_S), Darwin) -include $(CFG_DIR)/systems/Darwin.mk endif From 2b2e74654950639e5650e73b7a8dc851a1fc9ab1 Mon Sep 17 00:00:00 2001 From: "Henrique N. Lengler" Date: Sun, 15 Mar 2015 16:34:56 -0300 Subject: [PATCH 2/2] added gnumake as dep., because you can't compile with *BSDmake --- INSTALL.md | 1 + 1 file changed, 1 insertion(+) diff --git a/INSTALL.md b/INSTALL.md index 6dc0bba..8633b93 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -14,6 +14,7 @@ | [Tox Core](https://github.com/irungentoo/toxcore) | BASE | *None* | | [NCurses](https://www.gnu.org/software/ncurses) | BASE | libncursesw5-dev | | [LibConfig](http://www.hyperrealm.com/libconfig) | BASE | libconfig-dev | +| [GNUmake](http://www.gnu.org/software/make/) | BASE | make | | [Tox Core AV](https://github.com/irungentoo/toxcore) | AUDIO | *None* | | [OpenAL](http://openal.org) | AUDIO, SOUND NOTIFICATIONS | libopenal-dev | | [OpenALUT](http://openal.org) | SOUND NOTIFICATIONS | libalut-dev |