Merge pull request #411 from boyski/gcc4

Don't use '__attribute__ visibility' with gcc unless it's at version 4 or better
This commit is contained in:
Vicent Martí 2011-09-18 19:38:14 -07:00
commit e311519dce

View File

@ -22,7 +22,7 @@
#endif #endif
/** Declare a public function exported for application use. */ /** Declare a public function exported for application use. */
#ifdef __GNUC__ #if __GNUC__ >= 4
# define GIT_EXTERN(type) extern \ # define GIT_EXTERN(type) extern \
__attribute__((visibility("default"))) \ __attribute__((visibility("default"))) \
type type
@ -33,7 +33,7 @@
#endif #endif
/** Declare a public TLS symbol exported for application use. */ /** Declare a public TLS symbol exported for application use. */
#ifdef __GNUC__ #if __GNUC__ >= 4
# define GIT_EXTERN_TLS(type) extern \ # define GIT_EXTERN_TLS(type) extern \
__attribute__((visibility("default"))) \ __attribute__((visibility("default"))) \
GIT_TLS \ GIT_TLS \