aboutsummaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2008-09-08 06:32:16 +0000
committerChristian Grothoff <christian@grothoff.org>2008-09-08 06:32:16 +0000
commit4f5e8029080c325197950cbea29ac24fd074b90f (patch)
tree3a08db55b79a67e3dbbc94cb824cd75acc50b6a5 /contrib
parentdc29c2914479a8fa2f423c7abf81890c5685cb2c (diff)
downloadlibmicrohttpd-4f5e8029080c325197950cbea29ac24fd074b90f.tar.gz
libmicrohttpd-4f5e8029080c325197950cbea29ac24fd074b90f.zip
more code cleanup
Diffstat (limited to 'contrib')
-rw-r--r--contrib/Makefile.am1
-rw-r--r--contrib/ascebc11
-rw-r--r--contrib/xcc2
3 files changed, 14 insertions, 0 deletions
diff --git a/contrib/Makefile.am b/contrib/Makefile.am
new file mode 100644
index 00000000..0f4bd738
--- /dev/null
+++ b/contrib/Makefile.am
@@ -0,0 +1 @@
EXTRA_DIST = xcc ascebc \ No newline at end of file
diff --git a/contrib/ascebc b/contrib/ascebc
new file mode 100644
index 00000000..a8c3f143
--- /dev/null
+++ b/contrib/ascebc
@@ -0,0 +1,11 @@
1#!/bin/sh
2iconv -f UTF-8 -t IBM-1047 $1 > temp.file
3if test -x $1
4then
5 rm $1
6 mv temp.file $1
7 chmod +x $1
8else
9 rm $1
10 mv temp.file $1
11fi
diff --git a/contrib/xcc b/contrib/xcc
new file mode 100644
index 00000000..591bc564
--- /dev/null
+++ b/contrib/xcc
@@ -0,0 +1,2 @@
1#!/bin/sh
2c89 -Wc,'LANGLVL(EXTENDED),XPLINK' -Wl,'XPLINK' -D__STRING_CODE_SET__="ISO8859-1" -Wc,"ASCII" $@