-
Notifications
You must be signed in to change notification settings - Fork 3
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
f21ac2e
commit 3fac774
Showing
3 changed files
with
17 additions
and
34 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
Copyright (C) 2008--2016 Francis Tyers <[email protected]> | ||
Copyright (C) 2009--2017 Kevin Brubeck Unhammer <[email protected]> | ||
Copyright (C) 2008--2017 Trond Trosterud <[email protected]> | ||
Copyright (C) 2016--2017 Lene Antonsen <[email protected]> | ||
2009-2019, Kevin Brubeck Unhammer <[email protected]> | ||
2019, Anja Zawadzka Persvold <[email protected]> | ||
2014-2019, Lene Antonsen <[email protected]> | ||
2008-2019, Trond Trosterud <[email protected]> | ||
2008-2017, Francis M. Tyers <[email protected]> | ||
2017, Marina Kustova <[email protected]> | ||
2016, Kartik Mistry <[email protected]> |
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,32 +1,12 @@ | ||
# -*- Autoconf -*- | ||
# Process this file with autoconf to produce a configure script. | ||
|
||
|
||
AC_PREREQ(2.52) | ||
|
||
m4_define([required_apertium_version], [3.4.0]) | ||
m4_define([required_lttoolbox_version], [3.3.2]) | ||
|
||
AC_INIT([Apertium Norwegian Bokmål], [1.1.0], [[email protected]], [apertium-nob], [http://wiki.apertium.org/wiki/Apertium-nob]) | ||
AC_INIT([Apertium Norwegian Bokmål], [1.1.0], [[email protected]], [apertium-nob], [http://wiki.apertium.org/wiki/Apertium-nob]) | ||
AM_INIT_AUTOMAKE | ||
|
||
AC_PROG_LN_S | ||
AC_PROG_AWK | ||
|
||
PKG_CHECK_MODULES(APERTIUM, apertium >= required_apertium_version) | ||
PKG_CHECK_MODULES(LTTOOLBOX, lttoolbox >= required_lttoolbox_version) | ||
|
||
AC_PATH_PROG([LTPRINT], [lt-print], [false], [$PATH$PATH_SEPARATOR$with_lt_print/bin]) | ||
AS_IF([test x$LTPRINT = xfalse], [AC_MSG_ERROR([You don't have lt-print installed])]) | ||
|
||
AC_PATH_PROG([CGCOMP], [cg-comp], [false], [$PATH$PATH_SEPARATOR$with_cg_comp/bin]) | ||
AS_IF([test x$CGCOMP = xfalse], [AC_MSG_ERROR([You don't have cg-comp installed])]) | ||
|
||
AC_PATH_PROG([CGPROC], [cg-proc], [false], [$PATH$PATH_SEPARATOR$with_cg_proc/bin]) | ||
AS_IF([test x$CGPROC = xfalse], [AC_MSG_ERROR([You don't have cg-proc installed])]) | ||
|
||
AC_PATH_PROG([PKGCONFIG], [pkg-config], [false], [$PATH$PATH_SEPARATOR$with_pkg_config/bin]) | ||
AS_IF([test x$PKGCONFIG = xfalse], [AC_MSG_ERROR([You don't have pkg-config installed])]) | ||
PKG_CHECK_MODULES(APERTIUM, apertium >= 3.6.0) | ||
PKG_CHECK_MODULES(LTTOOLBOX, lttoolbox >= 3.5.0) | ||
PKG_CHECK_MODULES(CG3, cg3 >= 1.3.0) | ||
|
||
AP_MKINCLUDE | ||
|
||
|