update dependencies
git-svn-id: svn://svn.lighttpd.net/xcache/trunk@1312 c26eb9a1-5813-0410-bd6c-c2e55f420ca73.1
parent
30224380bd
commit
c4d23d3884
|
@ -5,7 +5,7 @@ mod_coverager/xc_coverager.lo $(builddir)/mod_coverager/xc_coverager.lo: $(srcdi
|
|||
mod_decoder/xc_decoder.lo $(builddir)/mod_decoder/xc_decoder.lo:
|
||||
mod_disassembler/xc_disassembler.lo $(builddir)/mod_disassembler/xc_disassembler.lo: $(srcdir)/mod_cacher/xc_cache.h $(srcdir)/mod_disassembler/xc_disassembler.h $(srcdir)/xcache.h $(srcdir)/xcache/xc_allocator.h $(srcdir)/xcache/xc_compatibility.h $(srcdir)/xcache/xc_ini.h $(srcdir)/xcache/xc_lock.h $(srcdir)/xcache/xc_sandbox.h $(srcdir)/xcache/xc_shm.h $(srcdir)/xcache/xc_utils.h $(XCACHE_PROC_H)
|
||||
mod_encoder/xc_encoder.lo $(builddir)/mod_encoder/xc_encoder.lo:
|
||||
mod_optimizer/xc_optimizer.lo $(builddir)/mod_optimizer/xc_optimizer.lo: $(srcdir)/mod_cacher/xc_cache.h $(srcdir)/mod_optimizer/xc_optimizer.h $(srcdir)/util/xc_stack.h $(srcdir)/util/xc_trace.h $(srcdir)/xcache_globals.h $(srcdir)/xcache.h $(srcdir)/xcache/xc_allocator.h $(srcdir)/xcache/xc_compatibility.h $(srcdir)/xcache/xc_const_string.h $(srcdir)/xcache/xc_extension.h $(srcdir)/xcache/xc_ini.h $(srcdir)/xcache/xc_lock.h $(srcdir)/xcache/xc_shm.h $(srcdir)/xcache/xc_utils.h $(XCACHE_PROC_H)
|
||||
mod_optimizer/xc_optimizer.lo $(builddir)/mod_optimizer/xc_optimizer.lo: $(srcdir)/mod_cacher/xc_cache.h $(srcdir)/mod_optimizer/xc_optimizer.h $(srcdir)/util/xc_stack.h $(srcdir)/util/xc_trace.h $(srcdir)/xcache_globals.h $(srcdir)/xcache.h $(srcdir)/xcache/xc_allocator.h $(srcdir)/xcache/xc_compatibility.h $(srcdir)/xcache/xc_const_string.h $(srcdir)/xcache/xc_extension.h $(srcdir)/xcache/xc_ini.h $(srcdir)/xcache/xc_lock.h $(srcdir)/xcache/xc_opcode_spec.h $(srcdir)/xcache/xc_shm.h $(srcdir)/xcache/xc_utils.h $(XCACHE_PROC_H)
|
||||
util/xc_stack.lo $(builddir)/util/xc_stack.lo: $(srcdir)/util/xc_stack.h $(srcdir)/util/xc_trace.h
|
||||
util/xc_trace.lo $(builddir)/util/xc_trace.lo: $(srcdir)/util/xc_trace.h
|
||||
xcache.lo $(builddir)/xcache.lo: $(srcdir)/mod_cacher/xc_cache.h $(srcdir)/util/xc_foreachcoresig.h $(srcdir)/util/xc_stack.h $(srcdir)/xcache_globals.h $(srcdir)/xcache.h $(srcdir)/xcache/xc_allocator.h $(srcdir)/xcache/xc_compatibility.h $(srcdir)/xcache/xc_const_string.h $(srcdir)/xcache/xc_extension.h $(srcdir)/xcache/xc_ini.h $(srcdir)/xcache/xc_lock.h $(srcdir)/xcache/xc_opcode_spec.h $(srcdir)/xcache/xc_shm.h $(srcdir)/xcache/xc_utils.h $(XCACHE_PROC_H)
|
||||
|
|
24
devel/run
24
devel/run
|
@ -84,7 +84,7 @@ updatedeps() { # {{{1
|
|||
esac
|
||||
echo ${sourceFile%.c}.lo '$(builddir)/'${sourceFile%.c}.lo:
|
||||
hiecho "Checking $sourceFile ..." >&2
|
||||
for dependency in $(gcc -DHAVE_XCACHE_TEST -DHAVE_XCACHE_DPRINT -DXCACHE_DEBUG -MM $sourceFile -I$HOME/test/php5-debug-zts/include/php/{,main,Zend,TSRM} -I. -I${builddir} -MG | sed 's#.*:##g' | sed 's#\\##g'); do
|
||||
for dependency in $(gcc -DHAVE_XCACHE_TEST -DHAVE_XCACHE_DPRINT -DXCACHE_DEBUG -MM $sourceFile -I$PHPSDIR/$phpbasename/include/php/{,main,Zend,TSRM} -I. -I${builddir} -MG | sed 's#.*:##g' | sed 's#\\##g'); do
|
||||
dependency=$(readlink -f "$dependency")
|
||||
case "$dependency" in
|
||||
$pwd/*)
|
||||
|
@ -132,17 +132,6 @@ if [[ $# -eq 0 ]]; then
|
|||
set -- $action "${args[@]}"
|
||||
fi
|
||||
|
||||
# devel actions
|
||||
case "$1" in
|
||||
prep*) shift; prep "$@"; exit;;
|
||||
tags) shift; rm -f tags; prep tags "$@"; exit;;
|
||||
po2php) po2php; exit;;
|
||||
mergepo) mergepo; exit;;
|
||||
dep*) updatedeps; exit;;
|
||||
xtest) xtest; exit;;
|
||||
stopfpm) stopfpm devel.pid; exit;;
|
||||
esac
|
||||
|
||||
basename=$(basename $(pwd))
|
||||
case "$basename" in
|
||||
*-*)
|
||||
|
@ -358,6 +347,17 @@ run() {
|
|||
}
|
||||
|
||||
for phpbasename in "${dirs[@]}"; do
|
||||
# devel actions
|
||||
case "$1" in
|
||||
prep*) shift; prep "$@"; exit;;
|
||||
tags) shift; rm -f tags; prep tags "$@"; exit;;
|
||||
po2php) po2php; exit;;
|
||||
mergepo) mergepo; exit;;
|
||||
dep*) updatedeps; exit;;
|
||||
xtest) xtest; exit;;
|
||||
stopfpm) stopfpm devel.pid; exit;;
|
||||
esac
|
||||
|
||||
mkdir -p ${xcachesrcdir}-${phpbasename}
|
||||
cd ${xcachesrcdir}-${phpbasename} || exit
|
||||
lndir ${xcachesrcdir} >/dev/null || true
|
||||
|
|
Loading…
Reference in New Issue