forked from dect/dedected
1
0
Fork 0

dectshark: Link against -lncursesw instead of -lcurses

Fixes compile issues on openSUSE systems.
This commit is contained in:
Martin Hauke 2023-12-16 13:15:42 +01:00
parent 338b611564
commit 75d82e718b
1 changed files with 1 additions and 1 deletions

View File

@ -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