summaryrefslogtreecommitdiff
path: root/ruby_1_8_5/ext/digest/test.sh
diff options
context:
space:
mode:
Diffstat (limited to 'ruby_1_8_5/ext/digest/test.sh')
-rw-r--r--ruby_1_8_5/ext/digest/test.sh33
1 files changed, 33 insertions, 0 deletions
diff --git a/ruby_1_8_5/ext/digest/test.sh b/ruby_1_8_5/ext/digest/test.sh
new file mode 100644
index 0000000000..2ae2688e4d
--- /dev/null
+++ b/ruby_1_8_5/ext/digest/test.sh
@@ -0,0 +1,33 @@
+#!/bin/sh
+#
+# $RoughId: test.sh,v 1.5 2001/07/13 15:38:27 knu Exp $
+# $Id: test.sh,v 1.2 2002/09/26 17:55:16 knu Exp $
+
+RUBY=${RUBY:=ruby}
+MAKE=${MAKE:=make}
+CFLAGS=${CFLAGS:=-Wall}
+
+${RUBY} extconf.rb --with-cflags="${CFLAGS}"
+${MAKE} clean
+${MAKE}
+
+mkdir -p lib/digest
+
+for algo in md5 rmd160 sha1 sha2; do
+ args=--with-cflags="${CFLAGS}"
+
+ if [ $WITH_BUNDLED_ENGINES ]; then
+ args="$args --with-bundled-$algo"
+ fi
+
+ (cd $algo &&
+ ${RUBY} extconf.rb $args;
+ ${MAKE} clean;
+ ${MAKE})
+ ln -sf ../../$algo/$algo.so lib/digest/
+done
+
+${RUBY} -I. -I./lib test.rb
+
+rm lib/digest/*.so
+rmdir lib/digest