diff options
author | Tor Lillqvist <tml@novell.com> | 2008-07-27 15:54:15 +0000 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 2008-07-27 15:54:15 +0000 |
commit | a076a3045770456e6932d41eba97adf9b19b43f4 (patch) | |
tree | 35727ce8be92ef8e2f22d8123329e48cf22d9560 /gthread | |
parent | 0a2cd70e5eb3ae8f1386fed43e9f0f3054ab9425 (diff) |
Set LIB_EXE_MACHINE_FLAG to either X86 or X64 on Windows. AC_SUBST it.
2008-07-27 Tor Lillqvist <tml@novell.com>
* configure.in: Set LIB_EXE_MACHINE_FLAG to either X86 or X64 on
Windows. AC_SUBST it.
* */Makefile.am: Correspondingly, pass appropriate -machine
flag to lib.exe when producing the import library for the MS
toolchain.
svn path=/trunk/; revision=7255
Diffstat (limited to 'gthread')
-rw-r--r-- | gthread/ChangeLog | 4 | ||||
-rw-r--r-- | gthread/Makefile.am | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gthread/ChangeLog b/gthread/ChangeLog index 4da2fb6c0..9d854d344 100644 --- a/gthread/ChangeLog +++ b/gthread/ChangeLog @@ -1,3 +1,7 @@ +2008-07-27 Tor Lillqvist <tml@novell.com> + + * Makefile.am (gthread-2.0.lib): Pass appropriate -machine flag to lib.exe. + 2008-07-21 Matthias Clasen <mclasen2redhat.com> * === Released 2.17.4 === diff --git a/gthread/Makefile.am b/gthread/Makefile.am index ab7dd2aa8..a7b53cf58 100644 --- a/gthread/Makefile.am +++ b/gthread/Makefile.am @@ -80,7 +80,7 @@ gthread-win32-res.o: gthread.rc $(WINDRES) gthread.rc $@ gthread-2.0.lib: libgthread-2.0.la gthread.def - lib -name:libgthread-2.0-$(LT_CURRENT_MINUS_AGE).dll -def:$(srcdir)/gthread.def -out:$@ + lib -machine:@LIB_EXE_MACHINE_FLAG@ -name:libgthread-2.0-$(LT_CURRENT_MINUS_AGE).dll -def:$(srcdir)/gthread.def -out:$@ dist-hook: $(BUILT_EXTRA_DIST) files='$(BUILT_EXTRA_DIST)'; \ |