summaryrefslogtreecommitdiffstats
path: root/chat-libs/c-toxcore/patches/0002-Add-knob-to-suppress-building-the-nTox-client.patch
diff options
context:
space:
mode:
Diffstat (limited to 'chat-libs/c-toxcore/patches/0002-Add-knob-to-suppress-building-the-nTox-client.patch')
-rw-r--r--chat-libs/c-toxcore/patches/0002-Add-knob-to-suppress-building-the-nTox-client.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/chat-libs/c-toxcore/patches/0002-Add-knob-to-suppress-building-the-nTox-client.patch b/chat-libs/c-toxcore/patches/0002-Add-knob-to-suppress-building-the-nTox-client.patch
deleted file mode 100644
index a569d4d7c0..0000000000
--- a/chat-libs/c-toxcore/patches/0002-Add-knob-to-suppress-building-the-nTox-client.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From b13629a72586c650462c918c0802db06e1ed9352 Mon Sep 17 00:00:00 2001
-From: Ismael Luceno <ismael@iodev.co.uk>
-Date: Wed, 23 Nov 2016 11:55:10 -0200
-Subject: [PATCH 2/2] Add knob to suppress building the nTox client
-
-Signed-off-by: Ismael Luceno <ismael@iodev.co.uk>
----
- CMakeLists.txt | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 88ba43b4473c..da7e26391753 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -479,7 +479,8 @@ if(NOT WIN32 AND BUILD_AV_TEST
- endif()
- endif()
-
--if(NOT WIN32)
-+option(BUILD_NTOX "Build nTox client" ON)
-+if(NOT WIN32 AND BUILD_NTOX)
- add_c_executable(nTox testing/nTox.c)
- target_link_modules(nTox toxcore ${NCURSES_LIBRARIES})
- endif()
---
-2.10.2
-