-
Notifications
You must be signed in to change notification settings - Fork 561
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[PATCH 5.005_57] Build-dependent #ifdefs in _thrdvar.h #184
Comments
From [email protected]Perusing thrdvar.h, I see the comment * Avoid build-specific #ifdefs here, like DEBUGGING. That way, but later I see precisely #ifdef DEBUGGING This is a Bad Thing, no? Here's a patch to which gives both normal Setting aside threading #ifdefs, which can't be avoided, Inline Patch--- thrdvar.h-as-received Tue May 25 09:38:57 1999
+++ thrdvar.h Tue Jul 13 12:15:19 1999
@@ -176,10 +176,10 @@
PERLVARI(Treginterp_cnt,int, 0) /* Whether `Regexp'
was interpolated. */
PERLVARI(Treg_starttry, char *, 0) /* -Dr: where regtry was called.
*/
-#ifdef DEBUGGING
+
PERLVARI(Twatchaddr, char **, 0)
PERLVAR(Twatchok, char *)
-#endif
+
/* Note that the variables below are all explicitly referenced in the code
* as thr->whatever and therefore don't need the 'T' prefix. */ Perl Info
|
Migrated from rt.perl.org#989 (status was 'resolved')
Searchable as RT989$
The text was updated successfully, but these errors were encountered: