[xiph-cvs] cvs commit: vorbis-tools autogen.sh
Ralph Giles
giles at xiph.org
Sun Jun 30 01:22:54 PDT 2002
giles 02/06/30 01:22:54
Modified: . autogen.sh
Log:
Check for gettext in autogen.sh to work around bugs in the AM_*_GETTEXT macros.
Also check for aclocal, just in case.
Check for libtool as 'libtoolize' not 'libtool'.
Revision Changes Path
1.5 +18 -1 vorbis-tools/autogen.sh
Index: autogen.sh
===================================================================
RCS file: /usr/local/cvsroot/vorbis-tools/autogen.sh,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- autogen.sh 2002/06/27 06:08:17 1.4
+++ autogen.sh 2002/06/30 08:22:53 1.5
@@ -27,12 +27,29 @@
DIE=1
}
-(libtool --version) < /dev/null > /dev/null 2>&1 || {
+(aclocal --version) < /dev/null > /dev/null 2>&1 || {
echo
+ echo "The aclocal tool was not found. You probably"
+ echo "need to update your automake package to at least"
+ echo "version 1.3."
+ echo
+}
+
+(libtoolize --version) < /dev/null > /dev/null 2>&1 || {
+ echo
echo "You must have libtool installed to compile $package."
echo "Download the appropriate package for your system,"
echo "or get the source from one of the GNU ftp sites"
echo "listed in http://www.gnu.org/order/ftp.html"
+ DIE=1
+}
+
+(gettext --version) < /dev/null > /dev/null 2>&1 || {
+ echo
+ echo "You must have gettext installed to compile $package."
+ echo "Install the appropriate package for your system"
+ echo "or get the source from one of the GNU ftp sites"
+ echo "e.g. ftp://ftp.gnu.org/pub/gnu/gettext/"
DIE=1
}
<p><p><p>--- >8 ----
List archives: http://www.xiph.org/archives/
Ogg project homepage: http://www.xiph.org/ogg/
To unsubscribe from this list, send a message to 'cvs-request at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
More information about the commits
mailing list