-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cfc5995
commit 100e1a8
Showing
2 changed files
with
10 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,13 @@ | ||
# -*- Autoconf -*- | ||
# Process this file with autoconf to produce a configure script. | ||
|
||
|
||
AC_PREREQ(2.52) | ||
|
||
AC_INIT([apertium-fr-es], [0.9.2], [sortiz@users.sourceforge.net]) | ||
AM_INIT_AUTOMAKE([apertium-fr-es], [0.9.2], no-define) | ||
AC_PROG_LN_S | ||
AC_INIT([Apertium French-Spanish], [0.9.3], [apertium-stuff@lists.sourceforge.net], [apertium-fr-es]) | ||
AM_INIT_AUTOMAKE | ||
AC_PROG_AWK | ||
AC_CONFIG_HEADER([config]) | ||
|
||
m4_define([required_apertium_version], [3.2.0]) | ||
PKG_CHECK_MODULES(APERTIUM, apertium >= required_apertium_version, [], [PKG_CHECK_MODULES(APERTIUM, apertium-3.2 >= required_apertium_version)]) | ||
|
||
|
||
AC_PATH_PROG(LRXCOMP, lrx-comp, no) | ||
if test x$ac_cv_path_LRXCOMP = x | ||
then | ||
AC_MSG_ERROR([You don't have lrx-comp installed.]) | ||
fi | ||
if test x$ac_cv_path_LRXCOMP = xno | ||
then | ||
AC_MSG_ERROR([You don't have lrx-comp installed.]) | ||
fi | ||
|
||
AC_PATH_PROG(LRXPROC, lrx-proc, no) | ||
if test x$ac_cv_path_LRXPROC = x | ||
then | ||
AC_MSG_ERROR([You don't have lrx-proc installed.]) | ||
fi | ||
if test x$ac_cv_path_LRXPROC = xno | ||
then | ||
AC_MSG_ERROR([You don't have lrx-proc installed.]) | ||
fi | ||
|
||
PKG_CHECK_MODULES(APERTIUM, apertium >= 3.7.0) | ||
PKG_CHECK_MODULES(LTTOOLBOX, lttoolbox >= 3.5.3) | ||
PKG_CHECK_MODULES(APERTIUM_LEX_TOOLS, apertium-lex-tools >= 0.2.6) | ||
|
||
AP_MKINCLUDE | ||
|
||
AC_OUTPUT([Makefile]) |