Changeset 563

Show
Ignore:
Timestamp:
10/29/04 23:06:10 (4 years ago)
Author:
jajcus
Message:

- proper use of autopoint
- abort autogen.sh on any error

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/autogen.sh

    r562 r563  
    33( cd libxode ; ./autogen.sh ) || exit 1 
    44 
    5 libtoolize --force 
     5libtoolize --force || exit $? 
    66rm -f po/ChangeLog 
    7 autopoint --force 
     7autopoint --force || exit $? 
    88touch po/Makefile.in m4/Makefile 
    9 aclocal -I m4 
    10 autoheader 
    11 automake -a  
    12 autoconf 
     9aclocal -I m4 || exit $? 
     10autoheader || exit $? 
     11automake -a || exit $? 
     12autoconf || exit $? 
  • trunk/configure.ac

    r555 r563  
    44AC_CONFIG_SRCDIR([src/ggtrans.h]) 
    55AM_INIT_AUTOMAKE([jabber-gg-transport], [2.0.99]) 
     6AM_GNU_GETTEXT_VERSION([0.14.1]) 
    67AM_CONFIG_HEADER([config.h]) 
    78