| 15373:8483019d6961 | 15374:fdd2f9738096 |
|---|---|
| 1 #!/bin/sh | 1 #!/bin/sh |
| 2 | |
| 3 CONFIGURE_ARGS="" | |
| 4 if [ -f configure.args ] ; then | |
| 5 CONFIGURE_ARGS="${CONFIGURE_ARGS} `cat configure.args`" | |
| 6 fi | |
| 2 | 7 |
| 3 (glib-gettextize --version) < /dev/null > /dev/null 2>&1 || { | 8 (glib-gettextize --version) < /dev/null > /dev/null 2>&1 || { |
| 4 echo; | 9 echo; |
| 5 echo "You must have glib-gettextize installed to compile Gaim."; | 10 echo "You must have glib-gettextize installed to compile Gaim."; |
| 6 echo; | 11 echo; |
| 58 aclocal $ACLOCAL_FLAGS || exit; | 63 aclocal $ACLOCAL_FLAGS || exit; |
| 59 autoheader || exit; | 64 autoheader || exit; |
| 60 automake --add-missing --copy; | 65 automake --add-missing --copy; |
| 61 autoconf || exit; | 66 autoconf || exit; |
| 62 automake || exit; | 67 automake || exit; |
| 63 ./configure $@ | |
| 64 | 68 |
| 69 echo; | |
| 70 echo "Running ./configure ${CONFIGURE_ARGS} $@" | |
| 71 echo; | |
| 72 ./configure ${CONFIGURE_ARGS} $@ | |
| 73 |