diff options
author | Bruno Haible <bruno@clisp.org> | 2006-09-06 12:11:45 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-06-23 12:13:58 +0200 |
commit | 8d766faa6a4f3180f3b95c428a9a91f43664df64 (patch) | |
tree | 2a339320859d83eb20547c05205cc190bba3f2be /m4 | |
parent | b1090fa930fb1a75f1292ad247acc509341716a0 (diff) | |
download | external_gettext-8d766faa6a4f3180f3b95c428a9a91f43664df64.zip external_gettext-8d766faa6a4f3180f3b95c428a9a91f43664df64.tar.gz external_gettext-8d766faa6a4f3180f3b95c428a9a91f43664df64.tar.bz2 |
Update comments.
Diffstat (limited to 'm4')
-rw-r--r-- | m4/woe32-dll.m4 | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/m4/woe32-dll.m4 b/m4/woe32-dll.m4 index 73530b4..6b5a037 100644 --- a/m4/woe32-dll.m4 +++ b/m4/woe32-dll.m4 @@ -1,5 +1,5 @@ -# woe32-dll.m4 serial 1 -dnl Copyright (C) 2005 Free Software Foundation, Inc. +# woe32-dll.m4 serial 2 +dnl Copyright (C) 2005-2006 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. @@ -8,19 +8,23 @@ dnl From Bruno Haible. # Add --disable-auto-import to the LDFLAGS if the linker supports it. # GNU ld has an --enable-auto-import option, and it is the default on Cygwin -# since July 2005. But it two fatal drawbacks: +# since July 2005. But it has three fatal drawbacks: # - It produces executables and shared libraries with relocations in the # .text segment, defeating the principles of virtual memory. # - For some constructs such as # extern int var; # int * const b = &var; -# it creates an executable that will give an error at runtime, rather than -# either a compile-time or link-time error or a working executable. -# (This is with both gcc and g++.) Whereas this code, not relying on auto- -# import: +# it creates an executable that will give an error at runtime, rather +# than either a compile-time or link-time error or a working executable. +# (This is with both gcc and g++.) Whereas this code, not relying on +# auto-import: # extern __declspec (dllimport) int var; # int * const b = &var; # gives a compile-time error with gcc and works with g++. +# - It doesn't work in some cases (references to a member field of an +# exported struct variable, or to a particular element of an exported +# array variable), requiring code modifications. One platform +# dictates code modifications on all platforms. AC_DEFUN([gl_WOE32_DLL], [ AC_REQUIRE([AC_CANONICAL_HOST]) |