~ubuntu-branches/ubuntu/precise/plib/precise

« back to all changes in this revision

Viewing changes to autogen.sh

  • Committer: Bazaar Package Importer
  • Author(s): Philipp Frauenfelder
  • Date: 2004-08-26 23:31:16 UTC
  • mfrom: (2.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20040826233116-vqusvk3ytn6lq3rl
Tags: 1.8.3-2
* Corrected C++ syntax in ssgAux/ssgaSky.h. Thanks to
  neuro.harald AT surfeu.at for the patch. Closes: #260355
* Build-Depends on libx11-dev, libxmu-dev instead of xlibs-dev
* Removed build depends on g++, libc6.
* Changed (build) depends on libgl-dev to xlibmesa-gl-dev | libgl-dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
OSTYPE=`uname -s`
 
4
 
 
5
AMFLAGS="--add-missing"
 
6
if test "$OSTYPE" = "IRIX" -o "$OSTYPE" = "IRIX64"; then
 
7
   AMFLAGS=$AMFLAGS" --include-deps";
 
8
fi
 
9
 
 
10
echo "Running aclocal"
 
11
aclocal
 
12
echo "Running automake"
 
13
automake $AMFLAGS
 
14
echo "Running autoconf"
 
15
autoconf
 
16
 
 
17
echo "======================================"
 
18
echo "Now you are ready to run './configure'"
 
19
echo "======================================"