Changeset d27e9e802c904c8eba80437b76f98b4b1da73877
- Timestamp:
- 04/22/08 00:56:08 (4 years ago)
- Author:
- Lincoln de Sousa <lincoln@…>
- Children:
- 50183758a59a59a19aa78d60798db2460bde39ed
- Parents:
- 512b8d8057e540dc629241a60041a72eabb14354
- git-committer:
- Lincoln de Sousa <lincoln@…> (04/22/08 00:56:08)
- Message:
-
Things added by autotools
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
r512b8d8
|
rd27e9e8
|
|
| 87 | 87 | AC_SUBST(INTLTOOL_SERVICE_RULE) |
| 88 | 88 | AC_SUBST(INTLTOOL_POLICY_RULE) |
| | 89 | |
| | 90 | # Check the gettext tools to make sure they are GNU |
| | 91 | AC_PATH_PROG(XGETTEXT, xgettext) |
| | 92 | AC_PATH_PROG(MSGMERGE, msgmerge) |
| | 93 | AC_PATH_PROG(MSGFMT, msgfmt) |
| | 94 | if test -z "$XGETTEXT" -o -z "$MSGMERGE" -o -z "$MSGFMT"; then |
| | 95 | AC_MSG_ERROR([GNU gettext tools not found; required for intltool]) |
| | 96 | fi |
| | 97 | xgversion="`$XGETTEXT --version|grep '(GNU ' 2> /dev/null`" |
| | 98 | mmversion="`$MSGMERGE --version|grep '(GNU ' 2> /dev/null`" |
| | 99 | mfversion="`$MSGFMT --version|grep '(GNU ' 2> /dev/null`" |
| | 100 | if test -z "$xgversion" -o -z "$mmversion" -o -z "$mfversion"; then |
| | 101 | AC_MSG_ERROR([GNU gettext tools not found; required for intltool]) |
| | 102 | fi |
| 89 | 103 | |
| 90 | 104 | # Use the tools built into the package, not the ones that are installed. |