This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * MSVC cl internal error test-case. | |
| * | |
| * An 'cl' optimiser bug that triggers this message while compiling a GnuRadio volk/lib .c-file: | |
| * | |
| * msvc-sse2-crash.c(82) : fatal error C1001: An internal error has occurred in the compiler. | |
| * (compiler file 'f:\dd\vctools\compiler\utc\src\p2\main.c', line 260) | |
| * To work around this problem, try simplifying or changing the program near the locations listed above. | |
| * Please choose the Technical Support command on the Visual C++ | |
| * Help menu, or open the Technical Support help file for more information |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # | |
| # A Gnu-makefile to generate a C-program ($(PROGRAM).c) with all | |
| # current 'CURLOPT_x' and 'CURLE_x' values. | |
| # | |
| # NB! must be invoked from libcurl's './lib' directory. | |
| # | |
| # By G. Vanem <[email protected]> 2014 - 2018. | |
| # | |
| # The basename of what this makefile generates; | |
| # A 'curl_opt_err.c' and a 'curl_opt_err.exe' (on Windows). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/local/bin/python | |
| #*************************************************************************** | |
| # _ _ ____ _ | |
| # Project ___| | | | _ \| | | |
| # / __| | | | |_) | | | |
| # | (__| |_| | _ <| |___ | |
| # \___|\___/|_| \_\_____| | |
| # | |
| # Copyright (C) 1998 - 2014, Daniel Stenberg, <[email protected]>, et al. | |
| # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Winpcap stuff for Win32 only: | |
| * | |
| * 1) Simple trace function used by WINDUMP_TRACE() macro in netdissect.h. | |
| * 2) Colourised 'ndo_printer'. | |
| * 3) Low-level NDIS/Packet32 stuff that doesn't fit anywhere else. | |
| * | |
| * Written by G. Vanem <[email protected]> 2014. | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # | |
| # GNU-makefile for Welle-IO (MSVC / clang-cl, 32-bit) | |
| # | |
| # By G. Vanem <[email protected]> 2017. | |
| # | |
| THIS_FILE := Makefile.MSVC | |
| DATE := $(shell date +%d-%B-%Y) | |
| # | |
| # What to build: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # | |
| # Ettercap NG Makefile for MinGW / cl / clang-cl. | |
| # by G. Vanem <[email protected]> 2011 - 2018. | |
| # | |
| THIS_FILE = Makefile.Windows | |
| # | |
| # Comment this away to NOT rebuild too many things when $(THIS_FILE) changes. | |
| # | |
| MDEPEND = $(THIS_FILE) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # | |
| # GNU makefile 4.x for pycurl (MSVC) | |
| # | |
| # By <[email protected]> 2013 - 2024. | |
| # | |
| THIS_FILE := $(firstword $(MAKEFILE_LIST)) | |
| DATE := $(shell date +%d-%B-%Y) | |
| YEAR := $(shell date +%Y) | |
| VERSION := 7.45.2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # | |
| # GNU Makefile for libusb (MinGW + MSVC + clang-cl). | |
| # | |
| # By G. Vanem <[email protected]> 2013. | |
| # | |
| DATE := $(shell date +%d-%B-%Y) | |
| VPATH = libusb libusb/os examples | |
| THIS_FILE = Makefile.Windows |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """A Python script to poll a list of AirSpy, Kiwi and SDR-Console (V3) servers. | |
| """ | |
| # | |
| # By G. Vanem <[email protected]> 2018 | |
| # | |
| # The Gist is here: | |
| # https://gist.github.com/gvanem/8a83e5f5dd487af4bf4e73c0f81c5393 | |
| # | |
| # todo: OpenWebRX and WebSockets like this: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff -Hb -u3 a/src/CRadioController.cpp src/CRadioController.cpp | |
| --- a/src/CRadioController.cpp 2018-01-25 17:15:49 | |
| +++ b/src/CRadioController.cpp 2018-01-28 11:08:21 | |
| @@ -185,6 +185,8 @@ | |
| QString dabDevice = "auto"; | |
| #endif | |
| + int instance = 0; | |
| + | |
| #ifdef HAVE_SOAPYSDR |