Skip to content

Commit

Permalink
fix(r/adbcpostgresql): Link -lcrypt32 on Windows (apache#1471)
Browse files Browse the repository at this point in the history
As requested by Tomas:

```
Dear Dewey,

I am sorry to report that your package's Makevars.ucrt needs to be updated for an upcoming release of Rtools: one also has to link crypt32, please see the attached patch.

Please update so that your package will keep working in future versions of Rtools. This can be done unconditionally, because the library was available even before, just wasn't needed - so it should be fine to simply use the patch.
```
  • Loading branch information
paleolimbot authored and soumyadsanyal committed Jan 31, 2024
1 parent 5b378e0 commit 55e4b42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion r/adbcpostgresql/src/Makevars.ucrt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

PKG_CPPFLAGS = -I../src -DADBC_EXPORT="" -D__USE_MINGW_ANSI_STDIO

PKG_LIBS = -lpq -lpgcommon -lpgport -lssl -lcrypto -lz -lsecur32 -lws2_32 -lwldap32
PKG_LIBS = -lpq -lpgcommon -lpgport -lssl -lcrypto -lz -lsecur32 -lws2_32 -lwldap32 -lcrypt32

OBJECTS = init.o \
error.o \
Expand Down

0 comments on commit 55e4b42

Please sign in to comment.