diff options
author | Danny Smith <dannysmith@users.sourceforge.net> | 2007-08-13 12:21:35 +0000 |
---|---|---|
committer | François-Xavier Coudert <fxcoudert@gcc.gnu.org> | 2007-08-13 12:21:35 +0000 |
commit | 6e20eae9946be7f78083e1a44c80358ec0d20079 (patch) | |
tree | b2b9d56481db2d374bbd80133d07464ff5c5945b /libgfortran | |
parent | b21fbb687b702305db88784ccb619e94dd186e74 (diff) | |
download | gcc-6e20eae9946be7f78083e1a44c80358ec0d20079.tar.gz |
* acinclude.m4 (GTHREAD_USE_WEAK) Define to 0 for mingw32.
* configure: Regenerate.
From-SVN: r127395
Diffstat (limited to 'libgfortran')
-rw-r--r-- | libgfortran/ChangeLog | 5 | ||||
-rw-r--r-- | libgfortran/acinclude.m4 | 2 | ||||
-rwxr-xr-x | libgfortran/configure | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog index 1d4055b02e1..a74bd448151 100644 --- a/libgfortran/ChangeLog +++ b/libgfortran/ChangeLog @@ -1,3 +1,8 @@ +2007-08-13 Danny Smith <dannysmit@users.sourceforge.net> + + * acinclude.m4 (GTHREAD_USE_WEAK) Define to 0 for mingw32. + * configure: Regenerate. + 2007-08-12 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org> PR fortran/30964 diff --git a/libgfortran/acinclude.m4 b/libgfortran/acinclude.m4 index 1660b6e75e6..1270a98c04e 100644 --- a/libgfortran/acinclude.m4 +++ b/libgfortran/acinclude.m4 @@ -128,7 +128,7 @@ AC_DEFUN([LIBGFOR_GTHREAD_WEAK], [ [Define to 1 if the target supports #pragma weak]) fi case "$host" in - *-*-darwin* | *-*-hpux* | *-*-cygwin*) + *-*-darwin* | *-*-hpux* | *-*-cygwin* | *-*-mingw* ) AC_DEFINE(GTHREAD_USE_WEAK, 0, [Define to 0 if the target shouldn't use #pragma weak]) ;; diff --git a/libgfortran/configure b/libgfortran/configure index b9a0cf5bf4b..c68cb7436b7 100755 --- a/libgfortran/configure +++ b/libgfortran/configure @@ -32613,7 +32613,7 @@ _ACEOF fi case "$host" in - *-*-darwin* | *-*-hpux* | *-*-cygwin*) + *-*-darwin* | *-*-hpux* | *-*-cygwin* | *-*-mingw* ) cat >>confdefs.h <<\_ACEOF #define GTHREAD_USE_WEAK 0 |