]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
libfortran/24991
authorjakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 28 Nov 2005 19:51:02 +0000 (19:51 +0000)
committerjakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 28 Nov 2005 19:51:02 +0000 (19:51 +0000)
* acinclude.m4 (LIBGFOR_CHECK_PRAGMA_WEAK): Rename to...
(LIBGFOR_GTHREAD_WEAK): ... this.  Define SUPPORTS_WEAK rather
than HAVE_PRAGMA_WEAK.  Define GTHREAD_USE_WEAK to 0 on hosts
that shouldn't use weak in gthr.h.
* configure.ac: Use LIBGFOR_GTHREAD_WEAK instead of
LIBGFOR_CHECK_PRAGMA_WEAK.
* config.h.in: Regenerated.
* configure: Regenerated.
* io/io.h (SUPPORTS_WEAK): Don't define here.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@107616 138bc75d-0d04-0410-961f-82ee72b054a4

libgfortran/ChangeLog
libgfortran/acinclude.m4
libgfortran/config.h.in
libgfortran/configure
libgfortran/configure.ac
libgfortran/io/io.h

index b874dc57819e08e865531745d1f35ca752c73881..e7e8065118b65e651ff001ded763ff23670e6fc2 100644 (file)
@@ -1,5 +1,16 @@
 2005-11-28  Jakub Jelinek  <jakub@redhat.com>
 
+       libfortran/24991
+       * acinclude.m4 (LIBGFOR_CHECK_PRAGMA_WEAK): Rename to...
+       (LIBGFOR_GTHREAD_WEAK): ... this.  Define SUPPORTS_WEAK rather
+       than HAVE_PRAGMA_WEAK.  Define GTHREAD_USE_WEAK to 0 on hosts
+       that shouldn't use weak in gthr.h.
+       * configure.ac: Use LIBGFOR_GTHREAD_WEAK instead of
+       LIBGFOR_CHECK_PRAGMA_WEAK.
+       * config.h.in: Regenerated.
+       * configure: Regenerated.
+       * io/io.h (SUPPORTS_WEAK): Don't define here.
+
        * intrinsics/ftell.c (ftell, FTELL_SUB): Add unlock_unit call.
        * intrinsics/fget.c (fgetc, fputs): Likewise.
        * intrinsics/tty.c (ttynam): Likewise.
index 9d06a8b84d491c6c2d49568a7daa014b38f3cd56..3af0c0ea476c9a81631a1ecbbfeaa2aed6dc5929 100644 (file)
@@ -174,7 +174,7 @@ target_thread_file=`$CC -v 2>&1 | sed -n 's/^Thread model: //p'`])
   fi])
 
 dnl Check for pragma weak.
-AC_DEFUN([LIBGFOR_CHECK_PRAGMA_WEAK], [
+AC_DEFUN([LIBGFOR_GTHREAD_WEAK], [
   AC_CACHE_CHECK([whether pragma weak works],
                 have_pragma_weak, [
   gfor_save_CFLAGS="$CFLAGS"
@@ -183,9 +183,15 @@ AC_DEFUN([LIBGFOR_CHECK_PRAGMA_WEAK], [
 #pragma weak foo], [if (foo) foo ();],
                 have_pragma_weak=yes, have_pragma_weak=no)])
   if test $have_pragma_weak = yes; then
-    AC_DEFINE(HAVE_PRAGMA_WEAK, 1,
+    AC_DEFINE(SUPPORTS_WEAK, 1,
              [Define to 1 if the target supports #pragma weak])
-  fi])
+  fi
+  case "$host" in
+    *-*-darwin* | *-*-hpux* | *-*-cygwin*)
+      AC_DEFINE(GTHREAD_USE_WEAK, 0,
+               [Define to 0 if the target shouldn't use #pragma weak])
+      ;;
+  esac])
 
 dnl Check whether target can unlink a file still open.
 AC_DEFUN([LIBGFOR_CHECK_UNLINK_OPEN_FILE], [
index ba0ca49b455c4cc7854bf3c93d3f587793a22260..92f088672d75a89e4eec6905687477e346480b08 100644 (file)
@@ -3,6 +3,9 @@
 /* Does gettimeofday take a single argument */
 #undef GETTIMEOFDAY_ONE_ARGUMENT
 
+/* Define to 0 if the target shouldn't use #pragma weak */
+#undef GTHREAD_USE_WEAK
+
 /* libm includes acos */
 #undef HAVE_ACOS
 
 /* libm includes powl */
 #undef HAVE_POWL
 
-/* Define to 1 if the target supports #pragma weak */
-#undef HAVE_PRAGMA_WEAK
-
 /* libm includes round */
 #undef HAVE_ROUND
 
 /* Define to 1 if you have the ANSI C header files. */
 #undef STDC_HEADERS
 
+/* Define to 1 if the target supports #pragma weak */
+#undef SUPPORTS_WEAK
+
 /* Define to 1 if the target is ILP32. */
 #undef TARGET_ILP32
 
index 6799fa5277228723585d8ee9f97ec9c862ea75fd..6651af413beb552ebcfac08883c10c3c718c4e66 100755 (executable)
@@ -20854,10 +20854,19 @@ echo "${ECHO_T}$have_pragma_weak" >&6
   if test $have_pragma_weak = yes; then
 
 cat >>confdefs.h <<\_ACEOF
-#define HAVE_PRAGMA_WEAK 1
+#define SUPPORTS_WEAK 1
 _ACEOF
 
   fi
+  case "$host" in
+    *-*-darwin* | *-*-hpux* | *-*-cygwin*)
+
+cat >>confdefs.h <<\_ACEOF
+#define GTHREAD_USE_WEAK 0
+_ACEOF
+
+      ;;
+  esac
 
 # Various other checks on target
 
index 7dc9298cfe6fb5ccb76c672cad3ade901910a020..cba9918ecbc945cdb027022240d7e11a3904eb34 100644 (file)
@@ -381,7 +381,7 @@ LIBGFOR_CHECK_SYNC_FETCH_AND_ADD
 LIBGFOR_CHECK_GTHR_DEFAULT
 
 # Check out #pragma weak.
-LIBGFOR_CHECK_PRAGMA_WEAK
+LIBGFOR_GTHREAD_WEAK
 
 # Various other checks on target
 LIBGFOR_CHECK_UNLINK_OPEN_FILE
index 004bcef8bf638c5ffc5e79ff663c025eeb25c58a..9caf59fbd3e6344a67bdf0d523facadeaf2ca426 100644 (file)
@@ -32,10 +32,6 @@ Boston, MA 02110-1301, USA.  */
 
 #include <setjmp.h>
 #include "libgfortran.h"
-#ifdef HAVE_PRAGMA_WEAK
-/* Used by gthr.h.  */
-#define SUPPORTS_WEAK 1
-#endif
 
 #include <gthr.h>