1
0
mirror of https://github.com/php/php-src.git synced 2026-04-29 03:03:26 +02:00

- skip if pcntl is missing

This commit is contained in:
Pierre Joye
2008-11-16 23:19:33 +00:00
parent f38c96e85f
commit bb80704332
+2 -1
View File
@@ -2,7 +2,8 @@
openssl_sign/verify: accept different algos
--SKIPIF--
<?php
if (!extension_loaded("openssl")) die("skip");
if (!extension_loaded("openssl")) die("skip, openssl required");
if (!extension_loaded("pcntl")) die("skip, pcntl required");
if (OPENSSL_VERSION_NUMBER < 0x009070af) die("skip");
?>
--FILE--