forked from pool/bitwarden
381d9976c3
* Deprecated setting for approving logins. Desktop now receives login requests by default. - Drop no longer needed argon2-binary-path.patch OBS-URL: https://build.opensuse.org/package/show/devel:languages:nodejs/bitwarden?expand=0&rev=61
66 lines
2.2 KiB
Diff
66 lines
2.2 KiB
Diff
--- clients/node_modules/argon2/binding.gyp.orig 2024-07-15 19:27:24.157408387 +0200
|
|
+++ clients/node_modules/argon2/binding.gyp 2024-07-15 19:40:42.806528404 +0200
|
|
@@ -20,7 +20,7 @@
|
|
"Release": {
|
|
"target_conditions": [
|
|
["OS != 'win'", {
|
|
- "cflags+": ["-fdata-sections", "-ffunction-sections", "-flto", "-fvisibility=hidden"],
|
|
+ "cflags+": ["-fvisibility=hidden"],
|
|
"ldflags+": ["-Wl,--gc-sections"]
|
|
}]
|
|
],
|
|
@@ -29,26 +29,7 @@
|
|
}
|
|
},
|
|
"targets": [
|
|
- {
|
|
- "target_name": "libargon2",
|
|
- "sources": [
|
|
- "argon2/src/argon2.c",
|
|
- "argon2/src/blake2/blake2b.c",
|
|
- "argon2/src/core.c",
|
|
- "argon2/src/encoding.c",
|
|
- "argon2/src/thread.c"
|
|
- ],
|
|
- "cflags+": ["-Wno-type-limits"],
|
|
- "conditions": [
|
|
- ["target_arch == 'ia32' or target_arch == 'x64'", {
|
|
- "cflags+": ["-msse", "-msse2"],
|
|
- "sources+": ["argon2/src/opt.c"]
|
|
- }, {
|
|
- "sources+": ["argon2/src/ref.c"]
|
|
- }]
|
|
- ],
|
|
- "type": "static_library"
|
|
- }, {
|
|
+{
|
|
"target_name": "argon2",
|
|
"defines+": [
|
|
"NAPI_VERSION=<(napi_build_version)",
|
|
@@ -58,10 +39,15 @@
|
|
"sources": [
|
|
"argon2_node.cpp"
|
|
],
|
|
- "cflags_cc+": ["-Wall", "-Wextra", "-Wconversion", "-Wformat", "-Wnon-virtual-dtor", "-pedantic", "-Werror"],
|
|
+ "cflags_cc+": ["-Wall", "-Wextra", "-Wconversion", "-Wformat", "-Wnon-virtual-dtor", "-pedantic"],
|
|
"cflags_cc!": ["-fno-exceptions"],
|
|
"include_dirs": ["<!(node -p \"require('node-addon-api').include_dir\")"],
|
|
- "dependencies": ["libargon2"],
|
|
+ "cflags": [
|
|
+ "<!@(pkg-config libargon2 --cflags)",
|
|
+ ],
|
|
+ "libraries": [
|
|
+ "<!@(pkg-config libargon2 --libs)",
|
|
+ ],
|
|
"configurations": {
|
|
"Debug": {
|
|
"conditions": [
|
|
--- clients/node_modules/argon2/argon2_node.cpp.orig 2024-07-15 19:27:24.130728388 +0200
|
|
+++ clients/node_modules/argon2/argon2_node.cpp 2024-07-15 19:42:24.944237666 +0200
|
|
@@ -1,4 +1,4 @@
|
|
-#include "argon2/include/argon2.h"
|
|
+#include <argon2.h>
|
|
#include <cassert>
|
|
#include <cstdint>
|
|
#include <napi.h>
|