/[svn]/gigedit/branches/release0_2_0/autogen.sh
ViewVC logotype

Contents of /gigedit/branches/release0_2_0/autogen.sh

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1072 - (show annotations) (download) (as text)
Mon Mar 5 20:01:15 2007 UTC (17 years, 1 month ago) by persson
Original Path: gigedit/trunk/autogen.sh
File MIME type: application/x-sh
File size: 685 byte(s)
- more gettext experiments: intltool is back in autogen.sh because it
  has a nicer po/Makefile.in.in. IT_PO_SUBDIR is used instead of
  IT_PROG_INTLTOOL so intltool isn't required by configure.

1 #!/bin/sh
2
3 if ! which intltoolize > /dev/null ; then
4 echo "Could not find intltoolize, make sure intltool is installed!"
5 exit -1
6 fi
7 if ! which aclocal > /dev/null ; then
8 echo "Could not find aclocal, make sure automake is installed!"
9 exit -1
10 fi
11 if ! which autoconf > /dev/null ; then
12 echo "Could not find autoconf, make sure it is installed!"
13 exit -1
14 fi
15 if ! which autoheader > /dev/null ; then
16 echo "Could not find autoheader, make sure autoconf is installed!"
17 exit -1
18 fi
19 if ! which automake > /dev/null ; then
20 echo "Could not find automake, make sure it is installed!"
21 exit -1
22 fi
23
24 intltoolize --force --automake
25 aclocal
26 autoconf
27 autoheader
28 automake --add-missing

Properties

Name Value
svn:executable *

  ViewVC Help
Powered by ViewVC