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