source: autogen.sh

Last change on this file was 48fa0ee, checked in by Ted Faber <faber@…>, 14 years ago

Fix a few configure bugs:

Find lib strongswan if it is in /usr/local/lib and give a user
override

Find the site_prel directory and give the user an override

Make the ABAC.py and ABAC.pm swig entries

Find python libraries correctly on FreeBSD
(m4/ac_python_devel.m4)

  • Property mode set to 100755
File size: 351 bytes
Line 
1#!/bin/sh
2
3LIBTOOLIZE=`which glibtoolize 2>/dev/null`
4case "$LIBTOOLIZE" in
5        /* )    ;;
6        *  )    LIBTOOLIZE=`which libtoolize 2>/dev/null`
7                case "$LIBTOOLIZE" in
8                        /* )    ;;
9                        *  )    LIBTOOLIZE=libtoolize
10                                ;;
11                esac
12                ;;
13esac
14
15# aclocal uses -I ./m4 to overlay our AC_PYTHON_DEVEL macro.
16$LIBTOOLIZE --force &&
17aclocal -I ./m4 &&
18automake -a &&
19autoconf
20
Note: See TracBrowser for help on using the repository browser.