From a597ccdde692709ab387cde21518f09eb501c5a1 Mon Sep 17 00:00:00 2001 From: Simon Wilkinson Date: Tue, 5 Apr 2011 19:44:11 +0100 Subject: [PATCH] roken: Rename gettimeofday replacement All replacement roken functions are named rk_blah to avoid symbol collisions. gettimeofday wasn't being renamed in the header, so fix that. This doesn't change the soname of the resulting library, as gettimeofday isn't currently exported. --- lib/roken/roken.h.in | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/roken/roken.h.in b/lib/roken/roken.h.in index 1ca3c10dc..8be137137 100644 --- a/lib/roken/roken.h.in +++ b/lib/roken/roken.h.in @@ -932,6 +932,7 @@ strptime (const char *, const char *, struct tm *); #endif #ifndef HAVE_GETTIMEOFDAY +#define gettimeofday rk_gettimeofday ROKEN_LIB_FUNCTION int ROKEN_LIB_CALL gettimeofday (struct timeval *, void *); #endif