diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2010-02-17 20:10:15 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2010-02-17 20:10:15 +0100 |
commit | f9011c1275b13f39e4ab4552173bfb91b2ffae56 (patch) | |
tree | 6a6cc8e0762a2da326e1657bda7308d6ffd3dc42 /scripts/autoconf | |
parent | dc06fc81176cf7bd6024e6bfc0666abdd0207fbf (diff) |
fix build on OpenBSD host
- add a wrapper script for autoconf and autoreconf to
avoid ifdef gluecode for every OS/autoconf combination
- need to add more autoconf version for NetBSD/MirBSD
Diffstat (limited to 'scripts/autoconf')
-rwxr-xr-x | scripts/autoconf | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/scripts/autoconf b/scripts/autoconf new file mode 100755 index 000000000..85f9bd0b4 --- /dev/null +++ b/scripts/autoconf @@ -0,0 +1,20 @@ +#!/usr/bin/env bash +# This file is part of the OpenADK project. OpenADK is copyrighted +# material, please see the LICENCE file in the top-level directory. + +ac262=$(which autoconf-2.62) +ac261=$(which autoconf-2.61) + +if [ ! -z "$ac262" -a -x "$ac262" ];then + if [ -x /usr/bin/autoconf ];then + AUTOCONF_VERSION=2.62 /usr/bin/autoconf "$@" + else + AUTOCONF_VERSION=2.62 /usr/local/bin/autoconf "$@" + fi +elif [ ! -z "$ac261" -a -x "$ac261" ];then + if [ -x /usr/bin/autoconf ];then + AUTOCONF_VERSION=2.61 /usr/bin/autoconf "$@" + else + AUTOCONF_VERSION=2.61 /usr/local/bin/autoconf "$@" + fi +fi |