summaryrefslogtreecommitdiff
path: root/perl.c
diff options
context:
space:
mode:
authorH.Merijn Brand <h.m.brand@xs4all.nl>2005-06-02 07:52:09 +0000
committerH.Merijn Brand <h.m.brand@xs4all.nl>2005-06-02 07:52:09 +0000
commitebf89b737691c72314d768f6a0746c119986eac8 (patch)
tree3b972b4183aa762041ace225c94a5602f4ecdee2 /perl.c
parenta0288114f9bfa2566e353eba77114ea63b616631 (diff)
downloadperl-ebf89b737691c72314d768f6a0746c119986eac8.tar.gz
HP-UX specific #pragma entered in #23890 is not supported
on HP-UX 10.20 and older p4raw-id: //depot/perl@24667
Diffstat (limited to 'perl.c')
-rw-r--r--perl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl.c b/perl.c
index 063d96305a..02aab317c8 100644
--- a/perl.c
+++ b/perl.c
@@ -1004,7 +1004,7 @@ perl_free(pTHXx)
/* provide destructors to clean up the thread key when libperl is unloaded */
#ifndef WIN32 /* handled during DLL_PROCESS_DETACH in win32/perllib.c */
-#if defined(__hpux) && !defined(__GNUC__)
+#if defined(__hpux) && && __ux_version > 1020 && !defined(__GNUC__)
#pragma fini "perl_fini"
#endif