diff options
Diffstat (limited to 'config')
-rwxr-xr-x | config | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -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 | |||
8 | ARGS="" | ||
9 | for 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 | ||
15 | done | ||
16 | |||
17 | ./configure $ARGS | ||