mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-08 02:40:17 +02:00
Revert "Fix `SCM_INTERNAL' with GCC 4.3."
This reverts commit bc566d672f
.
This commit is contained in:
parent
ef8d3d3a2c
commit
ca71113651
2 changed files with 2 additions and 8 deletions
|
@ -43,12 +43,6 @@
|
||||||
* strings.c (scm_c_symbol_length): New function.
|
* strings.c (scm_c_symbol_length): New function.
|
||||||
* strings.h (scm_c_symbol_length): New declaration.
|
* 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>
|
2008-06-28 Ludovic Courtès <ludo@gnu.org>
|
||||||
|
|
||||||
* Makefile.am (INCLUDES): Renamed to...
|
* Makefile.am (INCLUDES): Renamed to...
|
||||||
|
|
|
@ -101,9 +101,9 @@
|
||||||
* as having "internal" linkage. */
|
* as having "internal" linkage. */
|
||||||
#if (defined __GNUC__) && \
|
#if (defined __GNUC__) && \
|
||||||
((__GNUC__ >= 4) || (__GNUC__ == 3 && __GNUC_MINOR__ == 3))
|
((__GNUC__ >= 4) || (__GNUC__ == 3 && __GNUC_MINOR__ == 3))
|
||||||
# define SCM_INTERNAL extern __attribute__ ((__visibility__ ("internal")))
|
# define SCM_INTERNAL __attribute__ ((__visibility__ ("internal")))
|
||||||
#else
|
#else
|
||||||
# define SCM_INTERNAL extern
|
# define SCM_INTERNAL
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue