Edit

kc3-lang/automake/configure.in

Branch :

  • Show log

    Commit

  • Author : Alexandre Oliva
    Date : 1999-06-08 18:22:39
    Hash : 24fdadd5
    Message : * configure.in (ACLOCAL, AUTOMAKE): Use our own scripts, with appropriate --acdir and --amdir arguments.

  • configure.in
  • dnl Process this file with autoconf to produce a configure script.
    AC_INIT(automake.in)
    
    AM_INIT_AUTOMAKE(automake, 1.4a)
    
    ACLOCAL="`pwd`/aclocal --acdir=\$(top_srcdir)/m4"
    AUTOMAKE="`pwd`/automake --amdir=\$(top_srcdir)"
    
    AC_PATH_PROG(PERL, perl)
    if test -z "$PERL"; then
       AC_MSG_ERROR([perl not found])
    fi
    if test -n "`$PERL -v | fgrep 'version 5.001' 2> /dev/null`"; then
       AC_MSG_ERROR([perl 5.001 has bug which causes automake to fail])
    fi
    
    AC_OUTPUT([Makefile automake aclocal m4/Makefile tests/Makefile],
    [chmod +x automake aclocal])