Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit6e5f0ab

Browse files
committed
Merge pull requestfsharp#21 from knocte/proper-mono-dep-check
configure.ac: require Mono 2.9
2 parentscf9ea62 +6f754c6 commit6e5f0ab

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

‎README‎

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@ F# original powerpack sources are available from http://fsharppowerpack.codeplex
1313

1414
======= REQUIREMENTS =======
1515

16-
Requires mono trunk, after September 23 - this is due to missing IStructuralComparable.CompareTo
17-
implementations, which F# requires and which were commited on 2010-09-23 on commit a57254256
16+
Requires mono 2.9 or higher.
1817

1918
Requires bootstrapping libraries, tools and f# compiler. The lib/bootstrap/X.0 directories contain
2019
mono-built libraries, compiler and tools that can be used to bootstrap a build. You can also supply

‎configure.ac‎

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ AC_INIT([fsharp], [0.1], [avidigal@novell.com])
77
# Checks for programs.
88
AC_PROG_MAKE_SET
99

10+
AC_PATH_PROG(PKG_CONFIG,pkg-config,no)
11+
if test "x$PKG_CONFIG" = "xno"; then
12+
AC_MSG_ERROR([You need to install pkg-config])
13+
fi
14+
15+
PKG_CHECK_MODULES([MONO],[mono >= 2.9])
16+
17+
1018
# Checks for libraries.
1119

1220
# Checks for header files.

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp