summaryrefslogtreecommitdiffstats
path: root/macosx/aclocal.m4
blob: 2269b61724985d4b604512a44b260407ead881f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#
# Include the TEA standard macro set
#

builtin(include,tclconfig/tcl.m4)

#
# Add here whatever m4 macros you want to define for your package
#

AC_DEFUN(SAO_CONFIG_DIR, [
    sao_config_dir="$1"
    sao_config_arguments="$2"

    sao_popdir=`pwd`
    cd $sao_config_dir

    echo ""
    echo "*** Configure $1 ***"
    echo "running ${CONFIG_SHELL-/bin/sh} ./configure $sao_sub_configure_args $sao_config_arguments"
    ${CONFIG_SHELL-/bin/sh} ./configure $sao_sub_configure_args $sao_config_arguments
    cd $sao_popdir
])