aboutsummaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
Diffstat (limited to 'config')
-rwxr-xr-xconfig17
1 files changed, 17 insertions, 0 deletions
diff --git a/config b/config
new file mode 100755
index 0000000..3573df4
--- /dev/null
+++ b/config
@@ -0,0 +1,17 @@
1#!/bin/sh
2
3# This file exists for backwards-compatibility with build systems that expect a
4# config script similar to OpenSSL's.
5
6# New software should prefer the native configure script over this one.
7
8ARGS=""
9for var in "$@"; do
10 case $var in
11 no-shared ) ARGS="$ARGS --disable-shared";;
12 no-asm ) ARGS="$ARGS --disable-asm";;
13 --prefix* ) ARGS="$ARGS $var";;
14 esac
15done
16
17./configure $ARGS