~ubuntu-branches/ubuntu/vivid/gnome-do/vivid

« back to all changes in this revision

Viewing changes to m4/shamrock/mono.m4

  • Committer: Package Import Robot
  • Author(s): Christopher James Halse Rogers
  • Date: 2012-03-26 11:12:21 UTC
  • mfrom: (0.1.12 sid)
  • Revision ID: package-import@ubuntu.com-20120326111221-1jk143fy37zxi3e4
Tags: 0.9-1
* New upstream version no longer uses deprecated internal glib headers.
  (Closes: #665537)
* [59fa37b9] Fix watch file
* [63486516] Imported Upstream version 0.9
* [8c636d84] Disable testsuite for now; requires running dbus and gconf daemons
* [e46de4b9] Remove inaccurate README.Source
* [4591d677] Add git-buildpackage configuration to default to pristine-tar

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
AC_DEFUN([SHAMROCK_FIND_C_SHARP_3_0_COMPILER],
12
12
[       
13
13
        AC_REQUIRE([SHAMROCK_FIND_MONO_RUNTIME])
14
 
        SHAMROCK_FIND_PROGRAM_OR_BAIL(MCS, gmcs)
 
14
        AC_PATH_PROG(DMCS, dmcs, no)
 
15
        if test "x$DMCS" = "xno"; then
 
16
                AC_PATH_PROG(GMCS, gmcs, no)
 
17
                if test "x$GMCS" = "xno"; then
 
18
                        AC_MSG_ERROR([You need to install a C♯ compiler.'])
 
19
                else
 
20
                        MCS=$GMCS
 
21
                fi
 
22
        else
 
23
                MCS=$DMCS
 
24
        fi
 
25
        AC_SUBST(MCS)
15
26
        changequote(<<, >>)
16
27
        MCS_VERSION=$($MCS --version | egrep -o "([[:digit:]]\.)+[[:digit:]]+")
17
28
        changequote([, ])