mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
3cbaf768d1
- Turn on FCS validation by default for all sources - support for recent autotools - fixes for crashes when alert backlog was set to zero - fixes for failures in some VIF situations - fixes to resizing windows - fixes to GPS averaging - add WPS state parsing - handle BSSTimestamp parsing - other assorted bug fixes and behavior improvements. - nl8011 support is fixed so finding the vif device works again - full 5GHz channel discovery works now - memory leaks in the drone are fixed - some ncurses compile bugs are resolved.
23 lines
780 B
Plaintext
23 lines
780 B
Plaintext
--- restricted-plugin-ptw/Makefile.orig 2016-07-02 18:06:10 UTC
|
|
+++ restricted-plugin-ptw/Makefile
|
|
@@ -9,8 +9,8 @@ top_builddir = $(BLDHOME)
|
|
|
|
PLUGINLDFLAGS += -shared -rdynamic
|
|
LIBS += -lstdc++ -lssl -lpthread -lcrypto
|
|
-CFLAGS += -I$(KIS_INC_DIR) -g -fPIC
|
|
-CXXFLAGS += -I$(KIS_INC_DIR) -g -fPIC
|
|
+CFLAGS += -I$(KIS_INC_DIR) -fPIC
|
|
+CXXFLAGS += -I$(KIS_INC_DIR) -fPIC
|
|
|
|
PLUGOBJS = aircrack-crypto.o aircrack-ptw2-lib.o aircrack-kismet.o
|
|
PLUGOUT = aircrack-kismet.so
|
|
@@ -22,7 +22,7 @@ $(PLUGOUT): $(PLUGOBJS)
|
|
|
|
install: $(PLUGOUT)
|
|
mkdir -p $(DESTDIR)/$(plugindir)
|
|
- $(INSTALL) -o $(INSTUSR) -g $(INSTGRP) -m 644 $^ $(DESTDIR)/$(plugindir)/$^
|
|
+ $(INSTALL) -m 644 $(PLUGOUT) $(DESTDIR)/$(plugindir)/$(PLUGOUT)
|
|
|
|
userinstall: $(PLUGOUT)
|
|
mkdir -p ${HOME}/.kismet/plugins/
|