summaryrefslogtreecommitdiff
path: root/android/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'android/config.h')
-rw-r--r--android/config.h23
1 files changed, 13 insertions, 10 deletions
diff --git a/android/config.h b/android/config.h
index 59c7544..341c01f 100644
--- a/android/config.h
+++ b/android/config.h
@@ -17,20 +17,20 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
-/* Default visibility */
-#define DEFAULT_VISIBILITY __attribute__((visibility("default")))
+/* Define to the attribute for default visibility. */
+#define DEFAULT_VISIBILITY __attribute__ ((visibility ("default")))
-/* Start with debug message logging enabled */
+/* Define to 1 to start with debug message logging enabled. */
/* #undef ENABLE_DEBUG_LOGGING */
-/* Message logging */
-#define ENABLE_LOGGING
+/* Define to 1 to enable message logging. */
+#define ENABLE_LOGGING 1
/* Define to 1 if you have the <asm/types.h> header file. */
#define HAVE_ASM_TYPES_H 1
-/* Define to 1 if the compiler supports _Thread_local. */
-#define HAVE_CC_THREAD_LOCAL 1
+/* Define to 1 if you have the `clock_gettime' function. */
+#define HAVE_CLOCK_GETTIME 1
/* Define to 1 if the system has the type `nfds_t'. */
#define HAVE_NFDS_T 1
@@ -41,11 +41,14 @@
/* Define to 1 if you have the <sys/time.h> header file. */
#define HAVE_SYS_TIME_H 1
-/* Use POSIX poll() implementation */
+/* Define to 1 if using the POSIX poll() implementation. */
#define POLL_POSIX 1
-/* Use POSIX Threads */
+/* Define to 1 if using POSIX threads. */
#define THREADS_POSIX 1
-/* Enable output to system log */
+/* Define to 1 to output logging messages to the systemwide log. */
#define USE_SYSTEM_LOGGING_FACILITY 1
+
+/* Enable GNU extensions. */
+#define _GNU_SOURCE 1