Server IP : 104.21.38.3 / Your IP : 172.71.124.5 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,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 : OFF | Sudo : ON | Pkexec : ON Directory : /www/server/php/82/src/ext/dba/ |
Upload File : |
#! /bin/sh # You can use this script if you want to use an external cdb lib. If you # compile php using --with-cdb the internal functions will be used and no # external library is used so that this script is not necessary. # # cdb-0.75 lacks support for installing header files and creating a # library which programs can link against. This shell script fills # the gap. if test -r "cdb.a" && test -r "auto-str.c" && test -r "byte.a"; then : else echo "Please execute this script in the cdb-0.75 source directory after 'make'" exit 1 fi prefix=$1 if test -z "$prefix"; then prefix=/usr/local fi echo "Using prefix $prefix" if mkdir -p "$prefix/include" "$prefix/lib"; then : else echo "Creating directories failed. Please become superuser." exit 1 fi mkdir -p tmp || exit 1 cd tmp ar x ../cdb.a ar x ../byte.a ar x ../unix.a ar x ../byte.a ar x ../buffer.a cp ../error.o . # not really portable ar r "$prefix/lib/libcdb.a" * ranlib "$prefix/lib/libcdb.a" cd .. rm -rf tmp cp cdb.h uint32.h "$prefix/include" echo "done"