���� JFIF ��
Server IP : 103.65.238.20 / Your IP : 10.0.0.10 Web Server : Apache System : Linux localhost.localdomain 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64 User : www ( 1000) PHP Version : 7.3.32 Disable Function : passthru,exec,system,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,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_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /bin/ |
Upload File : |
#!/bin/sh # Copyright (C) 2006 K.Kosako ONIG_VERSION=6.8.2 show_usage() { cat <<EOF Usage: onig-config [OPTION] Values for OPTION are: --prefix[=DIR] change prefix to DIR --prefix print prefix --exec-prefix[=DIR] change exec_prefix to DIR --exec-prefix print exec_prefix --cflags print C compiler flags --libs print library information --version print oniguruma version --help print this help EOF exit 1 } if test $# -eq 0; then show_usage fi prefix=/usr exec_prefix=/usr is_set_exec_prefix=no while test $# -gt 0; do case "$1" in -*=*) val=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;; *) val= ;; esac case $1 in --prefix=*) prefix=$val if test $is_set_exec_prefix = no ; then exec_prefix=$val fi ;; --prefix) echo $prefix ;; --exec-prefix=*) exec_prefix=$val is_set_exec_prefix=yes ;; --exec-prefix) echo $exec_prefix ;; --cflags) if test /usr/include != /usr/include ; then show_includedir=-I/usr/include fi echo $show_includedir ;; --libs) echo -lonig ;; --version) echo $ONIG_VERSION ;; *) show_usage ;; esac shift done # END