5 The official Proxmark repository is found here: https://github.com/Proxmark/proxmark3
10 Whats in this fork? I have scraped the web for different enhancements to the PM3 sourcecode and not all of them ever found their way to the master branch.
12 * jonor's hf 14a raw timing patch
13 * Piwi's updates. (usually gets into the master)
14 * Holimans iclass, (usually gets into the master)
15 * Marshmellows LF fixes (will go into the master)
16 * Midnitesnakes Ultralight, Ultralight-c enhancements
17 * My desfire, Ultralight extras, LF T55xx enhancements, bugs fixes (filelength, hf mf commands ), TNP3xxx lua scripts, Awid26, skidata scripts (will come)
18 * other osbscury patches like for the sammy-mode, (offline you know), tagidentifications, defaultkeys.
20 Give me a hint, and I'll see if I can't merge in the stuff you have.
24 I do tend to rename and move stuff around, the official PM3-GUI from Gaucho will not work so good. *sorry*
29 This fork is adjusted to compile on windows/mingw environment with Qt5.3.1 & GCC 4.8
30 For people with linux you will need to patch some sourcecode and some small change to one makefile. If you are lazy, you google the forum and find asper's or holimans makefile or you find your solution below.
32 Common errors linux/macOS finds
34 * loclass/fileutils.c:15:2: warning: implicit declaration of function ‘_stat’ [-Wimplicit-function-declaration]
36 * Remove the "unscore" sign. In linux you use without underscore, in windows you need a underscore.
39 * \client\makefile the parameter -lgdi32
44 * Using older Qt4.6 gives compilation errors.
48 * Change these two line in \client\makefile
49 CXXFLAGS = -I$(QTDIR)/include -I$(QTDIR)/include/QtCore -I$(QTDIR)/include/QtGui -I$(QTDIR)/include/QtWidgets -I/mingw/include
50 QTLDLIBS = -L$(QTDIR)/lib -lQt5Core -lQt5Gui -lQt5Widgets
54 CXXFLAGS = -I$(QTDIR)/include -I$(QTDIR)/include/QtCore -I$(QTDIR)/include/QtGui
55 QTLDLIBS = -L$(QTDIR)/lib -lQtCore4 -lQtGui4
58 And old Qt4 version is found here: http://www.icesql.se/proxmark3/code/linuxmakefile.txt but this one doesn't have all new files in it. So I don't recommend it.
63 iceman at host iuse.se