mirror of
https://git.freebsd.org/ports.git
synced 2025-06-12 16:20:33 -04:00
Add a patch from upstream to fix the build with -fno-common, which is the default with llvm 11. MFH: 2020Q3
15 lines
377 B
C
15 lines
377 B
C
diff --git a/ykpers-args.h b/ykpers-args.h
|
|
index 2a63268..9ff455a 100644
|
|
--- ykpers-args.h
|
|
+++ ykpers-args.h
|
|
@@ -33,8 +33,8 @@
|
|
|
|
#include "ykpers.h"
|
|
|
|
-const char *usage;
|
|
-const char *optstring;
|
|
+extern const char *usage;
|
|
+extern const char *optstring;
|
|
|
|
int args_to_config(int argc, char **argv, YKP_CONFIG *cfg, char *oathid,
|
|
size_t oathid_len, const char **infname,
|