diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-04-09 16:11:43 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-04-09 16:11:43 +0000 |
commit | 58a9dc44d5ea989919b2d665f6b3233ef90d6052 (patch) | |
tree | c9a20a821ce84fcd433390cd4393a5450dfdc177 | |
parent | a9dade7878a917de032e3b0f2e1c0c20904cd6ac (diff) | |
download | perl-58a9dc44d5ea989919b2d665f6b3233ef90d6052.tar.gz |
Avoid bad prototypes.
p4raw-id: //depot/perl@15830
-rw-r--r-- | hints/hpux.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/hints/hpux.sh b/hints/hpux.sh index 05f73d602e..3392c77df9 100644 --- a/hints/hpux.sh +++ b/hints/hpux.sh @@ -485,6 +485,9 @@ EOM ccflags="$ccflags -DPTHREAD_H_FIRST" # First column on purpose. pthread_h_first="$define" + # Avoid the poisonous conflicting (and irrelevant) + # prototypes of setkey(). + i_crypt="$undef" # CMA redefines select to cma_select, and cma_select # expects int * instead of fd_set * (just like 9.X) |