]> git.sur5r.net Git - openldap/commitdiff
ITS#7892 Fix MacOSX section name
authorHoward Chu <hyc@symas.com>
Tue, 8 Jul 2014 23:27:03 +0000 (16:27 -0700)
committerHoward Chu <hyc@symas.com>
Tue, 8 Jul 2014 23:27:03 +0000 (16:27 -0700)
libraries/liblmdb/mdb.c

index d8cf710bfd1cb30ea6a32d341c07b4f8b442c06a..267a6e3951e14f67e4f10ee814c2064a37bc0b46 100644 (file)
 
 #ifdef __GNUC__
 /** Put infrequently used env functions in separate section */
-#define        ESECT   __attribute__ ((section("text_env")))
+# ifdef __APPLE__
+#  define      ESECT   __attribute__ ((section("__TEXT,text_env")))
+# else
+#  define      ESECT   __attribute__ ((section("text_env")))
+# endif
 #else
 #define ESECT
 #endif