From b6c639e4b1912ad03b9b10ba9518d96bd0a6cfaf Mon Sep 17 00:00:00 2001 From: Gisle Aas Date: Sun, 30 Mar 1997 21:22:11 +0200 Subject: [PATCH] Typo in perl.c: Printing NO_EMBED for perl -V p5p-msgid: 199703301922.VAA13509@furubotn.sn.no --- perl.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/perl.c b/perl.c index fd39779..5846c82 100644 --- a/perl.c +++ b/perl.c @@ -619,13 +619,13 @@ setuid perl scripts securely.\n"); #else sv_catpv(Sv,"print \"\\nCharacteristics of this binary (from libperl): \\n\","); #endif -#if defined(DEBUGGING) || defined(NOEMBED) || defined(MULTIPLICITY) +#if defined(DEBUGGING) || defined(NO_EMBED) || defined(MULTIPLICITY) strcpy(buf,"\" Compile-time options:"); # ifdef DEBUGGING strcat(buf," DEBUGGING"); # endif -# ifdef NOEMBED - strcat(buf," NOEMBED"); +# ifdef NO_EMBED + strcat(buf," NO_EMBED"); # endif # ifdef MULTIPLICITY strcat(buf," MULTIPLICITY"); -- 2.7.4