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

Commit6f754c6

Browse files
committed
configure.ac: require Mono 2.9
The README file was still kind of confusing in the Requirements section,because:a) It stated "mono trunk" instead of "mono master", as svn->git migrationhappened already a while ago.b) It mentioned a specific commit in mono instead of simply the lowestMono version that included this commit.Looking at the commit, that fixes bug BNC#641146, it is dated onSeptember 2010 and went to the master branch:https://bugzilla.novell.com/show_bug.cgi?id=641146On August 2012, master branch gets labeled from "2.8.1" to "2.9":http://lists.ximian.com/mailman/private/mono-patches/2010-October/178421.htmlSo we can safely assume that any Mono version equal or higher thanMono 2.9 contains this fix. (The fix was backported too to the 2-8branch but I still don't know which of the 2.8.x series included it;at least I know it is not 2.8.1 as that is the version that thereporter of the bug had.)
1 parentcf9ea62 commit6f754c6

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