fnet.c

Simple C networking library
git clone git://git.finwo.net/lib/fnet.c
Log | Files | Refs | README

commit 14541c2029350465b2ba71e1457945fbde912c91
parent 4b650960e512acd5bce4eff371eefe3f25e8f1b1
Author: Yersa Nordman <yersa@finwo.nl>
Date:   Mon, 23 Oct 2023 21:51:17 +0200

Remove Vanara/PInvoke again

Diffstat:
M.github/workflows/build.yml | 14+++++++-------
MMakefile | 2+-
2 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml @@ -20,13 +20,13 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Install dependencies (windows) - run: | - mkdir external - mkdir external\\tools - mkdir external\\libs - curl -sSLo "external\\tools\\nuget.exe" https://dist.nuget.org/win-x86-commandline/latest/nuget.exe - external\\tools\\nuget install Vanara.PInvoke.Ws2_32 -Verbosity quiet -Version "3.4.17" -OutputDirectory "external\\libs" || exit /b 1 + # - name: Install dependencies (windows) + # run: | + # mkdir external + # mkdir external\\tools + # mkdir external\\libs + # curl -sSLo "external\\tools\\nuget.exe" https://dist.nuget.org/win-x86-commandline/latest/nuget.exe + # external\\tools\\nuget install Vanara.PInvoke.Ws2_32 -Verbosity quiet -Version "3.4.17" -OutputDirectory "external\\libs" || exit /b 1 - shell: bash run: | diff --git a/Makefile b/Makefile @@ -14,7 +14,7 @@ INCLUDES+=-I src ifeq ($(OS),Windows_NT) # CFLAGS += -D WIN32 - override CFLAGS+=-I external/libs/Vanara.PInvoke.Ws2_32.3.4.17/build/native/include + # override CFLAGS+=-I external/libs/Vanara.PInvoke.Ws2_32.3.4.17/build/native/include ifeq ($(PROCESSOR_ARCHITEW6432),AMD64) # CFLAGS += -D AMD64 else