harfbuzz: Update from 1.0.6 to 1.1.2
[termux-packages] / packages / picolisp / src-ext.c.patch
CommitLineData
72dd9a3b
FF
1The crypt(3) function is not available in Android, so remove support
2in ext for now.
3
4diff -u -r ../picoLisp/src/ext.c ./src/ext.c
5--- ../picoLisp/src/ext.c 2015-04-27 00:34:17.000000000 -0400
6+++ ./src/ext.c 2015-11-27 06:07:18.767005597 -0500
7@@ -252,6 +252,7 @@
8
9 /*** Password hashing ***/
10 // (Ext:Crypt 'key 'salt) -> str
11+#ifndef __ANDROID__
12 any Crypt(any x) {
13 any y;
14
15@@ -269,3 +270,4 @@
16 }
17 }
18 }
19+#endif