Show
Ignore:
Timestamp:
12/12/07 09:44:46 (12 months ago)
Author:
asterix
Message:

merge diff from trunk

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/pep/autogen.sh

    r7248 r9123  
    11#!/usr/bin/env bash 
     2  AM_ARGS="--add-missing --gnu --copy" 
     3  CONF_ARGS="" 
     4  if test x`uname -s 2>/dev/null` = 'xDarwin';then 
     5    . /Library/Frameworks/GTK+.framework/Versions/Current/env 
     6    AM_ARGS="${AM_ARGS} --ignore-deps" 
     7    CONF_ARGS="${CONF_ARGS} --disable-idle --without-x" 
     8  fi 
     9 
    210  echo "[encoding: UTF-8]" > po/POTFILES.in \ 
    311  && ls -1 -U data/gajim.desktop.in.in data/glade/*.glade \ 
     
    917        exit 1 
    1018  fi 
    11   set -x 
     19 
    1220  intltoolize --force --automake \ 
    1321  && aclocal -I ./m4 \ 
     
    1523  && autoheader \ 
    1624  && autoconf  \ 
    17   && automake --add-missing --gnu --copy \ 
    18   && ./configure $@ 
     25  && automake ${AM_ARGS} \ 
     26  && ./configure ${CONF_ARGS} $@