aboutsummaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2008-07-29 16:29:34 +0000
committerYang Tse <yangsita@gmail.com>2008-07-29 16:29:34 +0000
commitf18700ef64d4f4421faef118a504622cf695bc58 (patch)
treee998e2fb12188b3b020359456fc53734ba92a5d8 /m4
parent52d9a3c34f4dbc6e9372d87a357efeb7fd6ce1ae (diff)
Replace some '@%:@' quadigraphs by its actual representation '#'.
This quadigraph used before a C preprocessor 'define' directive could be fooling M4, when processing this file, and make it think that the line contains a pure M4 'define' macro.
Diffstat (limited to 'm4')
-rw-r--r--m4/reentrant.m46
1 files changed, 3 insertions, 3 deletions
diff --git a/m4/reentrant.m4 b/m4/reentrant.m4
index 8435e281e..e5af41e97 100644
--- a/m4/reentrant.m4
+++ b/m4/reentrant.m4
@@ -376,9 +376,9 @@ AC_DEFUN([CURL_CONFIGURE_FROM_NOW_ON_WITH_REENTRANT], [
AC_DEFINE(NEED_REENTRANT, 1,
[Define to 1 if _REENTRANT preprocessor symbol must be defined.])
cat >>confdefs.h <<_ACEOF
-[@%:@ifndef _REENTRANT
-@%:@ define _REENTRANT
-@%:@endif]
+[#ifndef _REENTRANT
+# define _REENTRANT
+#endif]
_ACEOF
])