summaryrefslogtreecommitdiff
path: root/configure.ac
AgeCommit message (Collapse)Author
2017-07-29Only build one GUI binary per defaultJoel Klinghed
Qt5 has priority over GTK if both are available For developers there is now --enable-all-gui which will continue to build all available GUI:s
2017-07-29Lower GTK and Qt version requirementsJoel Klinghed
For GTK lower than 3.20 there is no GtkFileChooserNative so fallback to using GtkFileChooserDialog
2017-07-29Fix make distcheckJoel Klinghed
Add all headers to _SOURCES Cleanup update-mime-database (and c.o.) and disable them for distcheck as they leave files after uninstall
2017-07-29Install desktop, icon and mime data filesJoel Klinghed
2017-07-29Remove attribute(__unused__) usageJoel Klinghed
Just omitting the parameter name is more portable and less to write
2017-07-29Add basic pcap import/export supportJoel Klinghed
2017-07-27Add --disable-gtk and --disable-qt to configureJoel Klinghed
2017-07-26Add SSL interception to Setup in GUIJoel Klinghed
2017-07-24Fix mbedtls certificate generationJoel Klinghed
And improve configure detction for mbedtls by listing other libraries
2017-07-22Add application config for GUIJoel Klinghed
QT5 stored in .config/org.the_jk/tp.Monitor.conf on Linux GTK stored in dconf
2017-07-22Initial monitor GUIJoel Klinghed
Basic monitor functionality, GTK-3.0 and QT5 backends
2017-07-22Fix warnings for GCC as wellJoel Klinghed
GCC ignores __attribute__((unused)) when compiling C++ code. (Yes, this is true) GCC -Wmaybe-uninitialized just gives false positives in my experience, so drop it. However, this exposed a problem with AX_APPEND_COMPILE_FLAGS and clang. clang gives a warning, but not an error, when given a -Wno-UNKNOWN-FLAG. So add -Werror as an extra flag to make clang fail on unknown -Wno-UNKNOWN-FLAG
2017-07-22Restore -Wunused-parameter warningJoel Klinghed
2017-04-06Add fallback SSL implementation using OpenSSLJoel Klinghed
2017-03-28Support compiling without SSLJoel Klinghed
And prepare for other SSL implementations than mbedtls
2017-03-28MITM SSL Interception support using mbedtlsJoel Klinghed
2017-02-28Check for accept4() and provide alternativeJoel Klinghed
2017-02-28Initial commitJoel Klinghed