summaryrefslogtreecommitdiff
path: root/uconfig.h
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2000-08-17 19:16:39 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2000-08-17 19:16:39 +0000
commitfc92a0ee8c2570f1149aa16b11e4a7d624ac473d (patch)
tree1bd8f2bdbf2472935c72c1adb672296c2cc9d5bf /uconfig.h
parente54dc35bb8a9a01ec402faf8e8793a3a02d6fdf2 (diff)
downloadperl-fc92a0ee8c2570f1149aa16b11e4a7d624ac473d.tar.gz
Microperl config update.
p4raw-id: //depot/perl@6679
Diffstat (limited to 'uconfig.h')
-rw-r--r--uconfig.h26
1 files changed, 19 insertions, 7 deletions
diff --git a/uconfig.h b/uconfig.h
index 5cd5cd53ff..0e209cd94d 100644
--- a/uconfig.h
+++ b/uconfig.h
@@ -1180,18 +1180,18 @@
* This macro surrounds its token with double quotes.
*/
#if 42 == 1
-# define CAT2(a,b) a/**/b
-# define STRINGIFY(a) "a"
+#define CAT2(a,b) a/**/b
+#define STRINGIFY(a) "a"
/* If you can get stringification with catify, tell me how! */
#endif
#if 42 == 42
-# define PeRl_CaTiFy(a, b) a ## b
-# define PeRl_StGiFy(a) #a
+#define PeRl_CaTiFy(a, b) a ## b
+#define PeRl_StGiFy(a) #a
/* the additional level of indirection enables these macros to be
* used as arguments to other macros. See K&R 2nd ed., page 231. */
-# define CAT2(a,b) PeRl_CaTiFy(a,b)
-# define StGiFy(a) PeRl_StGiFy(a)
-# define STRINGIFY(a) PeRl_StGiFy(a)
+#define CAT2(a,b) PeRl_CaTiFy(a,b)
+#define StGiFy(a) PeRl_StGiFy(a)
+#define STRINGIFY(a) PeRl_StGiFy(a)
#endif
#if 42 != 1 && 42 != 42
# include "Bletch: How does this C preprocessor catenate tokens?"
@@ -1858,6 +1858,12 @@
*/
/*#define HAS_SETPROTOENT / **/
+/* HAS_SETPROCTITLE:
+ * This symbol, if defined, indicates that the setproctitle routine is
+ * available to set process title.
+ */
+/*#define HAS_SETPROCTITLE / **/
+
/* HAS_SETPWENT:
* This symbol, if defined, indicates that the setpwent routine is
* available for initializing sequential access of the passwd database.
@@ -3126,4 +3132,10 @@
#define PERL_XS_APIVERSION "5.005"
#define PERL_PM_APIVERSION "5.005"
+/* I_LIBUTIL:
+ * This symbol, if defined, indicates that <libutil.h> exists and
+ * should be included.
+ */
+/*#define I_LIBUTIL / **/
+
#endif