mirror of git://gcc.gnu.org/git/gcc.git
2002-02-01 Adam Megacz <adam@xwt.org>
* boehm-gc on win32 now automatically detects if it is being built as a DLL; see http://gcc.gnu.org/ml/java/2001-12/msg00240.html From-SVN: r49426
This commit is contained in:
parent
54a190dd7b
commit
7e57448e82
|
@ -1,3 +1,8 @@
|
||||||
|
2002-02-01 Adam Megacz <adam@xwt.org>
|
||||||
|
|
||||||
|
* boehm-gc on win32 now automatically detects if it is being built
|
||||||
|
as a DLL; see http://gcc.gnu.org/ml/java/2001-12/msg00240.html
|
||||||
|
|
||||||
2002-01-25 David Edelsohn <edelsohn@gnu.org>
|
2002-01-25 David Edelsohn <edelsohn@gnu.org>
|
||||||
|
|
||||||
* include/gc.h (GC_INIT): Add DATASTART and DATAEND roots on AIX.
|
* include/gc.h (GC_INIT): Add DATASTART and DATAEND roots on AIX.
|
||||||
|
|
|
@ -86,7 +86,7 @@
|
||||||
typedef long ptrdiff_t; /* ptrdiff_t is not defined */
|
typedef long ptrdiff_t; /* ptrdiff_t is not defined */
|
||||||
# endif
|
# endif
|
||||||
|
|
||||||
#if defined(__MINGW32__) && defined(GC_WIN32_THREADS)
|
#if defined(__MINGW32__) &&defined(_DLL) && !defined(GC_NOT_DLL)
|
||||||
# ifdef GC_BUILD
|
# ifdef GC_BUILD
|
||||||
# define GC_API __declspec(dllexport)
|
# define GC_API __declspec(dllexport)
|
||||||
# else
|
# else
|
||||||
|
|
Loading…
Reference in New Issue