diff options
author | Larry Wall <larry@netlabs.com> | 1993-11-10 00:00:00 +0000 |
---|---|---|
committer | Larry Wall <larry@netlabs.com> | 1993-11-10 00:00:00 +0000 |
commit | 463ee0b2acbd047c27e8b5393cdd8398881824c5 (patch) | |
tree | ae17d9179fc861ae5fc5a86da9139631530cb6fe /embed_h.SH | |
parent | 93a17b20b6d176db3f04f51a63b0a781e5ffd11c (diff) | |
download | perl-463ee0b2acbd047c27e8b5393cdd8398881824c5.tar.gz |
perl 5.0 alpha 4
[editor's note: the sparc executables have not been included, and
emacs backup files have been removed. This was reconstructed from a
tarball found on the September 1994 InfoMagic CD; the date of this is
approximate]
Diffstat (limited to 'embed_h.SH')
-rwxr-xr-x | embed_h.SH | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/embed_h.SH b/embed_h.SH index 78838aabf7..d78bffbd9d 100755 --- a/embed_h.SH +++ b/embed_h.SH @@ -5,7 +5,7 @@ cat <<'END' >embed.h /* (Doing namespace management portably in C is really gross.) */ -#ifdef EMBEDDED +#ifdef EMBED /* globals we need to hide from the world */ END @@ -18,7 +18,11 @@ sed <global.var >>embed.h \ cat <<'END' >> embed.h -/* interpreter specific variables */ +#endif /* EMBEDDED */ + +/* Put interpreter specific variables into a struct? */ + +#ifdef MULTIPLICITY END @@ -31,7 +35,7 @@ sed <interp.var >>embed.h \ cat <<'END' >> embed.h -#else /* not embedded, so translate interpreter variables the other way... */ +#else /* not multiple, so translate interpreter variables the other way... */ END @@ -43,6 +47,6 @@ sed <interp.var >>embed.h \ cat <<'END' >> embed.h -#endif +#endif /* MULTIPLE_INTERPRETERS */ END |