![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /usr/local/lib/node_modules/mediasoup/worker/deps/openssl/openssl/util/ |
Upload File : |
#!/bin/sh HERE="`echo $0 | sed -e 's|[^/]*$||'`" OPENSSL="${HERE}../apps/openssl" if [ -d "${HERE}../engines" -a "x$OPENSSL_ENGINES" = "x" ]; then OPENSSL_ENGINES="${HERE}../engines"; export OPENSSL_ENGINES fi if [ -x "${OPENSSL}.exe" ]; then # The original reason for this script existence is to work around # certain caveats in run-time linker behaviour. On Windows platforms # adjusting $PATH used to be sufficient, but with introduction of # SafeDllSearchMode in XP/2003 the only way to get it right in # *all* possible situations is to copy newly built .DLLs to apps/ # and test/, which is now done elsewhere... The $PATH is adjusted # for backward compatibility (and nostagical reasons:-). if [ "$OSTYPE" != msdosdjgpp ]; then PATH="${HERE}..:$PATH"; export PATH fi exec "${OPENSSL}.exe" "$@" elif [ -x "${OPENSSL}" -a -x "${HERE}shlib_wrap.sh" ]; then exec "${HERE}shlib_wrap.sh" "${OPENSSL}" "$@" else exec "${OPENSSL}" "$@" # hope for the best... fi