1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-07 08:40:21 +02:00

Revert "Fix `SCM_INTERNAL' with GCC 4.3."

This reverts commit bc566d672f.
This commit is contained in:
Ludovic Courtès 2008-09-04 20:24:22 +02:00
parent ef8d3d3a2c
commit ca71113651
2 changed files with 2 additions and 8 deletions

View file

@ -43,12 +43,6 @@
* strings.c (scm_c_symbol_length): New function.
* strings.h (scm_c_symbol_length): New declaration.
2008-07-04 Ludovic Courtès <ludo@gnu.org>
* __scm.h (SCM_INTERNAL): Add `extern' so that these symbols are
not considered as "common" by GCC 4.3. Reported by Patrick
Horgan <phorgan1@gmail.com>.
2008-06-28 Ludovic Courtès <ludo@gnu.org>
* Makefile.am (INCLUDES): Renamed to...

View file

@ -101,9 +101,9 @@
* as having "internal" linkage. */
#if (defined __GNUC__) && \
((__GNUC__ >= 4) || (__GNUC__ == 3 && __GNUC_MINOR__ == 3))
# define SCM_INTERNAL extern __attribute__ ((__visibility__ ("internal")))
# define SCM_INTERNAL __attribute__ ((__visibility__ ("internal")))
#else
# define SCM_INTERNAL extern
# define SCM_INTERNAL
#endif