/[svn]/gigedit/trunk/autogen.sh
ViewVC logotype

Diff of /gigedit/trunk/autogen.sh

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1065 by persson, Sat Mar 3 12:20:01 2007 UTC revision 1066 by schoenebeck, Sun Mar 4 14:49:30 2007 UTC
# Line 1  Line 1 
1    #!/bin/sh
2    
3    if ! which glib-gettextize > /dev/null ; then
4      echo "Could not find glib-gettextize, make sure libglib2.0(-dev) is installed!"
5      exit -1
6    fi
7    if ! which intltoolize > /dev/null ; then
8      echo "Could not find intltoolize, make sure intltool is installed!"
9      exit -1
10    fi
11    if ! which aclocal > /dev/null ; then
12      echo "Could not find aclocal, make sure automake is installed!"
13      exit -1
14    fi
15    if ! which autoconf > /dev/null ; then
16      echo "Could not find autoconf, make sure it is installed!"
17      exit -1
18    fi
19    if ! which autoheader > /dev/null ; then
20      echo "Could not find autoheader, make sure autoconf is installed!"
21      exit -1
22    fi
23    if ! which automake > /dev/null ; then
24      echo "Could not find automake, make sure it is installed!"
25      exit -1
26    fi
27    
28  glib-gettextize --force  glib-gettextize --force
29  intltoolize --force --automake  intltoolize --force --automake
30  aclocal  aclocal

Legend:
Removed from v.1065  
changed lines
  Added in v.1066

  ViewVC Help
Powered by ViewVC