summaryrefslogtreecommitdiffstats
path: root/source/lib
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2007-04-16 19:46:06 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:19:23 -0500
commit5ca18546444e3e65491c2104cf8eeb1022bb5591 (patch)
tree255da37f6d66c6c811d26e572fdf8af7b3c7798b /source/lib
parent3f87165771ecbbcd70e870235e324d25b21a04d4 (diff)
downloadsamba-5ca18546444e3e65491c2104cf8eeb1022bb5591.tar.gz
samba-5ca18546444e3e65491c2104cf8eeb1022bb5591.tar.xz
samba-5ca18546444e3e65491c2104cf8eeb1022bb5591.zip
r22274: merge from samba4:
- provide __LINESTR__ macro - add __STRINGSTRING() macro to really create a string of __LINE__ - fix __location__ macro metze
Diffstat (limited to 'source/lib')
-rw-r--r--source/lib/replace/README2
-rw-r--r--source/lib/replace/replace.h10
2 files changed, 11 insertions, 1 deletions
diff --git a/source/lib/replace/README b/source/lib/replace/README
index d63847556cc..c2de560314a 100644
--- a/source/lib/replace/README
+++ b/source/lib/replace/README
@@ -79,8 +79,10 @@ va_copy
__FUNCTION__
__FILE__
__LINE__
+__LINESTR__
__location__
__STRING
+__STRINGSTRING
MIN
MAX
QSORT_CAST
diff --git a/source/lib/replace/replace.h b/source/lib/replace/replace.h
index 0d462b613d1..840b448d24b 100644
--- a/source/lib/replace/replace.h
+++ b/source/lib/replace/replace.h
@@ -439,8 +439,16 @@ typedef int bool;
#define __STRING(x) #x
#endif
+#ifndef _STRINGSTRING
+#define __STRINGSTRING(x) __STRING(x)
+#endif
+
+#ifndef __LINESTR__
+#define __LINESTR__ __STRINGSTRING(__LINE__)
+#endif
+
#ifndef __location__
-#define __location__ __FILE__ ":" __STRING(__LINE__)
+#define __location__ __FILE__ ":" __LINESTR__
#endif
#if MMAP_BLACKLIST