]> Nishi Git Mirror - sp.git/commitdiff
macOS対応
author諏訪子 <suwako@076.moe>
Sun, 9 Jun 2024 11:07:14 +0000 (20:07 +0900)
committer諏訪子 <suwako@076.moe>
Sun, 9 Jun 2024 11:07:14 +0000 (20:07 +0900)
CHANGELOG.md
README.md
src/otppass.c

index 18d86f4278ea37db272e8d9600adac9310572759..68f4cb0855805da902f51047be9f206fe99fd418 100644 (file)
@@ -1,3 +1,6 @@
+# 1.4.0
+* macOS対応
+
 # 1.3.0
 * 英訳の追加 (レミリア・スカーレットさん)
 * GNU Make → BSD Make
index 30756d7fa37f364e0a28e0908c0318f38a0b421b..e5a5458af52b63d63f3c788cf14f9b8d56ba993d 100644 (file)
--- a/README.md
+++ b/README.md
@@ -27,6 +27,14 @@ doas make install
 doas make install-zsh
 ```
 
+### NetBSD
+```sh
+doas pkgin install gpgme gnupg pinentry
+make
+doas make install
+doas make install-zsh
+```
+
 ### FreeBSD
 ```sh
 doas pkg install gpgme gnupg pinentry
@@ -35,6 +43,14 @@ doas make install
 doas make install-zsh
 ```
 
+### macOS
+```sh
+brew install bmake libassuan gpgme gnupg pinentry pinentry-mac
+bmake
+doas bmake install
+doas bmake install-zsh
+```
+
 ## 初期設定 | Initial setup
 「gpg -k」でGPG鍵IDを確認して、「sp -i [GPG ID]」を実行して下さい。
 Confirm your GPG key ID with "gpg -k", and run "sp -i [GPG ID]".
index c74f13049a23194e245625669784dd2cc293e0ee..b4de1964c1715a8239e00d1e69de58add0f579a8 100644 (file)
@@ -1,6 +1,11 @@
 #include <openssl/hmac.h>
 #include <openssl/sha.h>
 
+#ifndef __APPLE
+#include <libkern/OSByteOrder.h>
+#define htobe64(x) OSSwapHostToBigInt64(x)
+#endif
+
 #include "base32.h"
 #include "common.h"
 #include "otppass.h"