From 75d82e718b5d48c35fc10d847d2aacdce849b53e Mon Sep 17 00:00:00 2001 From: Martin Hauke Date: Sat, 16 Dec 2023 13:15:42 +0100 Subject: [PATCH] dectshark: Link against -lncursesw instead of -lcurses Fixes compile issues on openSUSE systems. --- com-on-air_cs-linux/tools/dectshark/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/com-on-air_cs-linux/tools/dectshark/Makefile b/com-on-air_cs-linux/tools/dectshark/Makefile index 8e500e9..be2a0d1 100644 --- a/com-on-air_cs-linux/tools/dectshark/Makefile +++ b/com-on-air_cs-linux/tools/dectshark/Makefile @@ -1,6 +1,6 @@ CPPFLAGS=-Wall -O2 -I../.. dectshark: dectshark.o gui.o foundinfo.o scanmode_gui.o syncmode_gui.o packetparser.o packetsaver.o - g++ $(CPPFLAGS) dectshark.o gui.o scanmode_gui.o syncmode_gui.o foundinfo.o packetparser.o packetsaver.o -o dectshark -lcurses -lpthread -lpcap + g++ $(CPPFLAGS) dectshark.o gui.o scanmode_gui.o syncmode_gui.o foundinfo.o packetparser.o packetsaver.o -o dectshark -lncursesw -lpthread -lpcap clean: rm *.o *~ dectshark