Home | History | Annotate | Download | only in libevent
      1 #!/bin/sh
      2 LIBTOOLIZE=libtoolize
      3 SYSNAME=`uname`
      4 if [ "x$SYSNAME" = "xDarwin" ] ; then
      5   LIBTOOLIZE=glibtoolize
      6 fi
      7 aclocal && \
      8 	autoheader && \
      9 	$LIBTOOLIZE && \
     10 	autoconf && \
     11 	automake --add-missing --copy
     12