diff options
author | Tor Lillqvist <tml@novell.com> | 2009-02-04 04:30:24 +0800 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 2009-02-04 04:30:24 +0800 |
commit | 3c7a189d6332f2845fdb854404569ace0a275f73 (patch) | |
tree | a496b93737d2c1c6dd8947f7e50716c2da01b633 | |
parent | 9027ee0cf2cbacf7f0245e417a7d02571b4ec5dc (diff) | |
download | gsoc2013-evolution-3c7a189d6332f2845fdb854404569ace0a275f73.tar gsoc2013-evolution-3c7a189d6332f2845fdb854404569ace0a275f73.tar.gz gsoc2013-evolution-3c7a189d6332f2845fdb854404569ace0a275f73.tar.bz2 gsoc2013-evolution-3c7a189d6332f2845fdb854404569ace0a275f73.tar.lz gsoc2013-evolution-3c7a189d6332f2845fdb854404569ace0a275f73.tar.xz gsoc2013-evolution-3c7a189d6332f2845fdb854404569ace0a275f73.tar.zst gsoc2013-evolution-3c7a189d6332f2845fdb854404569ace0a275f73.zip |
Set MWINDOWS to -mwindows on Windows. AC_SUBST it.
2009-02-03 Tor Lillqvist <tml@novell.com>
* configure.in: Set MWINDOWS to -mwindows on Windows. AC_SUBST it.
svn path=/trunk/; revision=37221
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | configure.in | 3 |
2 files changed, 7 insertions, 0 deletions
@@ -1,3 +1,7 @@ +2009-02-03 Tor Lillqvist <tml@novell.com> + + * configure.in: Set MWINDOWS to -mwindows on Windows. AC_SUBST it. + 2009-02-02 Srinivasa Ragavan <sragavan@novell.com> * NEWS: Evolution 2.25.90 release diff --git a/configure.in b/configure.in index d828f48f8c..4b2fcf7702 100644 --- a/configure.in +++ b/configure.in @@ -147,6 +147,7 @@ case "$host" in *-mingw*) os_win32=yes NO_UNDEFINED='-no-undefined' + MWINDOWS='-mwindows' SOEXT='.dll' SA_JUNK_PLUGIN='' BF_JUNK_PLUGIN='' @@ -156,6 +157,7 @@ case "$host" in ;; *) os_win32=no NO_UNDEFINED='' + MWINDOWS='' SOEXT='.so' SA_JUNK_PLUGIN=sa-junk-plugin BF_JUNK_PLUGIN=bogo-junk-plugin @@ -167,6 +169,7 @@ esac AC_MSG_RESULT([$os_win32]) AM_CONDITIONAL(OS_WIN32, [test $os_win32 = yes]) AC_SUBST(NO_UNDEFINED) +AC_SUBST(MWINDOWS) AC_SUBST(SOEXT) # Check for base dependencies early. |