Edit

kc3-lang/libevent/autogen.sh

Branch :

  • Show log

    Commit

  • Author : Nick Mathewson
    Date : 2010-06-17 10:33:06
    Hash : 8a440623
    Message : Have autogen.sh pass --force-missing to automake Previously, our autogen.sh script wouldn't tell automake to update older versions of its copied-in scripts, which would cause problems if they got sufficiently out-of-date.

  • autogen.sh
  • #!/bin/sh
    LIBTOOLIZE=libtoolize
    SYSNAME=`uname`
    if [ "x$SYSNAME" = "xDarwin" ] ; then
      LIBTOOLIZE=glibtoolize
    fi
    aclocal -I m4 && \
    	autoheader && \
    	$LIBTOOLIZE && \
    	autoconf && \
    	automake --add-missing --force-missing --copy