summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Makefile9
-rw-r--r--src/gui/Makefile8
-rw-r--r--src/gui/curses/gui-display.c1
3 files changed, 0 insertions, 18 deletions
diff --git a/src/Makefile b/src/Makefile
index a3f848203..5be70c9bb 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -53,15 +53,6 @@ qt: $(OBJS) $(OBJS_IRC) $(OBJS_GUI)
$(CC) $(OPTIONS) $(OBJS) $(OBJS_IRC) $(OBJS_GUI) -o $(OUTPUT) $(LIBS_QT)
endif
-# WeeChat with Text interface
-ifeq ($(GUI), text)
-OBJS_TEXT=gui-text.o
-LIBS_TEXT=
-DEFINES=WEE_TEXT
-text: $(OBJS) $(OBJS_IRC) $(OBJS_GUI)
- $(CC) $(OPTIONS) $(OBJS) $(OBJS_IRC) $(OBJS_GUI) -o $(OUTPUT) $(LIBS_TEXT)
-endif
-
all:
make curses GUI=curses
diff --git a/src/gui/Makefile b/src/gui/Makefile
index 77d66bea7..9c0970ee1 100644
--- a/src/gui/Makefile
+++ b/src/gui/Makefile
@@ -36,13 +36,6 @@ qt/gui.a:
cd qt && make
endif
-# WeeChat with Text interface
-ifeq ($(GUI), text)
-text: text/gui.a
-text/gui.a:
- cd text && make
-endif
-
all:
make curses GUI=curses
@@ -52,4 +45,3 @@ clean:
cd curses && make clean
cd gtk && make clean
cd qt && make clean
- cd text && make clean
diff --git a/src/gui/curses/gui-display.c b/src/gui/curses/gui-display.c
index a5bb8bbf8..ec70af0c0 100644
--- a/src/gui/curses/gui-display.c
+++ b/src/gui/curses/gui-display.c
@@ -29,7 +29,6 @@
#include <string.h>
#include <signal.h>
#include <time.h>
-#include <sys/socket.h>
#include <curses.h>
#include "../../weechat.h"