From 435842e4941554718c2107d60ac8ccafefef1490 Mon Sep 17 00:00:00 2001 From: Jasper Date: Fri, 24 Mar 2006 14:30:36 +0000 Subject: [PATCH] get autogen.sh to detect the autotools correctly on FreeBSD. From: "Petr Holub" git-svn-id: https://conky.svn.sourceforge.net/svnroot/conky/trunk/conky1@608 7f574dfc-610e-0410-a909-a81674777703 --- autogen.sh | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/autogen.sh b/autogen.sh index 78e42b4..18808bb 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,8 +1,16 @@ #!/bin/sh # $Id$ -aclocal-1.9 -libtoolize --force -autoheader-2.59 -automake-1.9 -a -autoconf-2.59 +if [ `uname -s` = FreeBSD ]; then + aclocal19 + libtoolize15 --force + autoheader259 + automake19 -a + autoconf259 +else + aclocal-1.9 + libtoolize --force + autoheader-2.59 + automake-1.9 -a + autoconf-2.59 +fi -- 1.7.9.5