Skip to content
This repository was archived by the owner on Dec 12, 2021. It is now read-only.

Commit 5ecafcd

Browse files
committed
Use specific ref for bcrypt C lib
1 parent dbb9623 commit 5ecafcd

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Makefile

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ PIL_SYMLINK_DIR ?= .lib
66
## Edit below
77
BUILD_REPO = https://github.com/rg3/bcrypt.git
88
BUILD_DIR = $(PIL_MODULE_DIR)/bcrypt/HEAD
9+
BUILD_REF = 8ab7fae5c1
910
TARGET = libbcrypt.so
1011
FILES = bcrypt.c crypt_blowfish/crypt_blowfish.c crypt_blowfish/crypt_gensalt.c crypt_blowfish/wrapper.c
1112
INCLUDES = -I. -Icrypt_blowfish/
@@ -37,6 +38,7 @@ $(TEST_DIR):
3738

3839
$(BUILD_DIR)/$(TARGET):
3940
cd $(BUILD_DIR) && \
41+
git checkout $(BUILD_REF) && \
4042
$(COMPILE) $(SHARED) -o $(TARGET) $(FILES) && \
4143
strip --strip-unneeded $(TARGET)
4244

module.l

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88
("copyright" "(c) 2015 Alexander Williams, Unscramble <license@unscramble.jp>")
99
("install" "make")
1010
("requires"
11-
("bcrypt" "master" "https://github.com/rg3/bcrypt.git")
11+
("bcrypt" "8ab7fae5c1" "https://github.com/rg3/bcrypt.git")
1212
("picolisp-unit" "v0.6.1" "https://github.com/aw/picolisp-unit.git") ]

0 commit comments

Comments
 (0)