commit | 748945ec6f1c67b7efc934ab0808e1d32f2fb98d | [log] [tgz] |
---|---|---|
author | Daniel Erat <derat@chromium.org> | Tue Aug 11 09:22:30 2015 -0600 |
committer | Daniel Erat <derat@google.com> | Tue Aug 11 17:09:39 2015 -0600 |
tree | f7c2ce6607080d78dd21ed07f4e48096835ae76e | |
parent | 261e781d760abc1571f07a6543362b719e9f215d [diff] [blame] |
Add stock 0.9.42 source. This is from http://www.gnu.org/software/libmicrohttpd/ (and was verified to match the source from a local mirror). Bug: 23101922 Change-Id: I7efc9d5065b49b8957ce41bb6afd2ce1f39c7cac
diff --git a/contrib/ascebc b/contrib/ascebc new file mode 100644 index 0000000..a8c3f14 --- /dev/null +++ b/contrib/ascebc
@@ -0,0 +1,11 @@ +#!/bin/sh +iconv -f UTF-8 -t IBM-1047 $1 > temp.file +if test -x $1 +then + rm $1 + mv temp.file $1 + chmod +x $1 +else + rm $1 + mv temp.file $1 +fi