diff --git a/Makefile b/Makefile index a603687..b8f4ec4 100755 --- a/Makefile +++ b/Makefile @@ -1,29 +1,48 @@ # Makefile for GNU make +include Makefile.dep -ifndef CXX -CXX = g++ -endif + +#ifndef CXX +# temporarily workaround: forcing using clang (CXX is defined by the OS and is equal to g++) +CXX = clang++ +#endif ifndef CXXFLAGS -CXXFLAGS = -fPIC -Wall -O2 -pthread -I/usr/local/include -I/home/tomek/roboczy/prog/winix -I/home/tomek/roboczy/prog/ezc/src -I/home/tomek/roboczy/prog/tito/src -I/home/tomek/roboczy/prog/pikotools -DEZC_USE_WINIX_LOGGER -DEZC_HAS_SPECIAL_STREAM +CXXFLAGS = -Wall -O2 -fPIC -pthread -std=c++11 -I/usr/local/include -DEZC_USE_WINIX_LOGGER -DEZC_HAS_SPECIAL_STREAM +endif + + +ifndef CXXWINIXINCLUDEFLAGS +# these flags are used for compiling and making dependencies (make depend) +# it's better to not using any system directories like -I/usr/local/include here +CXXWINIXINCLUDEFLAGS = -I../../winix -I../../../winix -I../../ezc/src -I../../../ezc/src -I../../tito/src -I../../../tito/src -I../../pikotools -I../../../pikotools endif ifndef LDFLAGS LDFLAGS = -L/usr/local/lib endif +# this macro is used in ezc's Makefile +EZC_USE_WINIX_LOGGER = yes + + +# for make install +winix_install_dir = /usr/local/winix + export CXX export CXXFLAGS +export CXXWINIXINCLUDEFLAGS export LDFLAGS +export EZC_USE_WINIX_LOGGER all: winix.so plugins winix -winix.so: FORCE +winix.so: $(winix.src.files) @cd core ; $(MAKE) -e @cd db ; $(MAKE) -e @cd functions ; $(MAKE) -e @@ -32,13 +51,12 @@ winix.so: FORCE @cd ../ezc/src ; $(MAKE) -e @cd ../tito/src ; $(MAKE) -e @cd ../pikotools ; $(MAKE) -e - $(CXX) -shared -rdynamic -Wl,-whole-archive -o winix.so $(CXXFLAGS) core/*.o db/*.o functions/*.o templates/*.o notify/*.o ../ezc/src/ezc.a ../tito/src/tito.a ../pikotools/utf8/utf8.a ../pikotools/space/space.a ../pikotools/mainparser/mainparser.a ../pikotools/date/date.a $(LDFLAGS) -lfcgi -lpq -lz -lfetch -lpthread -Wl,-no-whole-archive + $(CXX) -shared -rdynamic -Wl,-whole-archive -o winix.so $(CXXFLAGS) $(CXXWINIXINCLUDEFLAGS) core/*.o db/*.o functions/*.o templates/*.o notify/*.o ../ezc/src/ezc.a ../tito/src/tito.a ../pikotools/utf8/utf8.a ../pikotools/space/space.a ../pikotools/mainparser/mainparser.a ../pikotools/date/date.a $(LDFLAGS) -lfcgi -lpq -lz -lfetch -lpthread -Wl,-no-whole-archive -winix: winix.so FORCE - @cd main ; $(MAKE) -e - # use the full path with winix.so - $(CXX) -o winix $(CXXFLAGS) $(LDFLAGS) main/*.o /home/tomek/roboczy/prog/winix/winix.so +winix: winix.so $(winix.src.files) + @cd main ; $(MAKE) -e + $(CXX) -o winix $(CXXFLAGS) $(LDFLAGS) main/*.o winix.so @@ -96,33 +114,42 @@ depend: @cd ../tito/src ; $(MAKE) -e depend @cd ../pikotools ; $(MAKE) -e depend @cd main ; $(MAKE) -e depend + echo -n "winix.src.files = " > Makefile.dep + find -E . -type f -regex ".*\.h|.*\.cpp" | xargs -I foo echo -n foo " " >> Makefile.dep + find -E ../ezc/src -type f -regex ".*\.h|.*\.cpp" | xargs -I foo echo -n foo " " >> Makefile.dep + find -E ../tito/src -type f -regex ".*\.h|.*\.cpp" | xargs -I foo echo -n foo " " >> Makefile.dep + find -E ../pikotools -type f -regex ".*\.h|.*\.cpp" | xargs -I foo echo -n foo " " >> Makefile.dep install: all - # binaries - mkdir -p /usr/local/winix/bin - cp winix.so /usr/local/winix/bin - # use the full path with winix.so (we have to recompile winix with a new path to winix.so) - $(CXX) -o /usr/local/winix/bin/winix $(CXXFLAGS) main/*.o /usr/local/winix/bin/winix.so + # installing binaries + rm -Rf $(winix_install_dir)/bin + mkdir -p $(winix_install_dir)/bin + cp winix $(winix_install_dir)/bin + cp winix.so $(winix_install_dir)/bin # etc configs - mkdir -p /usr/local/winix/etc - cp -rf etc/ /usr/local/winix/etc/ - find /usr/local/winix/etc/ -type d -name ".svn" | xargs -I foo rm -fr foo + rm -Rf $(winix_install_dir)/etc + mkdir -p $(winix_install_dir)/etc + cp -rf etc/ $(winix_install_dir)/etc/ # html templates - mkdir -p /usr/local/winix/html - cp -rf html/ /usr/local/winix/html/ - find /usr/local/winix/html/ -type d -name ".svn" | xargs -I foo rm -fr foo + rm -Rf $(winix_install_dir)/html + mkdir -p $(winix_install_dir)/html + cp -rf html/ $(winix_install_dir)/html/ # txt templates - mkdir -p /usr/local/winix/txt - cp -rf txt/ /usr/local/winix/txt/ - find /usr/local/winix/txt/ -type d -name ".svn" | xargs -I foo rm -fr foo + rm -Rf $(winix_install_dir)/txt + mkdir -p $(winix_install_dir)/txt + cp -rf txt/ $(winix_install_dir)/txt/ # locales - mkdir -p /usr/local/winix/locale - cp -rf locale/ /usr/local/winix/locale/ - find /usr/local/winix/locale/ -type d -name ".svn" | xargs -I foo rm -fr foo + rm -Rf $(winix_install_dir)/locale + mkdir -p $(winix_install_dir)/locale + cp -rf locale/ $(winix_install_dir)/locale/ # plugins - mkdir -p /usr/local/winix/plugins - find plugins/ -name "*.so" | xargs -I foo cp foo /usr/local/winix/plugins/ - # removed provileges for others - find /usr/local/winix -exec chmod o-r,o-x,o-w "{}" "+" + rm -Rf $(winix_install_dir)/plugins + mkdir -p $(winix_install_dir)/plugins + find plugins/ -name "*.so" | xargs -I foo cp foo $(winix_install_dir)/plugins/ + # deleting subversion directories + find $(winix_install_dir) -type d -name ".svn" | xargs -I foo rm -fr foo + # removing privileges for others + find $(winix_install_dir) -exec chmod o-r,o-x,o-w "{}" "+" + diff --git a/Makefile.dep b/Makefile.dep new file mode 100644 index 0000000..1e0abf1 --- /dev/null +++ b/Makefile.dep @@ -0,0 +1 @@ +winix.src.files = ./plugins/gallery/templates.cpp ./plugins/gallery/gallery.cpp ./plugins/gallery/galleryinfo.h ./plugins/gallery/init.cpp ./plugins/gallery/gallery.h ./plugins/gallery/galleryinfo.cpp ./plugins/ticket/templates.cpp ./plugins/ticket/editticket.h ./plugins/ticket/ticketinfo.cpp ./plugins/ticket/funticket.h ./plugins/ticket/init.cpp ./plugins/ticket/ticketinfo.h ./plugins/ticket/createticket.cpp ./plugins/ticket/showtickets.cpp ./plugins/ticket/tdb.cpp ./plugins/ticket/pluginmsg.h ./plugins/ticket/showtickets.h ./plugins/ticket/createticket.h ./plugins/ticket/sessiondata.cpp ./plugins/ticket/tdb.h ./plugins/ticket/sessiondata.h ./plugins/ticket/ticket.h ./plugins/ticket/editticket.cpp ./plugins/ticket/funticket.cpp ./plugins/thread/templates.cpp ./plugins/thread/createthread.h ./plugins/thread/reply.h ./plugins/thread/showthreads.h ./plugins/thread/templates.h ./plugins/thread/init.cpp ./plugins/thread/tdb.cpp ./plugins/thread/pluginmsg.h ./plugins/thread/thread.h ./plugins/thread/tdb.h ./plugins/thread/funthread.cpp ./plugins/thread/threadinfo.cpp ./plugins/thread/funthread.h ./plugins/thread/threadinfo.h ./plugins/thread/showthreads.cpp ./plugins/thread/reply.cpp ./plugins/thread/createthread.cpp ./plugins/stats/stats.cpp ./plugins/stats/templates.cpp ./plugins/stats/init.cpp ./plugins/stats/stats.h ./plugins/stats/templates.h ./plugins/stats/bot.cpp ./plugins/stats/statssession.h ./plugins/stats/bot.h ./plugins/export/exportthread.h ./plugins/export/edb.h ./plugins/export/exportinfo.h ./plugins/export/init.cpp ./plugins/export/export.h ./plugins/export/exportthread.cpp ./plugins/export/message.h ./plugins/export/edb.cpp ./plugins/export/exportinfo.cpp ./plugins/export/funexport.h ./plugins/export/funexport.cpp ./plugins/menu/cache.h ./plugins/menu/templates.cpp ./plugins/menu/init.cpp ./plugins/menu/cache.cpp ./plugins/group/templates.cpp ./plugins/group/groups.cpp ./plugins/group/init.cpp ./plugins/group/groups.h ./plugins/group/groupinfo.cpp ./plugins/group/groupinfo.h ./main/main.cpp ./functions/subject.h ./functions/reload.cpp ./functions/functionparser.h ./functions/cat.cpp ./functions/login.cpp ./functions/tinymce.cpp ./functions/logout.cpp ./functions/run.h ./functions/uname.h ./functions/functions.h ./functions/privchanger.h ./functions/rm.cpp ./functions/default.cpp ./functions/specialdefault.cpp ./functions/node.cpp ./functions/mv.h ./functions/upload.h ./functions/chmod.cpp ./functions/emacs.h ./functions/subject.cpp ./functions/cp.cpp ./functions/uname.cpp ./functions/last.h ./functions/ckeditor.h ./functions/reload.h ./functions/download.h ./functions/tinymce.h ./functions/login.h ./functions/ln.h ./functions/chown.cpp ./functions/functionbase.cpp ./functions/rm.h ./functions/default.h ./functions/adduser.h ./functions/chmod.h ./functions/vim.h ./functions/last.cpp ./functions/mkdir.cpp ./functions/download.cpp ./functions/cp.h ./functions/ln.cpp ./functions/ls.cpp ./functions/priv.cpp ./functions/stat.h ./functions/template.h ./functions/chown.h ./functions/functionbase.h ./functions/adduser.cpp ./functions/vim.cpp ./functions/who.h ./functions/functionparser.cpp ./functions/run.cpp ./functions/uptime.h ./functions/functions.cpp ./functions/privchanger.cpp ./functions/mkdir.h ./functions/stat.cpp ./functions/template.cpp ./functions/cat.h ./functions/logout.h ./functions/mv.cpp ./functions/ls.h ./functions/upload.cpp ./functions/priv.h ./functions/emacs.cpp ./functions/specialdefault.h ./functions/node.h ./functions/who.cpp ./functions/passwd.h ./functions/sort.h ./functions/passwd.cpp ./functions/mount.cpp ./functions/nicedit.h ./functions/sort.cpp ./functions/mount.h ./functions/nicedit.cpp ./functions/pw.cpp ./functions/pw.h ./functions/meta.cpp ./functions/meta.h ./functions/man.cpp ./functions/env.cpp ./functions/env.h ./functions/man.h ./functions/rmuser.cpp ./functions/rmuser.h ./functions/locale.cpp ./functions/timezone.cpp ./functions/timezone.h ./functions/locale.h ./functions/uptime.cpp ./functions/ipban.h ./functions/ipban.cpp ./functions/ckeditor.cpp ./functions/imgcrop.h ./functions/imgcrop.cpp ./functions/account.h ./functions/account.cpp ./core/dirs.h ./core/config.h ./core/postmultiparser.cpp ./core/sessionmanager.cpp ./core/htmlfilter.h ./core/rebus.cpp ./core/dircontainer.cpp ./core/log.cpp ./core/loadavg.h ./core/user.h ./core/session.cpp ./core/mountparser.h ./core/mounts.cpp ./core/app.h ./core/request.cpp ./core/plugindata.cpp ./core/synchro.h ./core/misc.cpp ./core/cookieparser.h ./core/sessioncontainer.h ./core/item.cpp ./core/error.h ./core/compress.h ./core/dirs.cpp ./core/config.cpp ./core/lastcontainer.cpp ./core/httpsimpleparser.cpp ./core/users.h ./core/postparser.h ./core/pluginmsg.h ./core/acceptbaseparser.h ./core/loadavg.cpp ./core/mountparser.cpp ./core/sessionmanager.h ./core/system.cpp ./core/groups.h ./core/synchro.cpp ./core/rebus.h ./core/acceptencodingparser.h ./core/item.h ./core/version.h ./core/compress.cpp ./core/plugindata.h ./core/request.h ./core/plugin.cpp ./core/sessionparser.cpp ./core/bbcodeparser.h ./core/users.cpp ./core/basethread.cpp ./core/mount.cpp ./core/acceptbaseparser.cpp ./core/httpsimpleparser.h ./core/lastcontainer.h ./core/groups.cpp ./core/requesttypes.h ./core/crypt.h ./core/system.h ./core/bbcodeparser.cpp ./core/run.h ./core/group.h ./core/slog.h ./core/plugin.h ./core/sessionparser.h ./core/textstream.h ./core/mount.h ./core/basethread.h ./core/htmlfilter.cpp ./core/image.h ./core/app.cpp ./core/postmultiparser.h ./core/ugcontainer.h ./core/log.h ./core/dircontainer.h ./core/sessioncontainer.cpp ./core/session.h ./core/mounts.h ./core/threadmanager.cpp ./core/crypt.cpp ./core/slog.cpp ./core/threadmanager.h ./core/run.cpp ./core/image.cpp ./core/logmanipulators.h ./core/job.cpp ./core/job.h ./core/user.cpp ./core/timezone.h ./core/timezone.cpp ./core/timezones.cpp ./core/timezones.h ./core/cur.h ./core/lock.h ./core/lock.cpp ./core/ipbancontainer.h ./core/ipbancontainer.cpp ./core/ipban.h ./core/misc.h ./db/dbitemquery.h ./db/dbbase.cpp ./db/dbconn.cpp ./db/db.cpp ./db/dbbase.h ./db/dbitemcolumns.cpp ./db/dbtextstream.cpp ./db/dbconn.h ./db/db.h ./db/dbitemcolumns.h ./db/dbitemquery.cpp ./db/dbtextstream.h ./notify/notifythread.cpp ./notify/notifypool.cpp ./notify/notifythread.h ./notify/notifypool.h ./notify/templatesnotify.cpp ./notify/notify.cpp ./notify/templatesnotify.h ./notify/notify.h ./templates/locale.cpp ./templates/misc.h ./templates/mount.cpp ./templates/templates.h ./templates/last.cpp ./templates/uptime.cpp ./templates/doc.cpp ./templates/filters.cpp ./templates/localefilter.h ./templates/ls.cpp ./templates/dir.cpp ./templates/rebus.cpp ./templates/priv.cpp ./templates/patterncacher.cpp ./templates/htmltextstream.cpp ./templates/patterns.cpp ./templates/adduser.cpp ./templates/misc.cpp ./templates/indexpatterns.h ./templates/winix.cpp ./templates/item.cpp ./templates/templates.cpp ./templates/locale.h ./templates/localefilter.cpp ./templates/stat.cpp ./templates/template.cpp ./templates/user.cpp ./templates/sys.cpp ./templates/upload.cpp ./templates/patterncacher.h ./templates/indexpatterns.cpp ./templates/htmltextstream.h ./templates/who.cpp ./templates/insert.cpp ./templates/changepatterns.cpp ./templates/login.cpp ./templates/slog.cpp ./templates/patterns.h ./templates/config.cpp ./templates/changepatterns.h ./templates/passwd.cpp ./templates/man.cpp ./templates/miscspace.cpp ./templates/miscspace.h ./templates/env.cpp ./templates/textextstream.h ./templates/textextstream.cpp ./templates/ipban.cpp ../ezc/src/item.cpp ../ezc/src/stringconv.h ../ezc/src/pattern.h ../ezc/src/item.h ../ezc/src/ezc.h ../ezc/src/funinfo.h ../ezc/src/generator.h ../ezc/src/stringconv.cpp ../ezc/src/functions.h ../ezc/src/pattern.cpp ../tito/src/crypto.cpp ../tito/src/misc.h ../tito/src/base64.cpp ../tito/src/crypto.h ../tito/src/aes.cpp ../tito/src/base64.h ../tito/src/misc.cpp ../tito/src/aes.h ../pikotools/mainparser/sample/sample.cpp ../pikotools/mainparser/mainparser.cpp ../pikotools/mainparser/mainparser.h ../pikotools/space/space.h ../pikotools/space/spaceparser.cpp ../pikotools/space/space.cpp ../pikotools/space/spaceparser.h ../pikotools/space/jsontospaceparser.cpp ../pikotools/space/spacetojson.cpp ../pikotools/space/jsontospaceparser.h ../pikotools/space/spacetojson.h ../pikotools/date/date.h ../pikotools/date/date.cpp ../pikotools/membuffer/membuffer.h ../pikotools/utf8/utf8.cpp ../pikotools/utf8/utf8.h ../pikotools/textstream/textstream.h ../pikotools/textstream/types.h ../pikotools/convert/convert.h ../pikotools/convert/inttostr.h \ No newline at end of file diff --git a/core/Makefile b/core/Makefile index 14f7631..f25e1fc 100755 --- a/core/Makefile +++ b/core/Makefile @@ -5,11 +5,11 @@ all: $(o) %.o: %.cpp - $(CXX) -c $(CXXFLAGS) $< + $(CXX) -c $(CXXFLAGS) $(CXXWINIXINCLUDEFLAGS) $< depend: - makedepend -Y. -I.. -I../../ezc/src -I../../pikotools -I../../tito/src -f- *.cpp > Makefile.dep + makedepend -Y. $(CXXWINIXINCLUDEFLAGS) -f- *.cpp > Makefile.dep echo -n "o = " > Makefile.o.dep ls -1 *.cpp | xargs -I foo echo -n foo " " | sed -E "s/([^\.]*)\.cpp[ ]/\1\.o/g" >> Makefile.o.dep diff --git a/core/Makefile.dep b/core/Makefile.dep index 34838aa..197c429 100755 --- a/core/Makefile.dep +++ b/core/Makefile.dep @@ -5,51 +5,64 @@ app.o: app.h config.h ../../pikotools/space/spaceparser.h app.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h app.o: htmlfilter.h system.h job.h basethread.h synchro.h app.o: ../../pikotools/space/space.h dirs.h item.h -app.o: ../../pikotools/date/date.h dircontainer.h ../db/db.h ../db/dbbase.h -app.o: ../db/dbconn.h ../db/dbtextstream.h ../core/textstream.h misc.h +app.o: ../../pikotools/date/date.h dircontainer.h ../../winix/db/db.h +app.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +app.o: ../../winix/db/dbtextstream.h ../../winix/core/textstream.h misc.h app.o: requesttypes.h ../../pikotools/textstream/textstream.h app.o: ../../pikotools/convert/convert.h ../../pikotools/convert/inttostr.h app.o: ../../pikotools/membuffer/membuffer.h app.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -app.o: ../core/error.h ../db/dbitemquery.h ../core/item.h -app.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -app.o: ../core/dircontainer.h ../core/ugcontainer.h log.h textstream.h -app.o: logmanipulators.h slog.h cur.h request.h error.h -app.o: ../templates/htmltextstream.h ../../pikotools/space/spacetojson.h -app.o: session.h user.h plugindata.h rebus.h ipban.h mount.h -app.o: ../templates/locale.h ../notify/notify.h ../notify/notifypool.h -app.o: ../templates/patterns.h ../templates/locale.h -app.o: ../templates/localefilter.h ../../ezc/src/ezc.h +app.o: ../../winix/core/error.h ../../winix/db/dbitemquery.h +app.o: ../../winix/core/item.h ../../winix/db/dbitemcolumns.h +app.o: ../../winix/core/user.h ../../winix/core/group.h +app.o: ../../winix/core/dircontainer.h ../../winix/core/ugcontainer.h log.h +app.o: textstream.h logmanipulators.h slog.h cur.h request.h error.h +app.o: ../../winix/templates/htmltextstream.h +app.o: ../../pikotools/space/spacetojson.h session.h user.h plugindata.h +app.o: rebus.h ipban.h mount.h ../../winix/templates/locale.h +app.o: ../../winix/notify/notify.h ../../winix/notify/notifypool.h +app.o: ../../winix/templates/patterns.h ../../winix/templates/locale.h +app.o: ../../winix/templates/localefilter.h ../../ezc/src/ezc.h app.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h app.o: ../../ezc/src/functions.h ../../ezc/src/funinfo.h -app.o: ../../ezc/src/stringconv.h ../notify/notifythread.h -app.o: ../core/basethread.h ../notify/templatesnotify.h ../core/config.h -app.o: ../core/users.h ugcontainer.h lastcontainer.h mounts.h mountparser.h -app.o: crypt.h run.h users.h groups.h group.h loadavg.h image.h -app.o: threadmanager.h timezones.h timezone.h sessionmanager.h -app.o: sessioncontainer.h ipbancontainer.h ../functions/functions.h -app.o: ../functions/functionbase.h ../core/request.h ../core/system.h -app.o: ../core/synchro.h ../functions/functionparser.h ../core/cur.h -app.o: ../functions/account.h ../functions/adduser.h ../functions/cat.h -app.o: ../functions/chmod.h ../functions/privchanger.h ../functions/chown.h -app.o: ../functions/ckeditor.h ../functions/cp.h ../functions/default.h -app.o: ../functions/download.h ../functions/emacs.h ../functions/env.h -app.o: ../functions/imgcrop.h ../functions/last.h ../functions/login.h -app.o: ../functions/logout.h ../functions/ln.h ../functions/ls.h -app.o: ../functions/man.h ../functions/meta.h ../functions/mkdir.h -app.o: ../functions/mv.h ../functions/nicedit.h ../functions/node.h -app.o: ../functions/passwd.h ../functions/priv.h ../functions/pw.h -app.o: ../functions/reload.h ../functions/rm.h ../functions/rmuser.h -app.o: ../functions/sort.h ../functions/specialdefault.h ../functions/stat.h -app.o: ../functions/subject.h ../functions/template.h ../functions/tinymce.h -app.o: ../functions/uname.h ../functions/upload.h ../functions/uptime.h -app.o: ../functions/who.h ../functions/vim.h ../core/htmlfilter.h -app.o: ../templates/templates.h ../templates/patterncacher.h -app.o: ../templates/indexpatterns.h ../templates/patterns.h -app.o: ../templates/changepatterns.h ../templates/htmltextstream.h -app.o: ../core/sessionmanager.h compress.h postparser.h httpsimpleparser.h -app.o: plugin.h pluginmsg.h cookieparser.h postmultiparser.h -app.o: acceptencodingparser.h acceptbaseparser.h +app.o: ../../ezc/src/stringconv.h ../../winix/notify/notifythread.h +app.o: ../../winix/core/basethread.h ../../winix/notify/templatesnotify.h +app.o: ../../winix/core/config.h ../../winix/core/users.h ugcontainer.h +app.o: lastcontainer.h mounts.h mountparser.h crypt.h run.h users.h groups.h +app.o: group.h loadavg.h image.h threadmanager.h timezones.h timezone.h +app.o: sessionmanager.h sessioncontainer.h ipbancontainer.h +app.o: ../../winix/functions/functions.h ../../winix/functions/functionbase.h +app.o: ../../winix/core/request.h ../../winix/core/system.h +app.o: ../../winix/core/synchro.h ../../winix/functions/functionparser.h +app.o: ../../winix/core/cur.h ../../winix/functions/account.h +app.o: ../../winix/functions/adduser.h ../../winix/functions/cat.h +app.o: ../../winix/functions/chmod.h ../../winix/functions/privchanger.h +app.o: ../../winix/functions/chown.h ../../winix/functions/ckeditor.h +app.o: ../../winix/functions/cp.h ../../winix/functions/default.h +app.o: ../../winix/functions/download.h ../../winix/functions/emacs.h +app.o: ../../winix/functions/env.h ../../winix/functions/imgcrop.h +app.o: ../../winix/functions/last.h ../../winix/functions/login.h +app.o: ../../winix/functions/logout.h ../../winix/functions/ln.h +app.o: ../../winix/functions/ls.h ../../winix/functions/man.h +app.o: ../../winix/functions/meta.h ../../winix/functions/mkdir.h +app.o: ../../winix/functions/mv.h ../../winix/functions/nicedit.h +app.o: ../../winix/functions/node.h ../../winix/functions/passwd.h +app.o: ../../winix/functions/priv.h ../../winix/functions/pw.h +app.o: ../../winix/functions/reload.h ../../winix/functions/rm.h +app.o: ../../winix/functions/rmuser.h ../../winix/functions/sort.h +app.o: ../../winix/functions/specialdefault.h ../../winix/functions/stat.h +app.o: ../../winix/functions/subject.h ../../winix/functions/template.h +app.o: ../../winix/functions/tinymce.h ../../winix/functions/uname.h +app.o: ../../winix/functions/upload.h ../../winix/functions/uptime.h +app.o: ../../winix/functions/who.h ../../winix/functions/vim.h +app.o: ../../winix/core/htmlfilter.h ../../winix/templates/templates.h +app.o: ../../winix/templates/patterncacher.h +app.o: ../../winix/templates/indexpatterns.h ../../winix/templates/patterns.h +app.o: ../../winix/templates/changepatterns.h +app.o: ../../winix/templates/htmltextstream.h +app.o: ../../winix/core/sessionmanager.h compress.h postparser.h +app.o: httpsimpleparser.h plugin.h pluginmsg.h cookieparser.h +app.o: postmultiparser.h acceptencodingparser.h acceptbaseparser.h basethread.o: basethread.h synchro.h bbcodeparser.o: bbcodeparser.h htmlfilter.h compress.o: compress.h requesttypes.h ../../pikotools/textstream/textstream.h @@ -61,10 +74,10 @@ compress.o: ../../pikotools/textstream/types.h log.h textstream.h compress.o: logmanipulators.h slog.h cur.h request.h item.h error.h config.h compress.o: ../../pikotools/space/spaceparser.h ../../pikotools/space/space.h compress.o: ../../pikotools/textstream/types.h htmlfilter.h -compress.o: ../templates/htmltextstream.h ../core/textstream.h misc.h -compress.o: ../../pikotools/utf8/utf8.h ../../pikotools/space/spacetojson.h -compress.o: session.h user.h plugindata.h rebus.h ipban.h mount.h -compress.o: ../templates/locale.h +compress.o: ../../winix/templates/htmltextstream.h +compress.o: ../../winix/core/textstream.h misc.h ../../pikotools/utf8/utf8.h +compress.o: ../../pikotools/space/spacetojson.h session.h user.h plugindata.h +compress.o: rebus.h ipban.h mount.h ../../winix/templates/locale.h config.o: config.h ../../pikotools/space/spaceparser.h config.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h config.o: htmlfilter.h log.h textstream.h logmanipulators.h @@ -74,47 +87,61 @@ config.o: ../../pikotools/convert/convert.h config.o: ../../pikotools/convert/inttostr.h config.o: ../../pikotools/membuffer/membuffer.h config.o: ../../pikotools/textstream/types.h slog.h cur.h request.h -config.o: requesttypes.h item.h error.h ../templates/htmltextstream.h -config.o: ../core/textstream.h misc.h ../../pikotools/utf8/utf8.h +config.o: requesttypes.h item.h error.h +config.o: ../../winix/templates/htmltextstream.h +config.o: ../../winix/core/textstream.h misc.h ../../pikotools/utf8/utf8.h config.o: ../../pikotools/space/spacetojson.h session.h user.h plugindata.h -config.o: rebus.h ipban.h mount.h ../templates/locale.h plugin.h pluginmsg.h -config.o: system.h job.h basethread.h synchro.h dirs.h dircontainer.h -config.o: ../db/db.h ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h -config.o: ../core/error.h ../db/dbitemquery.h ../core/item.h -config.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -config.o: ../core/dircontainer.h ../core/ugcontainer.h ../notify/notify.h -config.o: ../notify/notifypool.h ../templates/patterns.h -config.o: ../templates/locale.h ../templates/localefilter.h -config.o: ../../ezc/src/ezc.h ../../ezc/src/generator.h -config.o: ../../ezc/src/pattern.h ../../ezc/src/functions.h -config.o: ../../ezc/src/funinfo.h ../../ezc/src/stringconv.h -config.o: ../notify/notifythread.h ../core/basethread.h -config.o: ../notify/templatesnotify.h ../core/config.h ../core/users.h -config.o: ugcontainer.h lastcontainer.h mounts.h mountparser.h crypt.h run.h -config.o: users.h groups.h group.h loadavg.h image.h threadmanager.h -config.o: timezones.h timezone.h sessionmanager.h sessioncontainer.h -config.o: ipbancontainer.h ../functions/functions.h -config.o: ../functions/functionbase.h ../core/request.h ../core/system.h -config.o: ../core/synchro.h ../functions/functionparser.h ../core/cur.h -config.o: ../functions/account.h ../functions/adduser.h ../functions/cat.h -config.o: ../functions/chmod.h ../functions/privchanger.h -config.o: ../functions/chown.h ../functions/ckeditor.h ../functions/cp.h -config.o: ../functions/default.h ../functions/download.h ../functions/emacs.h -config.o: ../functions/env.h ../functions/imgcrop.h ../functions/last.h -config.o: ../functions/login.h ../functions/logout.h ../functions/ln.h -config.o: ../functions/ls.h ../functions/man.h ../functions/meta.h -config.o: ../functions/mkdir.h ../functions/mv.h ../functions/nicedit.h -config.o: ../functions/node.h ../functions/passwd.h ../functions/priv.h -config.o: ../functions/pw.h ../functions/reload.h ../functions/rm.h -config.o: ../functions/rmuser.h ../functions/sort.h -config.o: ../functions/specialdefault.h ../functions/stat.h -config.o: ../functions/subject.h ../functions/template.h -config.o: ../functions/tinymce.h ../functions/uname.h ../functions/upload.h -config.o: ../functions/uptime.h ../functions/who.h ../functions/vim.h -config.o: ../core/htmlfilter.h ../templates/templates.h -config.o: ../templates/patterncacher.h ../templates/indexpatterns.h -config.o: ../templates/patterns.h ../templates/changepatterns.h -config.o: ../templates/htmltextstream.h ../core/sessionmanager.h +config.o: rebus.h ipban.h mount.h ../../winix/templates/locale.h plugin.h +config.o: pluginmsg.h system.h job.h basethread.h synchro.h dirs.h +config.o: dircontainer.h ../../winix/db/db.h ../../winix/db/dbbase.h +config.o: ../../winix/db/dbconn.h ../../winix/db/dbtextstream.h +config.o: ../../winix/core/error.h ../../winix/db/dbitemquery.h +config.o: ../../winix/core/item.h ../../winix/db/dbitemcolumns.h +config.o: ../../winix/core/user.h ../../winix/core/group.h +config.o: ../../winix/core/dircontainer.h ../../winix/core/ugcontainer.h +config.o: ../../winix/notify/notify.h ../../winix/notify/notifypool.h +config.o: ../../winix/templates/patterns.h ../../winix/templates/locale.h +config.o: ../../winix/templates/localefilter.h ../../ezc/src/ezc.h +config.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h +config.o: ../../ezc/src/functions.h ../../ezc/src/funinfo.h +config.o: ../../ezc/src/stringconv.h ../../winix/notify/notifythread.h +config.o: ../../winix/core/basethread.h ../../winix/notify/templatesnotify.h +config.o: ../../winix/core/config.h ../../winix/core/users.h ugcontainer.h +config.o: lastcontainer.h mounts.h mountparser.h crypt.h run.h users.h +config.o: groups.h group.h loadavg.h image.h threadmanager.h timezones.h +config.o: timezone.h sessionmanager.h sessioncontainer.h ipbancontainer.h +config.o: ../../winix/functions/functions.h +config.o: ../../winix/functions/functionbase.h ../../winix/core/request.h +config.o: ../../winix/core/system.h ../../winix/core/synchro.h +config.o: ../../winix/functions/functionparser.h ../../winix/core/cur.h +config.o: ../../winix/functions/account.h ../../winix/functions/adduser.h +config.o: ../../winix/functions/cat.h ../../winix/functions/chmod.h +config.o: ../../winix/functions/privchanger.h ../../winix/functions/chown.h +config.o: ../../winix/functions/ckeditor.h ../../winix/functions/cp.h +config.o: ../../winix/functions/default.h ../../winix/functions/download.h +config.o: ../../winix/functions/emacs.h ../../winix/functions/env.h +config.o: ../../winix/functions/imgcrop.h ../../winix/functions/last.h +config.o: ../../winix/functions/login.h ../../winix/functions/logout.h +config.o: ../../winix/functions/ln.h ../../winix/functions/ls.h +config.o: ../../winix/functions/man.h ../../winix/functions/meta.h +config.o: ../../winix/functions/mkdir.h ../../winix/functions/mv.h +config.o: ../../winix/functions/nicedit.h ../../winix/functions/node.h +config.o: ../../winix/functions/passwd.h ../../winix/functions/priv.h +config.o: ../../winix/functions/pw.h ../../winix/functions/reload.h +config.o: ../../winix/functions/rm.h ../../winix/functions/rmuser.h +config.o: ../../winix/functions/sort.h ../../winix/functions/specialdefault.h +config.o: ../../winix/functions/stat.h ../../winix/functions/subject.h +config.o: ../../winix/functions/template.h ../../winix/functions/tinymce.h +config.o: ../../winix/functions/uname.h ../../winix/functions/upload.h +config.o: ../../winix/functions/uptime.h ../../winix/functions/who.h +config.o: ../../winix/functions/vim.h ../../winix/core/htmlfilter.h +config.o: ../../winix/templates/templates.h +config.o: ../../winix/templates/patterncacher.h +config.o: ../../winix/templates/indexpatterns.h +config.o: ../../winix/templates/patterns.h +config.o: ../../winix/templates/changepatterns.h +config.o: ../../winix/templates/htmltextstream.h +config.o: ../../winix/core/sessionmanager.h crypt.o: crypt.h run.h config.h ../../pikotools/space/spaceparser.h crypt.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h crypt.o: htmlfilter.h user.h ../../pikotools/utf8/utf8.h log.h textstream.h @@ -123,9 +150,10 @@ crypt.o: ../../pikotools/space/space.h ../../pikotools/date/date.h crypt.o: ../../pikotools/convert/convert.h ../../pikotools/convert/inttostr.h crypt.o: ../../pikotools/membuffer/membuffer.h crypt.o: ../../pikotools/textstream/types.h slog.h cur.h request.h -crypt.o: requesttypes.h item.h error.h ../templates/htmltextstream.h -crypt.o: ../core/textstream.h misc.h ../../pikotools/space/spacetojson.h -crypt.o: session.h plugindata.h rebus.h ipban.h mount.h ../templates/locale.h +crypt.o: requesttypes.h item.h error.h ../../winix/templates/htmltextstream.h +crypt.o: ../../winix/core/textstream.h misc.h +crypt.o: ../../pikotools/space/spacetojson.h session.h plugindata.h rebus.h +crypt.o: ipban.h mount.h ../../winix/templates/locale.h dircontainer.o: dircontainer.h item.h ../../pikotools/space/space.h dircontainer.o: ../../pikotools/date/date.h log.h textstream.h dircontainer.o: logmanipulators.h ../../pikotools/textstream/textstream.h @@ -137,99 +165,122 @@ dircontainer.o: requesttypes.h error.h config.h dircontainer.o: ../../pikotools/space/spaceparser.h dircontainer.o: ../../pikotools/space/space.h dircontainer.o: ../../pikotools/textstream/types.h htmlfilter.h -dircontainer.o: ../templates/htmltextstream.h ../core/textstream.h misc.h +dircontainer.o: ../../winix/templates/htmltextstream.h +dircontainer.o: ../../winix/core/textstream.h misc.h dircontainer.o: ../../pikotools/utf8/utf8.h dircontainer.o: ../../pikotools/space/spacetojson.h session.h user.h -dircontainer.o: plugindata.h rebus.h ipban.h mount.h ../templates/locale.h +dircontainer.o: plugindata.h rebus.h ipban.h mount.h +dircontainer.o: ../../winix/templates/locale.h dirs.o: dirs.h item.h ../../pikotools/space/space.h -dirs.o: ../../pikotools/date/date.h dircontainer.h ../db/db.h ../db/dbbase.h -dirs.o: ../db/dbconn.h ../db/dbtextstream.h ../core/textstream.h misc.h +dirs.o: ../../pikotools/date/date.h dircontainer.h ../../winix/db/db.h +dirs.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +dirs.o: ../../winix/db/dbtextstream.h ../../winix/core/textstream.h misc.h dirs.o: requesttypes.h ../../pikotools/textstream/textstream.h dirs.o: ../../pikotools/convert/convert.h ../../pikotools/convert/inttostr.h dirs.o: ../../pikotools/membuffer/membuffer.h dirs.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -dirs.o: ../core/error.h ../../pikotools/space/spaceparser.h +dirs.o: ../../winix/core/error.h ../../pikotools/space/spaceparser.h dirs.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h -dirs.o: ../db/dbitemquery.h ../core/item.h ../db/dbitemcolumns.h -dirs.o: ../core/user.h ../core/group.h ../core/dircontainer.h -dirs.o: ../core/ugcontainer.h log.h textstream.h logmanipulators.h slog.h -dirs.o: cur.h request.h error.h config.h htmlfilter.h -dirs.o: ../templates/htmltextstream.h ../../pikotools/space/spacetojson.h -dirs.o: session.h user.h plugindata.h rebus.h ipban.h mount.h -dirs.o: ../templates/locale.h ../notify/notify.h ../notify/notifypool.h -dirs.o: ../templates/patterns.h ../templates/locale.h -dirs.o: ../templates/localefilter.h ../../ezc/src/ezc.h +dirs.o: ../../winix/db/dbitemquery.h ../../winix/core/item.h +dirs.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +dirs.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +dirs.o: ../../winix/core/ugcontainer.h log.h textstream.h logmanipulators.h +dirs.o: slog.h cur.h request.h error.h config.h htmlfilter.h +dirs.o: ../../winix/templates/htmltextstream.h +dirs.o: ../../pikotools/space/spacetojson.h session.h user.h plugindata.h +dirs.o: rebus.h ipban.h mount.h ../../winix/templates/locale.h +dirs.o: ../../winix/notify/notify.h ../../winix/notify/notifypool.h +dirs.o: ../../winix/templates/patterns.h ../../winix/templates/locale.h +dirs.o: ../../winix/templates/localefilter.h ../../ezc/src/ezc.h dirs.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h dirs.o: ../../ezc/src/functions.h ../../ezc/src/funinfo.h -dirs.o: ../../ezc/src/stringconv.h ../notify/notifythread.h -dirs.o: ../core/basethread.h ../notify/templatesnotify.h ../core/config.h -dirs.o: ../core/users.h ugcontainer.h lastcontainer.h -groups.o: groups.h group.h ugcontainer.h ../db/db.h ../db/dbbase.h -groups.o: ../db/dbconn.h ../db/dbtextstream.h ../core/textstream.h misc.h +dirs.o: ../../ezc/src/stringconv.h ../../winix/notify/notifythread.h +dirs.o: ../../winix/core/basethread.h ../../winix/notify/templatesnotify.h +dirs.o: ../../winix/core/config.h ../../winix/core/users.h ugcontainer.h +dirs.o: lastcontainer.h +groups.o: groups.h group.h ugcontainer.h ../../winix/db/db.h +groups.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +groups.o: ../../winix/db/dbtextstream.h ../../winix/core/textstream.h misc.h groups.o: item.h ../../pikotools/space/space.h ../../pikotools/date/date.h groups.o: requesttypes.h ../../pikotools/textstream/textstream.h groups.o: ../../pikotools/convert/convert.h groups.o: ../../pikotools/convert/inttostr.h groups.o: ../../pikotools/membuffer/membuffer.h groups.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -groups.o: ../core/error.h ../../pikotools/space/spaceparser.h +groups.o: ../../winix/core/error.h ../../pikotools/space/spaceparser.h groups.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h -groups.o: ../db/dbitemquery.h ../core/item.h ../db/dbitemcolumns.h -groups.o: ../core/user.h ../core/group.h ../core/dircontainer.h -groups.o: ../core/ugcontainer.h log.h textstream.h logmanipulators.h slog.h -groups.o: cur.h request.h error.h config.h htmlfilter.h -groups.o: ../templates/htmltextstream.h ../../pikotools/space/spacetojson.h -groups.o: session.h user.h plugindata.h rebus.h ipban.h mount.h -groups.o: ../templates/locale.h +groups.o: ../../winix/db/dbitemquery.h ../../winix/core/item.h +groups.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +groups.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +groups.o: ../../winix/core/ugcontainer.h log.h textstream.h logmanipulators.h +groups.o: slog.h cur.h request.h error.h config.h htmlfilter.h +groups.o: ../../winix/templates/htmltextstream.h +groups.o: ../../pikotools/space/spacetojson.h session.h user.h plugindata.h +groups.o: rebus.h ipban.h mount.h ../../winix/templates/locale.h htmlfilter.o: htmlfilter.h httpsimpleparser.o: httpsimpleparser.h -image.o: image.h basethread.h synchro.h textstream.h ../db/db.h -image.o: ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h -image.o: ../core/textstream.h misc.h item.h ../../pikotools/space/space.h -image.o: ../../pikotools/date/date.h requesttypes.h -image.o: ../../pikotools/textstream/textstream.h +image.o: image.h basethread.h synchro.h textstream.h ../../winix/db/db.h +image.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +image.o: ../../winix/db/dbtextstream.h ../../winix/core/textstream.h misc.h +image.o: item.h ../../pikotools/space/space.h ../../pikotools/date/date.h +image.o: requesttypes.h ../../pikotools/textstream/textstream.h image.o: ../../pikotools/convert/convert.h ../../pikotools/convert/inttostr.h image.o: ../../pikotools/membuffer/membuffer.h image.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -image.o: ../core/error.h ../../pikotools/space/spaceparser.h +image.o: ../../winix/core/error.h ../../pikotools/space/spaceparser.h image.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h -image.o: ../db/dbitemquery.h ../core/item.h ../db/dbitemcolumns.h -image.o: ../core/user.h ../core/group.h ../core/dircontainer.h -image.o: ../core/ugcontainer.h log.h logmanipulators.h slog.h cur.h request.h -image.o: error.h config.h htmlfilter.h ../templates/htmltextstream.h +image.o: ../../winix/db/dbitemquery.h ../../winix/core/item.h +image.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +image.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +image.o: ../../winix/core/ugcontainer.h log.h logmanipulators.h slog.h cur.h +image.o: request.h error.h config.h htmlfilter.h +image.o: ../../winix/templates/htmltextstream.h image.o: ../../pikotools/space/spacetojson.h session.h user.h plugindata.h -image.o: rebus.h ipban.h mount.h ../templates/locale.h ../core/config.h -image.o: system.h job.h dirs.h dircontainer.h ../notify/notify.h -image.o: ../notify/notifypool.h ../templates/patterns.h ../templates/locale.h -image.o: ../templates/localefilter.h ../../ezc/src/ezc.h +image.o: rebus.h ipban.h mount.h ../../winix/templates/locale.h +image.o: ../../winix/core/config.h system.h job.h dirs.h dircontainer.h +image.o: ../../winix/notify/notify.h ../../winix/notify/notifypool.h +image.o: ../../winix/templates/patterns.h ../../winix/templates/locale.h +image.o: ../../winix/templates/localefilter.h ../../ezc/src/ezc.h image.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h image.o: ../../ezc/src/functions.h ../../ezc/src/funinfo.h -image.o: ../../ezc/src/stringconv.h ../notify/notifythread.h -image.o: ../core/basethread.h ../notify/templatesnotify.h ../core/users.h -image.o: ugcontainer.h lastcontainer.h mounts.h mountparser.h crypt.h run.h -image.o: users.h groups.h group.h loadavg.h threadmanager.h timezones.h -image.o: timezone.h plugin.h pluginmsg.h sessionmanager.h sessioncontainer.h -image.o: ipbancontainer.h ../functions/functions.h -image.o: ../functions/functionbase.h ../core/request.h ../core/system.h -image.o: ../core/synchro.h ../functions/functionparser.h ../core/cur.h -image.o: ../functions/account.h ../functions/adduser.h ../functions/cat.h -image.o: ../functions/chmod.h ../functions/privchanger.h ../functions/chown.h -image.o: ../functions/ckeditor.h ../functions/cp.h ../functions/default.h -image.o: ../functions/download.h ../functions/emacs.h ../functions/env.h -image.o: ../functions/imgcrop.h ../functions/last.h ../functions/login.h -image.o: ../functions/logout.h ../functions/ln.h ../functions/ls.h -image.o: ../functions/man.h ../functions/meta.h ../functions/mkdir.h -image.o: ../functions/mv.h ../functions/nicedit.h ../functions/node.h -image.o: ../functions/passwd.h ../functions/priv.h ../functions/pw.h -image.o: ../functions/reload.h ../functions/rm.h ../functions/rmuser.h -image.o: ../functions/sort.h ../functions/specialdefault.h -image.o: ../functions/stat.h ../functions/subject.h ../functions/template.h -image.o: ../functions/tinymce.h ../functions/uname.h ../functions/upload.h -image.o: ../functions/uptime.h ../functions/who.h ../functions/vim.h -image.o: ../core/htmlfilter.h ../templates/templates.h -image.o: ../templates/patterncacher.h ../templates/indexpatterns.h -image.o: ../templates/patterns.h ../templates/changepatterns.h -image.o: ../templates/htmltextstream.h ../core/sessionmanager.h lock.h +image.o: ../../ezc/src/stringconv.h ../../winix/notify/notifythread.h +image.o: ../../winix/core/basethread.h ../../winix/notify/templatesnotify.h +image.o: ../../winix/core/users.h ugcontainer.h lastcontainer.h mounts.h +image.o: mountparser.h crypt.h run.h users.h groups.h group.h loadavg.h +image.o: threadmanager.h timezones.h timezone.h plugin.h pluginmsg.h +image.o: sessionmanager.h sessioncontainer.h ipbancontainer.h +image.o: ../../winix/functions/functions.h +image.o: ../../winix/functions/functionbase.h ../../winix/core/request.h +image.o: ../../winix/core/system.h ../../winix/core/synchro.h +image.o: ../../winix/functions/functionparser.h ../../winix/core/cur.h +image.o: ../../winix/functions/account.h ../../winix/functions/adduser.h +image.o: ../../winix/functions/cat.h ../../winix/functions/chmod.h +image.o: ../../winix/functions/privchanger.h ../../winix/functions/chown.h +image.o: ../../winix/functions/ckeditor.h ../../winix/functions/cp.h +image.o: ../../winix/functions/default.h ../../winix/functions/download.h +image.o: ../../winix/functions/emacs.h ../../winix/functions/env.h +image.o: ../../winix/functions/imgcrop.h ../../winix/functions/last.h +image.o: ../../winix/functions/login.h ../../winix/functions/logout.h +image.o: ../../winix/functions/ln.h ../../winix/functions/ls.h +image.o: ../../winix/functions/man.h ../../winix/functions/meta.h +image.o: ../../winix/functions/mkdir.h ../../winix/functions/mv.h +image.o: ../../winix/functions/nicedit.h ../../winix/functions/node.h +image.o: ../../winix/functions/passwd.h ../../winix/functions/priv.h +image.o: ../../winix/functions/pw.h ../../winix/functions/reload.h +image.o: ../../winix/functions/rm.h ../../winix/functions/rmuser.h +image.o: ../../winix/functions/sort.h ../../winix/functions/specialdefault.h +image.o: ../../winix/functions/stat.h ../../winix/functions/subject.h +image.o: ../../winix/functions/template.h ../../winix/functions/tinymce.h +image.o: ../../winix/functions/uname.h ../../winix/functions/upload.h +image.o: ../../winix/functions/uptime.h ../../winix/functions/who.h +image.o: ../../winix/functions/vim.h ../../winix/core/htmlfilter.h +image.o: ../../winix/templates/templates.h +image.o: ../../winix/templates/patterncacher.h +image.o: ../../winix/templates/indexpatterns.h +image.o: ../../winix/templates/patterns.h +image.o: ../../winix/templates/changepatterns.h +image.o: ../../winix/templates/htmltextstream.h +image.o: ../../winix/core/sessionmanager.h lock.h ipbancontainer.o: ipbancontainer.h ipban.h log.h textstream.h ipbancontainer.o: logmanipulators.h ../../pikotools/textstream/textstream.h ipbancontainer.o: ../../pikotools/space/space.h ../../pikotools/date/date.h @@ -241,10 +292,11 @@ ipbancontainer.o: requesttypes.h item.h error.h config.h ipbancontainer.o: ../../pikotools/space/spaceparser.h ipbancontainer.o: ../../pikotools/space/space.h ipbancontainer.o: ../../pikotools/textstream/types.h htmlfilter.h -ipbancontainer.o: ../templates/htmltextstream.h ../core/textstream.h misc.h +ipbancontainer.o: ../../winix/templates/htmltextstream.h +ipbancontainer.o: ../../winix/core/textstream.h misc.h ipbancontainer.o: ../../pikotools/utf8/utf8.h ipbancontainer.o: ../../pikotools/space/spacetojson.h session.h user.h -ipbancontainer.o: plugindata.h rebus.h mount.h ../templates/locale.h +ipbancontainer.o: plugindata.h rebus.h mount.h ../../winix/templates/locale.h item.o: item.h ../../pikotools/space/space.h ../../pikotools/date/date.h item.o: misc.h requesttypes.h ../../pikotools/textstream/textstream.h item.o: ../../pikotools/convert/convert.h ../../pikotools/convert/inttostr.h @@ -262,44 +314,56 @@ job.o: ../../pikotools/textstream/types.h slog.h cur.h request.h job.o: requesttypes.h item.h error.h config.h job.o: ../../pikotools/space/spaceparser.h ../../pikotools/space/space.h job.o: ../../pikotools/textstream/types.h htmlfilter.h -job.o: ../templates/htmltextstream.h ../core/textstream.h misc.h -job.o: ../../pikotools/utf8/utf8.h ../../pikotools/space/spacetojson.h +job.o: ../../winix/templates/htmltextstream.h ../../winix/core/textstream.h +job.o: misc.h ../../pikotools/utf8/utf8.h ../../pikotools/space/spacetojson.h job.o: session.h user.h plugindata.h rebus.h ipban.h mount.h -job.o: ../templates/locale.h system.h dirs.h dircontainer.h ../db/db.h -job.o: ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h ../core/error.h -job.o: ../db/dbitemquery.h ../core/item.h ../db/dbitemcolumns.h -job.o: ../core/user.h ../core/group.h ../core/dircontainer.h -job.o: ../core/ugcontainer.h ../notify/notify.h ../notify/notifypool.h -job.o: ../templates/patterns.h ../templates/locale.h -job.o: ../templates/localefilter.h ../../ezc/src/ezc.h -job.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h +job.o: ../../winix/templates/locale.h system.h dirs.h dircontainer.h +job.o: ../../winix/db/db.h ../../winix/db/dbbase.h ../../winix/db/dbconn.h +job.o: ../../winix/db/dbtextstream.h ../../winix/core/error.h +job.o: ../../winix/db/dbitemquery.h ../../winix/core/item.h +job.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +job.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +job.o: ../../winix/core/ugcontainer.h ../../winix/notify/notify.h +job.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +job.o: ../../winix/templates/locale.h ../../winix/templates/localefilter.h +job.o: ../../ezc/src/ezc.h ../../ezc/src/generator.h ../../ezc/src/pattern.h job.o: ../../ezc/src/functions.h ../../ezc/src/funinfo.h -job.o: ../../ezc/src/stringconv.h ../notify/notifythread.h -job.o: ../core/basethread.h ../notify/templatesnotify.h ../core/config.h -job.o: ../core/users.h ugcontainer.h lastcontainer.h mounts.h mountparser.h -job.o: crypt.h run.h users.h groups.h group.h loadavg.h image.h -job.o: threadmanager.h timezones.h timezone.h sessionmanager.h -job.o: sessioncontainer.h ipbancontainer.h ../functions/functions.h -job.o: ../functions/functionbase.h ../core/request.h ../core/system.h -job.o: ../core/synchro.h ../functions/functionparser.h ../core/cur.h -job.o: ../functions/account.h ../functions/adduser.h ../functions/cat.h -job.o: ../functions/chmod.h ../functions/privchanger.h ../functions/chown.h -job.o: ../functions/ckeditor.h ../functions/cp.h ../functions/default.h -job.o: ../functions/download.h ../functions/emacs.h ../functions/env.h -job.o: ../functions/imgcrop.h ../functions/last.h ../functions/login.h -job.o: ../functions/logout.h ../functions/ln.h ../functions/ls.h -job.o: ../functions/man.h ../functions/meta.h ../functions/mkdir.h -job.o: ../functions/mv.h ../functions/nicedit.h ../functions/node.h -job.o: ../functions/passwd.h ../functions/priv.h ../functions/pw.h -job.o: ../functions/reload.h ../functions/rm.h ../functions/rmuser.h -job.o: ../functions/sort.h ../functions/specialdefault.h ../functions/stat.h -job.o: ../functions/subject.h ../functions/template.h ../functions/tinymce.h -job.o: ../functions/uname.h ../functions/upload.h ../functions/uptime.h -job.o: ../functions/who.h ../functions/vim.h ../core/htmlfilter.h -job.o: ../templates/templates.h ../templates/patterncacher.h -job.o: ../templates/indexpatterns.h ../templates/patterns.h -job.o: ../templates/changepatterns.h ../templates/htmltextstream.h -job.o: ../core/sessionmanager.h +job.o: ../../ezc/src/stringconv.h ../../winix/notify/notifythread.h +job.o: ../../winix/core/basethread.h ../../winix/notify/templatesnotify.h +job.o: ../../winix/core/config.h ../../winix/core/users.h ugcontainer.h +job.o: lastcontainer.h mounts.h mountparser.h crypt.h run.h users.h groups.h +job.o: group.h loadavg.h image.h threadmanager.h timezones.h timezone.h +job.o: sessionmanager.h sessioncontainer.h ipbancontainer.h +job.o: ../../winix/functions/functions.h ../../winix/functions/functionbase.h +job.o: ../../winix/core/request.h ../../winix/core/system.h +job.o: ../../winix/core/synchro.h ../../winix/functions/functionparser.h +job.o: ../../winix/core/cur.h ../../winix/functions/account.h +job.o: ../../winix/functions/adduser.h ../../winix/functions/cat.h +job.o: ../../winix/functions/chmod.h ../../winix/functions/privchanger.h +job.o: ../../winix/functions/chown.h ../../winix/functions/ckeditor.h +job.o: ../../winix/functions/cp.h ../../winix/functions/default.h +job.o: ../../winix/functions/download.h ../../winix/functions/emacs.h +job.o: ../../winix/functions/env.h ../../winix/functions/imgcrop.h +job.o: ../../winix/functions/last.h ../../winix/functions/login.h +job.o: ../../winix/functions/logout.h ../../winix/functions/ln.h +job.o: ../../winix/functions/ls.h ../../winix/functions/man.h +job.o: ../../winix/functions/meta.h ../../winix/functions/mkdir.h +job.o: ../../winix/functions/mv.h ../../winix/functions/nicedit.h +job.o: ../../winix/functions/node.h ../../winix/functions/passwd.h +job.o: ../../winix/functions/priv.h ../../winix/functions/pw.h +job.o: ../../winix/functions/reload.h ../../winix/functions/rm.h +job.o: ../../winix/functions/rmuser.h ../../winix/functions/sort.h +job.o: ../../winix/functions/specialdefault.h ../../winix/functions/stat.h +job.o: ../../winix/functions/subject.h ../../winix/functions/template.h +job.o: ../../winix/functions/tinymce.h ../../winix/functions/uname.h +job.o: ../../winix/functions/upload.h ../../winix/functions/uptime.h +job.o: ../../winix/functions/who.h ../../winix/functions/vim.h +job.o: ../../winix/core/htmlfilter.h ../../winix/templates/templates.h +job.o: ../../winix/templates/patterncacher.h +job.o: ../../winix/templates/indexpatterns.h ../../winix/templates/patterns.h +job.o: ../../winix/templates/changepatterns.h +job.o: ../../winix/templates/htmltextstream.h +job.o: ../../winix/core/sessionmanager.h lastcontainer.o: lastcontainer.h ../../pikotools/date/date.h log.h lastcontainer.o: textstream.h logmanipulators.h lastcontainer.o: ../../pikotools/textstream/textstream.h @@ -312,10 +376,12 @@ lastcontainer.o: requesttypes.h item.h error.h config.h lastcontainer.o: ../../pikotools/space/spaceparser.h lastcontainer.o: ../../pikotools/space/space.h lastcontainer.o: ../../pikotools/textstream/types.h htmlfilter.h -lastcontainer.o: ../templates/htmltextstream.h ../core/textstream.h misc.h +lastcontainer.o: ../../winix/templates/htmltextstream.h +lastcontainer.o: ../../winix/core/textstream.h misc.h lastcontainer.o: ../../pikotools/utf8/utf8.h lastcontainer.o: ../../pikotools/space/spacetojson.h session.h user.h -lastcontainer.o: plugindata.h rebus.h ipban.h mount.h ../templates/locale.h +lastcontainer.o: plugindata.h rebus.h ipban.h mount.h +lastcontainer.o: ../../winix/templates/locale.h loadavg.o: loadavg.h log.h textstream.h logmanipulators.h loadavg.o: ../../pikotools/textstream/textstream.h loadavg.o: ../../pikotools/space/space.h ../../pikotools/date/date.h @@ -326,10 +392,10 @@ loadavg.o: ../../pikotools/textstream/types.h slog.h cur.h request.h loadavg.o: requesttypes.h item.h error.h config.h loadavg.o: ../../pikotools/space/spaceparser.h ../../pikotools/space/space.h loadavg.o: ../../pikotools/textstream/types.h htmlfilter.h -loadavg.o: ../templates/htmltextstream.h ../core/textstream.h misc.h -loadavg.o: ../../pikotools/utf8/utf8.h ../../pikotools/space/spacetojson.h -loadavg.o: session.h user.h plugindata.h rebus.h ipban.h mount.h -loadavg.o: ../templates/locale.h +loadavg.o: ../../winix/templates/htmltextstream.h +loadavg.o: ../../winix/core/textstream.h misc.h ../../pikotools/utf8/utf8.h +loadavg.o: ../../pikotools/space/spacetojson.h session.h user.h plugindata.h +loadavg.o: rebus.h ipban.h mount.h ../../winix/templates/locale.h lock.o: lock.h synchro.h log.o: log.h textstream.h logmanipulators.h log.o: ../../pikotools/textstream/textstream.h ../../pikotools/space/space.h @@ -340,10 +406,10 @@ log.o: ../../pikotools/textstream/types.h slog.h cur.h request.h log.o: requesttypes.h item.h error.h config.h log.o: ../../pikotools/space/spaceparser.h ../../pikotools/space/space.h log.o: ../../pikotools/textstream/types.h htmlfilter.h -log.o: ../templates/htmltextstream.h ../core/textstream.h misc.h -log.o: ../../pikotools/utf8/utf8.h ../../pikotools/space/spacetojson.h +log.o: ../../winix/templates/htmltextstream.h ../../winix/core/textstream.h +log.o: misc.h ../../pikotools/utf8/utf8.h ../../pikotools/space/spacetojson.h log.o: session.h user.h plugindata.h rebus.h ipban.h mount.h -log.o: ../templates/locale.h timezones.h timezone.h +log.o: ../../winix/templates/locale.h timezones.h timezone.h misc.o: misc.h item.h ../../pikotools/space/space.h misc.o: ../../pikotools/date/date.h requesttypes.h misc.o: ../../pikotools/textstream/textstream.h @@ -353,21 +419,25 @@ misc.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h log.h misc.o: textstream.h logmanipulators.h slog.h cur.h request.h error.h misc.o: config.h ../../pikotools/space/spaceparser.h misc.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h -misc.o: htmlfilter.h ../templates/htmltextstream.h ../core/textstream.h -misc.o: ../../pikotools/space/spacetojson.h session.h user.h plugindata.h -misc.o: rebus.h ipban.h mount.h ../templates/locale.h -misc.o: ../templates/templates.h ../../ezc/src/ezc.h -misc.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h +misc.o: htmlfilter.h ../../winix/templates/htmltextstream.h +misc.o: ../../winix/core/textstream.h ../../pikotools/space/spacetojson.h +misc.o: session.h user.h plugindata.h rebus.h ipban.h mount.h +misc.o: ../../winix/templates/locale.h ../../winix/templates/templates.h +misc.o: ../../ezc/src/ezc.h ../../ezc/src/generator.h ../../ezc/src/pattern.h misc.o: ../../ezc/src/functions.h ../../ezc/src/funinfo.h -misc.o: ../../ezc/src/stringconv.h ../templates/patterncacher.h -misc.o: ../core/item.h ../templates/indexpatterns.h ../templates/patterns.h -misc.o: ../templates/locale.h ../templates/changepatterns.h -misc.o: ../templates/htmltextstream.h ../templates/localefilter.h -misc.o: ../core/config.h ../core/cur.h ../core/system.h -misc.o: ../core/sessionmanager.h ../core/htmlfilter.h ../db/db.h -misc.o: ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h ../core/error.h -misc.o: ../db/dbitemquery.h ../db/dbitemcolumns.h ../core/user.h -misc.o: ../core/group.h ../core/dircontainer.h ../core/ugcontainer.h +misc.o: ../../ezc/src/stringconv.h ../../winix/templates/patterncacher.h +misc.o: ../../winix/core/item.h ../../winix/templates/indexpatterns.h +misc.o: ../../winix/templates/patterns.h ../../winix/templates/locale.h +misc.o: ../../winix/templates/changepatterns.h +misc.o: ../../winix/templates/htmltextstream.h +misc.o: ../../winix/templates/localefilter.h ../../winix/core/config.h +misc.o: ../../winix/core/cur.h ../../winix/core/system.h +misc.o: ../../winix/core/sessionmanager.h ../../winix/core/htmlfilter.h +misc.o: ../../winix/db/db.h ../../winix/db/dbbase.h ../../winix/db/dbconn.h +misc.o: ../../winix/db/dbtextstream.h ../../winix/core/error.h +misc.o: ../../winix/db/dbitemquery.h ../../winix/db/dbitemcolumns.h +misc.o: ../../winix/core/user.h ../../winix/core/group.h +misc.o: ../../winix/core/dircontainer.h ../../winix/core/ugcontainer.h mount.o: mount.h misc.h item.h ../../pikotools/space/space.h mount.o: ../../pikotools/date/date.h requesttypes.h mount.o: ../../pikotools/textstream/textstream.h @@ -375,80 +445,100 @@ mount.o: ../../pikotools/convert/convert.h ../../pikotools/convert/inttostr.h mount.o: ../../pikotools/membuffer/membuffer.h mount.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h mountparser.o: mountparser.h mount.h item.h ../../pikotools/space/space.h -mountparser.o: ../../pikotools/date/date.h dirs.h dircontainer.h ../db/db.h -mountparser.o: ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h -mountparser.o: ../core/textstream.h misc.h requesttypes.h +mountparser.o: ../../pikotools/date/date.h dirs.h dircontainer.h +mountparser.o: ../../winix/db/db.h ../../winix/db/dbbase.h +mountparser.o: ../../winix/db/dbconn.h ../../winix/db/dbtextstream.h +mountparser.o: ../../winix/core/textstream.h misc.h requesttypes.h mountparser.o: ../../pikotools/textstream/textstream.h mountparser.o: ../../pikotools/convert/convert.h mountparser.o: ../../pikotools/convert/inttostr.h mountparser.o: ../../pikotools/membuffer/membuffer.h mountparser.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -mountparser.o: ../core/error.h ../../pikotools/space/spaceparser.h +mountparser.o: ../../winix/core/error.h ../../pikotools/space/spaceparser.h mountparser.o: ../../pikotools/space/space.h -mountparser.o: ../../pikotools/textstream/types.h ../db/dbitemquery.h -mountparser.o: ../core/item.h ../db/dbitemcolumns.h ../core/user.h -mountparser.o: ../core/group.h ../core/dircontainer.h ../core/ugcontainer.h -mountparser.o: log.h textstream.h logmanipulators.h slog.h cur.h request.h -mountparser.o: error.h config.h htmlfilter.h ../templates/htmltextstream.h +mountparser.o: ../../pikotools/textstream/types.h +mountparser.o: ../../winix/db/dbitemquery.h ../../winix/core/item.h +mountparser.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +mountparser.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +mountparser.o: ../../winix/core/ugcontainer.h log.h textstream.h +mountparser.o: logmanipulators.h slog.h cur.h request.h error.h config.h +mountparser.o: htmlfilter.h ../../winix/templates/htmltextstream.h mountparser.o: ../../pikotools/space/spacetojson.h session.h user.h -mountparser.o: plugindata.h rebus.h ipban.h ../templates/locale.h -mountparser.o: ../notify/notify.h ../notify/notifypool.h -mountparser.o: ../templates/patterns.h ../templates/locale.h -mountparser.o: ../templates/localefilter.h ../../ezc/src/ezc.h +mountparser.o: plugindata.h rebus.h ipban.h ../../winix/templates/locale.h +mountparser.o: ../../winix/notify/notify.h ../../winix/notify/notifypool.h +mountparser.o: ../../winix/templates/patterns.h +mountparser.o: ../../winix/templates/locale.h +mountparser.o: ../../winix/templates/localefilter.h ../../ezc/src/ezc.h mountparser.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h mountparser.o: ../../ezc/src/functions.h ../../ezc/src/funinfo.h -mountparser.o: ../../ezc/src/stringconv.h ../notify/notifythread.h -mountparser.o: ../core/basethread.h ../notify/templatesnotify.h -mountparser.o: ../core/config.h ../core/users.h ugcontainer.h lastcontainer.h +mountparser.o: ../../ezc/src/stringconv.h ../../winix/notify/notifythread.h +mountparser.o: ../../winix/core/basethread.h +mountparser.o: ../../winix/notify/templatesnotify.h ../../winix/core/config.h +mountparser.o: ../../winix/core/users.h ugcontainer.h lastcontainer.h mounts.o: mounts.h mount.h error.h dirs.h item.h mounts.o: ../../pikotools/space/space.h ../../pikotools/date/date.h -mounts.o: dircontainer.h ../db/db.h ../db/dbbase.h ../db/dbconn.h -mounts.o: ../db/dbtextstream.h ../core/textstream.h misc.h requesttypes.h +mounts.o: dircontainer.h ../../winix/db/db.h ../../winix/db/dbbase.h +mounts.o: ../../winix/db/dbconn.h ../../winix/db/dbtextstream.h +mounts.o: ../../winix/core/textstream.h misc.h requesttypes.h mounts.o: ../../pikotools/textstream/textstream.h mounts.o: ../../pikotools/convert/convert.h mounts.o: ../../pikotools/convert/inttostr.h mounts.o: ../../pikotools/membuffer/membuffer.h mounts.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -mounts.o: ../core/error.h ../../pikotools/space/spaceparser.h +mounts.o: ../../winix/core/error.h ../../pikotools/space/spaceparser.h mounts.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h -mounts.o: ../db/dbitemquery.h ../core/item.h ../db/dbitemcolumns.h -mounts.o: ../core/user.h ../core/group.h ../core/dircontainer.h -mounts.o: ../core/ugcontainer.h log.h textstream.h logmanipulators.h slog.h -mounts.o: cur.h request.h config.h htmlfilter.h ../templates/htmltextstream.h +mounts.o: ../../winix/db/dbitemquery.h ../../winix/core/item.h +mounts.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +mounts.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +mounts.o: ../../winix/core/ugcontainer.h log.h textstream.h logmanipulators.h +mounts.o: slog.h cur.h request.h config.h htmlfilter.h +mounts.o: ../../winix/templates/htmltextstream.h mounts.o: ../../pikotools/space/spacetojson.h session.h user.h plugindata.h -mounts.o: rebus.h ipban.h ../templates/locale.h ../notify/notify.h -mounts.o: ../notify/notifypool.h ../templates/patterns.h -mounts.o: ../templates/locale.h ../templates/localefilter.h -mounts.o: ../../ezc/src/ezc.h ../../ezc/src/generator.h -mounts.o: ../../ezc/src/pattern.h ../../ezc/src/functions.h -mounts.o: ../../ezc/src/funinfo.h ../../ezc/src/stringconv.h -mounts.o: ../notify/notifythread.h ../core/basethread.h -mounts.o: ../notify/templatesnotify.h ../core/config.h ../core/users.h -mounts.o: ugcontainer.h lastcontainer.h mountparser.h plugin.h pluginmsg.h -mounts.o: system.h job.h basethread.h synchro.h crypt.h run.h users.h -mounts.o: groups.h group.h loadavg.h image.h threadmanager.h timezones.h -mounts.o: timezone.h sessionmanager.h sessioncontainer.h ipbancontainer.h -mounts.o: ../functions/functions.h ../functions/functionbase.h -mounts.o: ../core/request.h ../core/system.h ../core/synchro.h -mounts.o: ../functions/functionparser.h ../core/cur.h ../functions/account.h -mounts.o: ../functions/adduser.h ../functions/cat.h ../functions/chmod.h -mounts.o: ../functions/privchanger.h ../functions/chown.h -mounts.o: ../functions/ckeditor.h ../functions/cp.h ../functions/default.h -mounts.o: ../functions/download.h ../functions/emacs.h ../functions/env.h -mounts.o: ../functions/imgcrop.h ../functions/last.h ../functions/login.h -mounts.o: ../functions/logout.h ../functions/ln.h ../functions/ls.h -mounts.o: ../functions/man.h ../functions/meta.h ../functions/mkdir.h -mounts.o: ../functions/mv.h ../functions/nicedit.h ../functions/node.h -mounts.o: ../functions/passwd.h ../functions/priv.h ../functions/pw.h -mounts.o: ../functions/reload.h ../functions/rm.h ../functions/rmuser.h -mounts.o: ../functions/sort.h ../functions/specialdefault.h -mounts.o: ../functions/stat.h ../functions/subject.h ../functions/template.h -mounts.o: ../functions/tinymce.h ../functions/uname.h ../functions/upload.h -mounts.o: ../functions/uptime.h ../functions/who.h ../functions/vim.h -mounts.o: ../core/htmlfilter.h ../templates/templates.h -mounts.o: ../templates/patterncacher.h ../templates/indexpatterns.h -mounts.o: ../templates/patterns.h ../templates/changepatterns.h -mounts.o: ../templates/htmltextstream.h ../core/sessionmanager.h +mounts.o: rebus.h ipban.h ../../winix/templates/locale.h +mounts.o: ../../winix/notify/notify.h ../../winix/notify/notifypool.h +mounts.o: ../../winix/templates/patterns.h ../../winix/templates/locale.h +mounts.o: ../../winix/templates/localefilter.h ../../ezc/src/ezc.h +mounts.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h +mounts.o: ../../ezc/src/functions.h ../../ezc/src/funinfo.h +mounts.o: ../../ezc/src/stringconv.h ../../winix/notify/notifythread.h +mounts.o: ../../winix/core/basethread.h ../../winix/notify/templatesnotify.h +mounts.o: ../../winix/core/config.h ../../winix/core/users.h ugcontainer.h +mounts.o: lastcontainer.h mountparser.h plugin.h pluginmsg.h system.h job.h +mounts.o: basethread.h synchro.h crypt.h run.h users.h groups.h group.h +mounts.o: loadavg.h image.h threadmanager.h timezones.h timezone.h +mounts.o: sessionmanager.h sessioncontainer.h ipbancontainer.h +mounts.o: ../../winix/functions/functions.h +mounts.o: ../../winix/functions/functionbase.h ../../winix/core/request.h +mounts.o: ../../winix/core/system.h ../../winix/core/synchro.h +mounts.o: ../../winix/functions/functionparser.h ../../winix/core/cur.h +mounts.o: ../../winix/functions/account.h ../../winix/functions/adduser.h +mounts.o: ../../winix/functions/cat.h ../../winix/functions/chmod.h +mounts.o: ../../winix/functions/privchanger.h ../../winix/functions/chown.h +mounts.o: ../../winix/functions/ckeditor.h ../../winix/functions/cp.h +mounts.o: ../../winix/functions/default.h ../../winix/functions/download.h +mounts.o: ../../winix/functions/emacs.h ../../winix/functions/env.h +mounts.o: ../../winix/functions/imgcrop.h ../../winix/functions/last.h +mounts.o: ../../winix/functions/login.h ../../winix/functions/logout.h +mounts.o: ../../winix/functions/ln.h ../../winix/functions/ls.h +mounts.o: ../../winix/functions/man.h ../../winix/functions/meta.h +mounts.o: ../../winix/functions/mkdir.h ../../winix/functions/mv.h +mounts.o: ../../winix/functions/nicedit.h ../../winix/functions/node.h +mounts.o: ../../winix/functions/passwd.h ../../winix/functions/priv.h +mounts.o: ../../winix/functions/pw.h ../../winix/functions/reload.h +mounts.o: ../../winix/functions/rm.h ../../winix/functions/rmuser.h +mounts.o: ../../winix/functions/sort.h ../../winix/functions/specialdefault.h +mounts.o: ../../winix/functions/stat.h ../../winix/functions/subject.h +mounts.o: ../../winix/functions/template.h ../../winix/functions/tinymce.h +mounts.o: ../../winix/functions/uname.h ../../winix/functions/upload.h +mounts.o: ../../winix/functions/uptime.h ../../winix/functions/who.h +mounts.o: ../../winix/functions/vim.h ../../winix/core/htmlfilter.h +mounts.o: ../../winix/templates/templates.h +mounts.o: ../../winix/templates/patterncacher.h +mounts.o: ../../winix/templates/indexpatterns.h +mounts.o: ../../winix/templates/patterns.h +mounts.o: ../../winix/templates/changepatterns.h +mounts.o: ../../winix/templates/htmltextstream.h +mounts.o: ../../winix/core/sessionmanager.h plugin.o: plugin.h pluginmsg.h log.h textstream.h logmanipulators.h plugin.o: ../../pikotools/textstream/textstream.h plugin.o: ../../pikotools/space/space.h ../../pikotools/date/date.h @@ -459,46 +549,60 @@ plugin.o: ../../pikotools/textstream/types.h slog.h cur.h request.h plugin.o: requesttypes.h item.h error.h config.h plugin.o: ../../pikotools/space/spaceparser.h ../../pikotools/space/space.h plugin.o: ../../pikotools/textstream/types.h htmlfilter.h -plugin.o: ../templates/htmltextstream.h ../core/textstream.h misc.h -plugin.o: ../../pikotools/utf8/utf8.h ../../pikotools/space/spacetojson.h -plugin.o: session.h user.h plugindata.h rebus.h ipban.h mount.h -plugin.o: ../templates/locale.h system.h job.h basethread.h synchro.h dirs.h -plugin.o: dircontainer.h ../db/db.h ../db/dbbase.h ../db/dbconn.h -plugin.o: ../db/dbtextstream.h ../core/error.h ../db/dbitemquery.h -plugin.o: ../core/item.h ../db/dbitemcolumns.h ../core/user.h ../core/group.h -plugin.o: ../core/dircontainer.h ../core/ugcontainer.h ../notify/notify.h -plugin.o: ../notify/notifypool.h ../templates/patterns.h -plugin.o: ../templates/locale.h ../templates/localefilter.h +plugin.o: ../../winix/templates/htmltextstream.h +plugin.o: ../../winix/core/textstream.h misc.h ../../pikotools/utf8/utf8.h +plugin.o: ../../pikotools/space/spacetojson.h session.h user.h plugindata.h +plugin.o: rebus.h ipban.h mount.h ../../winix/templates/locale.h system.h +plugin.o: job.h basethread.h synchro.h dirs.h dircontainer.h +plugin.o: ../../winix/db/db.h ../../winix/db/dbbase.h ../../winix/db/dbconn.h +plugin.o: ../../winix/db/dbtextstream.h ../../winix/core/error.h +plugin.o: ../../winix/db/dbitemquery.h ../../winix/core/item.h +plugin.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +plugin.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +plugin.o: ../../winix/core/ugcontainer.h ../../winix/notify/notify.h +plugin.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +plugin.o: ../../winix/templates/locale.h ../../winix/templates/localefilter.h plugin.o: ../../ezc/src/ezc.h ../../ezc/src/generator.h plugin.o: ../../ezc/src/pattern.h ../../ezc/src/functions.h plugin.o: ../../ezc/src/funinfo.h ../../ezc/src/stringconv.h -plugin.o: ../notify/notifythread.h ../core/basethread.h -plugin.o: ../notify/templatesnotify.h ../core/config.h ../core/users.h -plugin.o: ugcontainer.h lastcontainer.h mounts.h mountparser.h crypt.h run.h -plugin.o: users.h groups.h group.h loadavg.h image.h threadmanager.h -plugin.o: timezones.h timezone.h sessionmanager.h sessioncontainer.h -plugin.o: ipbancontainer.h ../functions/functions.h -plugin.o: ../functions/functionbase.h ../core/request.h ../core/system.h -plugin.o: ../core/synchro.h ../functions/functionparser.h ../core/cur.h -plugin.o: ../functions/account.h ../functions/adduser.h ../functions/cat.h -plugin.o: ../functions/chmod.h ../functions/privchanger.h -plugin.o: ../functions/chown.h ../functions/ckeditor.h ../functions/cp.h -plugin.o: ../functions/default.h ../functions/download.h ../functions/emacs.h -plugin.o: ../functions/env.h ../functions/imgcrop.h ../functions/last.h -plugin.o: ../functions/login.h ../functions/logout.h ../functions/ln.h -plugin.o: ../functions/ls.h ../functions/man.h ../functions/meta.h -plugin.o: ../functions/mkdir.h ../functions/mv.h ../functions/nicedit.h -plugin.o: ../functions/node.h ../functions/passwd.h ../functions/priv.h -plugin.o: ../functions/pw.h ../functions/reload.h ../functions/rm.h -plugin.o: ../functions/rmuser.h ../functions/sort.h -plugin.o: ../functions/specialdefault.h ../functions/stat.h -plugin.o: ../functions/subject.h ../functions/template.h -plugin.o: ../functions/tinymce.h ../functions/uname.h ../functions/upload.h -plugin.o: ../functions/uptime.h ../functions/who.h ../functions/vim.h -plugin.o: ../core/htmlfilter.h ../templates/templates.h -plugin.o: ../templates/patterncacher.h ../templates/indexpatterns.h -plugin.o: ../templates/patterns.h ../templates/changepatterns.h -plugin.o: ../templates/htmltextstream.h ../core/sessionmanager.h +plugin.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +plugin.o: ../../winix/notify/templatesnotify.h ../../winix/core/config.h +plugin.o: ../../winix/core/users.h ugcontainer.h lastcontainer.h mounts.h +plugin.o: mountparser.h crypt.h run.h users.h groups.h group.h loadavg.h +plugin.o: image.h threadmanager.h timezones.h timezone.h sessionmanager.h +plugin.o: sessioncontainer.h ipbancontainer.h +plugin.o: ../../winix/functions/functions.h +plugin.o: ../../winix/functions/functionbase.h ../../winix/core/request.h +plugin.o: ../../winix/core/system.h ../../winix/core/synchro.h +plugin.o: ../../winix/functions/functionparser.h ../../winix/core/cur.h +plugin.o: ../../winix/functions/account.h ../../winix/functions/adduser.h +plugin.o: ../../winix/functions/cat.h ../../winix/functions/chmod.h +plugin.o: ../../winix/functions/privchanger.h ../../winix/functions/chown.h +plugin.o: ../../winix/functions/ckeditor.h ../../winix/functions/cp.h +plugin.o: ../../winix/functions/default.h ../../winix/functions/download.h +plugin.o: ../../winix/functions/emacs.h ../../winix/functions/env.h +plugin.o: ../../winix/functions/imgcrop.h ../../winix/functions/last.h +plugin.o: ../../winix/functions/login.h ../../winix/functions/logout.h +plugin.o: ../../winix/functions/ln.h ../../winix/functions/ls.h +plugin.o: ../../winix/functions/man.h ../../winix/functions/meta.h +plugin.o: ../../winix/functions/mkdir.h ../../winix/functions/mv.h +plugin.o: ../../winix/functions/nicedit.h ../../winix/functions/node.h +plugin.o: ../../winix/functions/passwd.h ../../winix/functions/priv.h +plugin.o: ../../winix/functions/pw.h ../../winix/functions/reload.h +plugin.o: ../../winix/functions/rm.h ../../winix/functions/rmuser.h +plugin.o: ../../winix/functions/sort.h ../../winix/functions/specialdefault.h +plugin.o: ../../winix/functions/stat.h ../../winix/functions/subject.h +plugin.o: ../../winix/functions/template.h ../../winix/functions/tinymce.h +plugin.o: ../../winix/functions/uname.h ../../winix/functions/upload.h +plugin.o: ../../winix/functions/uptime.h ../../winix/functions/who.h +plugin.o: ../../winix/functions/vim.h ../../winix/core/htmlfilter.h +plugin.o: ../../winix/templates/templates.h +plugin.o: ../../winix/templates/patterncacher.h +plugin.o: ../../winix/templates/indexpatterns.h +plugin.o: ../../winix/templates/patterns.h +plugin.o: ../../winix/templates/changepatterns.h +plugin.o: ../../winix/templates/htmltextstream.h +plugin.o: ../../winix/core/sessionmanager.h plugindata.o: plugindata.h plugin.h pluginmsg.h log.h textstream.h plugindata.o: logmanipulators.h ../../pikotools/textstream/textstream.h plugindata.o: ../../pikotools/space/space.h ../../pikotools/date/date.h @@ -510,48 +614,63 @@ plugindata.o: requesttypes.h item.h error.h config.h plugindata.o: ../../pikotools/space/spaceparser.h plugindata.o: ../../pikotools/space/space.h plugindata.o: ../../pikotools/textstream/types.h htmlfilter.h -plugindata.o: ../templates/htmltextstream.h ../core/textstream.h misc.h +plugindata.o: ../../winix/templates/htmltextstream.h +plugindata.o: ../../winix/core/textstream.h misc.h plugindata.o: ../../pikotools/utf8/utf8.h ../../pikotools/space/spacetojson.h -plugindata.o: session.h user.h rebus.h ipban.h mount.h ../templates/locale.h -plugindata.o: system.h job.h basethread.h synchro.h dirs.h dircontainer.h -plugindata.o: ../db/db.h ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h -plugindata.o: ../core/error.h ../db/dbitemquery.h ../core/item.h -plugindata.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -plugindata.o: ../core/dircontainer.h ../core/ugcontainer.h ../notify/notify.h -plugindata.o: ../notify/notifypool.h ../templates/patterns.h -plugindata.o: ../templates/locale.h ../templates/localefilter.h -plugindata.o: ../../ezc/src/ezc.h ../../ezc/src/generator.h -plugindata.o: ../../ezc/src/pattern.h ../../ezc/src/functions.h -plugindata.o: ../../ezc/src/funinfo.h ../../ezc/src/stringconv.h -plugindata.o: ../notify/notifythread.h ../core/basethread.h -plugindata.o: ../notify/templatesnotify.h ../core/config.h ../core/users.h -plugindata.o: ugcontainer.h lastcontainer.h mounts.h mountparser.h crypt.h -plugindata.o: run.h users.h groups.h group.h loadavg.h image.h -plugindata.o: threadmanager.h timezones.h timezone.h sessionmanager.h -plugindata.o: sessioncontainer.h ipbancontainer.h ../functions/functions.h -plugindata.o: ../functions/functionbase.h ../core/request.h ../core/system.h -plugindata.o: ../core/synchro.h ../functions/functionparser.h ../core/cur.h -plugindata.o: ../functions/account.h ../functions/adduser.h -plugindata.o: ../functions/cat.h ../functions/chmod.h -plugindata.o: ../functions/privchanger.h ../functions/chown.h -plugindata.o: ../functions/ckeditor.h ../functions/cp.h -plugindata.o: ../functions/default.h ../functions/download.h -plugindata.o: ../functions/emacs.h ../functions/env.h ../functions/imgcrop.h -plugindata.o: ../functions/last.h ../functions/login.h ../functions/logout.h -plugindata.o: ../functions/ln.h ../functions/ls.h ../functions/man.h -plugindata.o: ../functions/meta.h ../functions/mkdir.h ../functions/mv.h -plugindata.o: ../functions/nicedit.h ../functions/node.h -plugindata.o: ../functions/passwd.h ../functions/priv.h ../functions/pw.h -plugindata.o: ../functions/reload.h ../functions/rm.h ../functions/rmuser.h -plugindata.o: ../functions/sort.h ../functions/specialdefault.h -plugindata.o: ../functions/stat.h ../functions/subject.h -plugindata.o: ../functions/template.h ../functions/tinymce.h -plugindata.o: ../functions/uname.h ../functions/upload.h -plugindata.o: ../functions/uptime.h ../functions/who.h ../functions/vim.h -plugindata.o: ../core/htmlfilter.h ../templates/templates.h -plugindata.o: ../templates/patterncacher.h ../templates/indexpatterns.h -plugindata.o: ../templates/patterns.h ../templates/changepatterns.h -plugindata.o: ../templates/htmltextstream.h ../core/sessionmanager.h +plugindata.o: session.h user.h rebus.h ipban.h mount.h +plugindata.o: ../../winix/templates/locale.h system.h job.h basethread.h +plugindata.o: synchro.h dirs.h dircontainer.h ../../winix/db/db.h +plugindata.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +plugindata.o: ../../winix/db/dbtextstream.h ../../winix/core/error.h +plugindata.o: ../../winix/db/dbitemquery.h ../../winix/core/item.h +plugindata.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +plugindata.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +plugindata.o: ../../winix/core/ugcontainer.h ../../winix/notify/notify.h +plugindata.o: ../../winix/notify/notifypool.h +plugindata.o: ../../winix/templates/patterns.h ../../winix/templates/locale.h +plugindata.o: ../../winix/templates/localefilter.h ../../ezc/src/ezc.h +plugindata.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h +plugindata.o: ../../ezc/src/functions.h ../../ezc/src/funinfo.h +plugindata.o: ../../ezc/src/stringconv.h ../../winix/notify/notifythread.h +plugindata.o: ../../winix/core/basethread.h +plugindata.o: ../../winix/notify/templatesnotify.h ../../winix/core/config.h +plugindata.o: ../../winix/core/users.h ugcontainer.h lastcontainer.h mounts.h +plugindata.o: mountparser.h crypt.h run.h users.h groups.h group.h loadavg.h +plugindata.o: image.h threadmanager.h timezones.h timezone.h sessionmanager.h +plugindata.o: sessioncontainer.h ipbancontainer.h +plugindata.o: ../../winix/functions/functions.h +plugindata.o: ../../winix/functions/functionbase.h ../../winix/core/request.h +plugindata.o: ../../winix/core/system.h ../../winix/core/synchro.h +plugindata.o: ../../winix/functions/functionparser.h ../../winix/core/cur.h +plugindata.o: ../../winix/functions/account.h ../../winix/functions/adduser.h +plugindata.o: ../../winix/functions/cat.h ../../winix/functions/chmod.h +plugindata.o: ../../winix/functions/privchanger.h +plugindata.o: ../../winix/functions/chown.h ../../winix/functions/ckeditor.h +plugindata.o: ../../winix/functions/cp.h ../../winix/functions/default.h +plugindata.o: ../../winix/functions/download.h ../../winix/functions/emacs.h +plugindata.o: ../../winix/functions/env.h ../../winix/functions/imgcrop.h +plugindata.o: ../../winix/functions/last.h ../../winix/functions/login.h +plugindata.o: ../../winix/functions/logout.h ../../winix/functions/ln.h +plugindata.o: ../../winix/functions/ls.h ../../winix/functions/man.h +plugindata.o: ../../winix/functions/meta.h ../../winix/functions/mkdir.h +plugindata.o: ../../winix/functions/mv.h ../../winix/functions/nicedit.h +plugindata.o: ../../winix/functions/node.h ../../winix/functions/passwd.h +plugindata.o: ../../winix/functions/priv.h ../../winix/functions/pw.h +plugindata.o: ../../winix/functions/reload.h ../../winix/functions/rm.h +plugindata.o: ../../winix/functions/rmuser.h ../../winix/functions/sort.h +plugindata.o: ../../winix/functions/specialdefault.h +plugindata.o: ../../winix/functions/stat.h ../../winix/functions/subject.h +plugindata.o: ../../winix/functions/template.h +plugindata.o: ../../winix/functions/tinymce.h ../../winix/functions/uname.h +plugindata.o: ../../winix/functions/upload.h ../../winix/functions/uptime.h +plugindata.o: ../../winix/functions/who.h ../../winix/functions/vim.h +plugindata.o: ../../winix/core/htmlfilter.h ../../winix/templates/templates.h +plugindata.o: ../../winix/templates/patterncacher.h +plugindata.o: ../../winix/templates/indexpatterns.h +plugindata.o: ../../winix/templates/patterns.h +plugindata.o: ../../winix/templates/changepatterns.h +plugindata.o: ../../winix/templates/htmltextstream.h +plugindata.o: ../../winix/core/sessionmanager.h postmultiparser.o: postmultiparser.h error.h requesttypes.h postmultiparser.o: ../../pikotools/textstream/textstream.h postmultiparser.o: ../../pikotools/space/space.h ../../pikotools/date/date.h @@ -564,9 +683,11 @@ postmultiparser.o: ../../pikotools/space/space.h postmultiparser.o: ../../pikotools/textstream/types.h htmlfilter.h misc.h postmultiparser.o: item.h ../../pikotools/utf8/utf8.h log.h textstream.h postmultiparser.o: logmanipulators.h slog.h cur.h request.h -postmultiparser.o: ../templates/htmltextstream.h ../core/textstream.h +postmultiparser.o: ../../winix/templates/htmltextstream.h +postmultiparser.o: ../../winix/core/textstream.h postmultiparser.o: ../../pikotools/space/spacetojson.h session.h user.h -postmultiparser.o: plugindata.h rebus.h ipban.h mount.h ../templates/locale.h +postmultiparser.o: plugindata.h rebus.h ipban.h mount.h +postmultiparser.o: ../../winix/templates/locale.h rebus.o: log.h textstream.h logmanipulators.h rebus.o: ../../pikotools/textstream/textstream.h rebus.o: ../../pikotools/space/space.h ../../pikotools/date/date.h @@ -576,10 +697,10 @@ rebus.o: ../../pikotools/textstream/types.h slog.h cur.h request.h rebus.o: requesttypes.h item.h error.h config.h rebus.o: ../../pikotools/space/spaceparser.h ../../pikotools/space/space.h rebus.o: ../../pikotools/textstream/types.h htmlfilter.h -rebus.o: ../templates/htmltextstream.h ../core/textstream.h misc.h -rebus.o: ../../pikotools/utf8/utf8.h ../../pikotools/space/spacetojson.h -rebus.o: session.h user.h plugindata.h rebus.h ipban.h mount.h -rebus.o: ../templates/locale.h +rebus.o: ../../winix/templates/htmltextstream.h ../../winix/core/textstream.h +rebus.o: misc.h ../../pikotools/utf8/utf8.h +rebus.o: ../../pikotools/space/spacetojson.h session.h user.h plugindata.h +rebus.o: rebus.h ipban.h mount.h ../../winix/templates/locale.h request.o: request.h requesttypes.h ../../pikotools/textstream/textstream.h request.o: ../../pikotools/space/space.h ../../pikotools/date/date.h request.o: ../../pikotools/convert/convert.h @@ -588,47 +709,62 @@ request.o: ../../pikotools/membuffer/membuffer.h request.o: ../../pikotools/textstream/types.h item.h error.h config.h request.o: ../../pikotools/space/spaceparser.h ../../pikotools/space/space.h request.o: ../../pikotools/textstream/types.h htmlfilter.h textstream.h -request.o: ../templates/htmltextstream.h ../core/textstream.h misc.h -request.o: ../../pikotools/utf8/utf8.h ../../pikotools/space/spacetojson.h -request.o: log.h logmanipulators.h slog.h cur.h session.h user.h plugindata.h -request.o: rebus.h ipban.h mount.h ../templates/locale.h plugin.h pluginmsg.h -request.o: system.h job.h basethread.h synchro.h dirs.h dircontainer.h -request.o: ../db/db.h ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h -request.o: ../core/error.h ../db/dbitemquery.h ../core/item.h -request.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -request.o: ../core/dircontainer.h ../core/ugcontainer.h ../notify/notify.h -request.o: ../notify/notifypool.h ../templates/patterns.h -request.o: ../templates/locale.h ../templates/localefilter.h -request.o: ../../ezc/src/ezc.h ../../ezc/src/generator.h -request.o: ../../ezc/src/pattern.h ../../ezc/src/functions.h -request.o: ../../ezc/src/funinfo.h ../../ezc/src/stringconv.h -request.o: ../notify/notifythread.h ../core/basethread.h -request.o: ../notify/templatesnotify.h ../core/config.h ../core/users.h -request.o: ugcontainer.h lastcontainer.h mounts.h mountparser.h crypt.h run.h -request.o: users.h groups.h group.h loadavg.h image.h threadmanager.h -request.o: timezones.h timezone.h sessionmanager.h sessioncontainer.h -request.o: ipbancontainer.h ../functions/functions.h -request.o: ../functions/functionbase.h ../core/request.h ../core/system.h -request.o: ../core/synchro.h ../functions/functionparser.h ../core/cur.h -request.o: ../functions/account.h ../functions/adduser.h ../functions/cat.h -request.o: ../functions/chmod.h ../functions/privchanger.h -request.o: ../functions/chown.h ../functions/ckeditor.h ../functions/cp.h -request.o: ../functions/default.h ../functions/download.h -request.o: ../functions/emacs.h ../functions/env.h ../functions/imgcrop.h -request.o: ../functions/last.h ../functions/login.h ../functions/logout.h -request.o: ../functions/ln.h ../functions/ls.h ../functions/man.h -request.o: ../functions/meta.h ../functions/mkdir.h ../functions/mv.h -request.o: ../functions/nicedit.h ../functions/node.h ../functions/passwd.h -request.o: ../functions/priv.h ../functions/pw.h ../functions/reload.h -request.o: ../functions/rm.h ../functions/rmuser.h ../functions/sort.h -request.o: ../functions/specialdefault.h ../functions/stat.h -request.o: ../functions/subject.h ../functions/template.h -request.o: ../functions/tinymce.h ../functions/uname.h ../functions/upload.h -request.o: ../functions/uptime.h ../functions/who.h ../functions/vim.h -request.o: ../core/htmlfilter.h ../templates/templates.h -request.o: ../templates/patterncacher.h ../templates/indexpatterns.h -request.o: ../templates/patterns.h ../templates/changepatterns.h -request.o: ../templates/htmltextstream.h ../core/sessionmanager.h +request.o: ../../winix/templates/htmltextstream.h +request.o: ../../winix/core/textstream.h misc.h ../../pikotools/utf8/utf8.h +request.o: ../../pikotools/space/spacetojson.h log.h logmanipulators.h slog.h +request.o: cur.h session.h user.h plugindata.h rebus.h ipban.h mount.h +request.o: ../../winix/templates/locale.h plugin.h pluginmsg.h system.h job.h +request.o: basethread.h synchro.h dirs.h dircontainer.h ../../winix/db/db.h +request.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +request.o: ../../winix/db/dbtextstream.h ../../winix/core/error.h +request.o: ../../winix/db/dbitemquery.h ../../winix/core/item.h +request.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +request.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +request.o: ../../winix/core/ugcontainer.h ../../winix/notify/notify.h +request.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +request.o: ../../winix/templates/locale.h +request.o: ../../winix/templates/localefilter.h ../../ezc/src/ezc.h +request.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h +request.o: ../../ezc/src/functions.h ../../ezc/src/funinfo.h +request.o: ../../ezc/src/stringconv.h ../../winix/notify/notifythread.h +request.o: ../../winix/core/basethread.h ../../winix/notify/templatesnotify.h +request.o: ../../winix/core/config.h ../../winix/core/users.h ugcontainer.h +request.o: lastcontainer.h mounts.h mountparser.h crypt.h run.h users.h +request.o: groups.h group.h loadavg.h image.h threadmanager.h timezones.h +request.o: timezone.h sessionmanager.h sessioncontainer.h ipbancontainer.h +request.o: ../../winix/functions/functions.h +request.o: ../../winix/functions/functionbase.h ../../winix/core/request.h +request.o: ../../winix/core/system.h ../../winix/core/synchro.h +request.o: ../../winix/functions/functionparser.h ../../winix/core/cur.h +request.o: ../../winix/functions/account.h ../../winix/functions/adduser.h +request.o: ../../winix/functions/cat.h ../../winix/functions/chmod.h +request.o: ../../winix/functions/privchanger.h ../../winix/functions/chown.h +request.o: ../../winix/functions/ckeditor.h ../../winix/functions/cp.h +request.o: ../../winix/functions/default.h ../../winix/functions/download.h +request.o: ../../winix/functions/emacs.h ../../winix/functions/env.h +request.o: ../../winix/functions/imgcrop.h ../../winix/functions/last.h +request.o: ../../winix/functions/login.h ../../winix/functions/logout.h +request.o: ../../winix/functions/ln.h ../../winix/functions/ls.h +request.o: ../../winix/functions/man.h ../../winix/functions/meta.h +request.o: ../../winix/functions/mkdir.h ../../winix/functions/mv.h +request.o: ../../winix/functions/nicedit.h ../../winix/functions/node.h +request.o: ../../winix/functions/passwd.h ../../winix/functions/priv.h +request.o: ../../winix/functions/pw.h ../../winix/functions/reload.h +request.o: ../../winix/functions/rm.h ../../winix/functions/rmuser.h +request.o: ../../winix/functions/sort.h +request.o: ../../winix/functions/specialdefault.h +request.o: ../../winix/functions/stat.h ../../winix/functions/subject.h +request.o: ../../winix/functions/template.h ../../winix/functions/tinymce.h +request.o: ../../winix/functions/uname.h ../../winix/functions/upload.h +request.o: ../../winix/functions/uptime.h ../../winix/functions/who.h +request.o: ../../winix/functions/vim.h ../../winix/core/htmlfilter.h +request.o: ../../winix/templates/templates.h +request.o: ../../winix/templates/patterncacher.h +request.o: ../../winix/templates/indexpatterns.h +request.o: ../../winix/templates/patterns.h +request.o: ../../winix/templates/changepatterns.h +request.o: ../../winix/templates/htmltextstream.h +request.o: ../../winix/core/sessionmanager.h run.o: run.h log.h textstream.h logmanipulators.h run.o: ../../pikotools/textstream/textstream.h ../../pikotools/space/space.h run.o: ../../pikotools/date/date.h ../../pikotools/convert/convert.h @@ -638,10 +774,10 @@ run.o: ../../pikotools/textstream/types.h slog.h cur.h request.h run.o: requesttypes.h item.h error.h config.h run.o: ../../pikotools/space/spaceparser.h ../../pikotools/space/space.h run.o: ../../pikotools/textstream/types.h htmlfilter.h -run.o: ../templates/htmltextstream.h ../core/textstream.h misc.h -run.o: ../../pikotools/utf8/utf8.h ../../pikotools/space/spacetojson.h +run.o: ../../winix/templates/htmltextstream.h ../../winix/core/textstream.h +run.o: misc.h ../../pikotools/utf8/utf8.h ../../pikotools/space/spacetojson.h run.o: session.h user.h plugindata.h rebus.h ipban.h mount.h -run.o: ../templates/locale.h +run.o: ../../winix/templates/locale.h session.o: session.h item.h ../../pikotools/space/space.h session.o: ../../pikotools/date/date.h error.h user.h plugindata.h rebus.h session.o: textstream.h ipban.h misc.h requesttypes.h @@ -662,10 +798,11 @@ sessioncontainer.o: ../../pikotools/textstream/types.h config.h sessioncontainer.o: ../../pikotools/space/spaceparser.h sessioncontainer.o: ../../pikotools/space/space.h sessioncontainer.o: ../../pikotools/textstream/types.h htmlfilter.h -sessioncontainer.o: ../templates/htmltextstream.h ../core/textstream.h misc.h +sessioncontainer.o: ../../winix/templates/htmltextstream.h +sessioncontainer.o: ../../winix/core/textstream.h misc.h sessioncontainer.o: ../../pikotools/utf8/utf8.h sessioncontainer.o: ../../pikotools/space/spacetojson.h mount.h log.h -sessioncontainer.o: logmanipulators.h slog.h ../templates/locale.h +sessioncontainer.o: logmanipulators.h slog.h ../../winix/templates/locale.h sessionmanager.o: sessionmanager.h sessioncontainer.h session.h item.h sessionmanager.o: ../../pikotools/space/space.h ../../pikotools/date/date.h sessionmanager.o: error.h user.h plugindata.h rebus.h textstream.h ipban.h @@ -678,53 +815,74 @@ sessionmanager.o: ../../pikotools/textstream/types.h config.h sessionmanager.o: ../../pikotools/space/spaceparser.h sessionmanager.o: ../../pikotools/space/space.h sessionmanager.o: ../../pikotools/textstream/types.h htmlfilter.h -sessionmanager.o: ../templates/htmltextstream.h ../core/textstream.h misc.h +sessionmanager.o: ../../winix/templates/htmltextstream.h +sessionmanager.o: ../../winix/core/textstream.h misc.h sessionmanager.o: ../../pikotools/utf8/utf8.h sessionmanager.o: ../../pikotools/space/spacetojson.h mount.h sessionmanager.o: ipbancontainer.h lastcontainer.h system.h job.h -sessionmanager.o: basethread.h synchro.h dirs.h dircontainer.h ../db/db.h -sessionmanager.o: ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h -sessionmanager.o: ../core/error.h ../db/dbitemquery.h ../core/item.h -sessionmanager.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -sessionmanager.o: ../core/dircontainer.h ../core/ugcontainer.h log.h -sessionmanager.o: logmanipulators.h slog.h ../templates/locale.h -sessionmanager.o: ../notify/notify.h ../notify/notifypool.h -sessionmanager.o: ../templates/patterns.h ../templates/locale.h -sessionmanager.o: ../templates/localefilter.h ../../ezc/src/ezc.h +sessionmanager.o: basethread.h synchro.h dirs.h dircontainer.h +sessionmanager.o: ../../winix/db/db.h ../../winix/db/dbbase.h +sessionmanager.o: ../../winix/db/dbconn.h ../../winix/db/dbtextstream.h +sessionmanager.o: ../../winix/core/error.h ../../winix/db/dbitemquery.h +sessionmanager.o: ../../winix/core/item.h ../../winix/db/dbitemcolumns.h +sessionmanager.o: ../../winix/core/user.h ../../winix/core/group.h +sessionmanager.o: ../../winix/core/dircontainer.h +sessionmanager.o: ../../winix/core/ugcontainer.h log.h logmanipulators.h +sessionmanager.o: slog.h ../../winix/templates/locale.h +sessionmanager.o: ../../winix/notify/notify.h ../../winix/notify/notifypool.h +sessionmanager.o: ../../winix/templates/patterns.h +sessionmanager.o: ../../winix/templates/locale.h +sessionmanager.o: ../../winix/templates/localefilter.h ../../ezc/src/ezc.h sessionmanager.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h sessionmanager.o: ../../ezc/src/functions.h ../../ezc/src/funinfo.h -sessionmanager.o: ../../ezc/src/stringconv.h ../notify/notifythread.h -sessionmanager.o: ../core/basethread.h ../notify/templatesnotify.h -sessionmanager.o: ../core/config.h ../core/users.h ugcontainer.h mounts.h -sessionmanager.o: mountparser.h crypt.h run.h users.h groups.h group.h -sessionmanager.o: loadavg.h image.h threadmanager.h timezones.h timezone.h -sessionmanager.o: sessionparser.h plugin.h pluginmsg.h -sessionmanager.o: ../functions/functions.h ../functions/functionbase.h -sessionmanager.o: ../core/request.h ../core/system.h ../core/synchro.h -sessionmanager.o: ../functions/functionparser.h ../core/cur.h -sessionmanager.o: ../functions/account.h ../functions/adduser.h -sessionmanager.o: ../functions/cat.h ../functions/chmod.h -sessionmanager.o: ../functions/privchanger.h ../functions/chown.h -sessionmanager.o: ../functions/ckeditor.h ../functions/cp.h -sessionmanager.o: ../functions/default.h ../functions/download.h -sessionmanager.o: ../functions/emacs.h ../functions/env.h -sessionmanager.o: ../functions/imgcrop.h ../functions/last.h -sessionmanager.o: ../functions/login.h ../functions/logout.h -sessionmanager.o: ../functions/ln.h ../functions/ls.h ../functions/man.h -sessionmanager.o: ../functions/meta.h ../functions/mkdir.h ../functions/mv.h -sessionmanager.o: ../functions/nicedit.h ../functions/node.h -sessionmanager.o: ../functions/passwd.h ../functions/priv.h ../functions/pw.h -sessionmanager.o: ../functions/reload.h ../functions/rm.h -sessionmanager.o: ../functions/rmuser.h ../functions/sort.h -sessionmanager.o: ../functions/specialdefault.h ../functions/stat.h -sessionmanager.o: ../functions/subject.h ../functions/template.h -sessionmanager.o: ../functions/tinymce.h ../functions/uname.h -sessionmanager.o: ../functions/upload.h ../functions/uptime.h -sessionmanager.o: ../functions/who.h ../functions/vim.h ../core/htmlfilter.h -sessionmanager.o: ../templates/templates.h ../templates/patterncacher.h -sessionmanager.o: ../templates/indexpatterns.h ../templates/patterns.h -sessionmanager.o: ../templates/changepatterns.h ../templates/htmltextstream.h -sessionmanager.o: ../core/sessionmanager.h +sessionmanager.o: ../../ezc/src/stringconv.h +sessionmanager.o: ../../winix/notify/notifythread.h +sessionmanager.o: ../../winix/core/basethread.h +sessionmanager.o: ../../winix/notify/templatesnotify.h +sessionmanager.o: ../../winix/core/config.h ../../winix/core/users.h +sessionmanager.o: ugcontainer.h mounts.h mountparser.h crypt.h run.h users.h +sessionmanager.o: groups.h group.h loadavg.h image.h threadmanager.h +sessionmanager.o: timezones.h timezone.h sessionparser.h plugin.h pluginmsg.h +sessionmanager.o: ../../winix/functions/functions.h +sessionmanager.o: ../../winix/functions/functionbase.h +sessionmanager.o: ../../winix/core/request.h ../../winix/core/system.h +sessionmanager.o: ../../winix/core/synchro.h +sessionmanager.o: ../../winix/functions/functionparser.h +sessionmanager.o: ../../winix/core/cur.h ../../winix/functions/account.h +sessionmanager.o: ../../winix/functions/adduser.h ../../winix/functions/cat.h +sessionmanager.o: ../../winix/functions/chmod.h +sessionmanager.o: ../../winix/functions/privchanger.h +sessionmanager.o: ../../winix/functions/chown.h +sessionmanager.o: ../../winix/functions/ckeditor.h ../../winix/functions/cp.h +sessionmanager.o: ../../winix/functions/default.h +sessionmanager.o: ../../winix/functions/download.h +sessionmanager.o: ../../winix/functions/emacs.h ../../winix/functions/env.h +sessionmanager.o: ../../winix/functions/imgcrop.h +sessionmanager.o: ../../winix/functions/last.h ../../winix/functions/login.h +sessionmanager.o: ../../winix/functions/logout.h ../../winix/functions/ln.h +sessionmanager.o: ../../winix/functions/ls.h ../../winix/functions/man.h +sessionmanager.o: ../../winix/functions/meta.h ../../winix/functions/mkdir.h +sessionmanager.o: ../../winix/functions/mv.h ../../winix/functions/nicedit.h +sessionmanager.o: ../../winix/functions/node.h ../../winix/functions/passwd.h +sessionmanager.o: ../../winix/functions/priv.h ../../winix/functions/pw.h +sessionmanager.o: ../../winix/functions/reload.h ../../winix/functions/rm.h +sessionmanager.o: ../../winix/functions/rmuser.h ../../winix/functions/sort.h +sessionmanager.o: ../../winix/functions/specialdefault.h +sessionmanager.o: ../../winix/functions/stat.h +sessionmanager.o: ../../winix/functions/subject.h +sessionmanager.o: ../../winix/functions/template.h +sessionmanager.o: ../../winix/functions/tinymce.h +sessionmanager.o: ../../winix/functions/uname.h +sessionmanager.o: ../../winix/functions/upload.h +sessionmanager.o: ../../winix/functions/uptime.h ../../winix/functions/who.h +sessionmanager.o: ../../winix/functions/vim.h ../../winix/core/htmlfilter.h +sessionmanager.o: ../../winix/templates/templates.h +sessionmanager.o: ../../winix/templates/patterncacher.h +sessionmanager.o: ../../winix/templates/indexpatterns.h +sessionmanager.o: ../../winix/templates/patterns.h +sessionmanager.o: ../../winix/templates/changepatterns.h +sessionmanager.o: ../../winix/templates/htmltextstream.h +sessionmanager.o: ../../winix/core/sessionmanager.h sessionparser.o: sessionparser.h session.h item.h sessionparser.o: ../../pikotools/space/space.h ../../pikotools/date/date.h sessionparser.o: error.h user.h plugindata.h rebus.h textstream.h ipban.h @@ -737,10 +895,11 @@ sessionparser.o: ../../pikotools/textstream/types.h config.h sessionparser.o: ../../pikotools/space/spaceparser.h sessionparser.o: ../../pikotools/space/space.h sessionparser.o: ../../pikotools/textstream/types.h htmlfilter.h -sessionparser.o: ../templates/htmltextstream.h ../core/textstream.h misc.h +sessionparser.o: ../../winix/templates/htmltextstream.h +sessionparser.o: ../../winix/core/textstream.h misc.h sessionparser.o: ../../pikotools/utf8/utf8.h sessionparser.o: ../../pikotools/space/spacetojson.h mount.h users.h log.h -sessionparser.o: logmanipulators.h slog.h ../templates/locale.h +sessionparser.o: logmanipulators.h slog.h ../../winix/templates/locale.h slog.o: slog.h cur.h request.h requesttypes.h slog.o: ../../pikotools/textstream/textstream.h ../../pikotools/space/space.h slog.o: ../../pikotools/date/date.h ../../pikotools/convert/convert.h @@ -749,61 +908,73 @@ slog.o: ../../pikotools/membuffer/membuffer.h slog.o: ../../pikotools/textstream/types.h item.h error.h config.h slog.o: ../../pikotools/space/spaceparser.h ../../pikotools/space/space.h slog.o: ../../pikotools/textstream/types.h htmlfilter.h textstream.h -slog.o: ../templates/htmltextstream.h ../core/textstream.h misc.h -slog.o: ../../pikotools/utf8/utf8.h ../../pikotools/space/spacetojson.h -slog.o: session.h user.h plugindata.h rebus.h ipban.h mount.h -slog.o: logmanipulators.h ../templates/locale.h +slog.o: ../../winix/templates/htmltextstream.h ../../winix/core/textstream.h +slog.o: misc.h ../../pikotools/utf8/utf8.h +slog.o: ../../pikotools/space/spacetojson.h session.h user.h plugindata.h +slog.o: rebus.h ipban.h mount.h logmanipulators.h +slog.o: ../../winix/templates/locale.h synchro.o: synchro.h system.o: system.h job.h basethread.h synchro.h ../../pikotools/space/space.h -system.o: dirs.h item.h ../../pikotools/date/date.h dircontainer.h ../db/db.h -system.o: ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h -system.o: ../core/textstream.h misc.h requesttypes.h -system.o: ../../pikotools/textstream/textstream.h +system.o: dirs.h item.h ../../pikotools/date/date.h dircontainer.h +system.o: ../../winix/db/db.h ../../winix/db/dbbase.h ../../winix/db/dbconn.h +system.o: ../../winix/db/dbtextstream.h ../../winix/core/textstream.h misc.h +system.o: requesttypes.h ../../pikotools/textstream/textstream.h system.o: ../../pikotools/convert/convert.h system.o: ../../pikotools/convert/inttostr.h system.o: ../../pikotools/membuffer/membuffer.h system.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -system.o: ../core/error.h ../../pikotools/space/spaceparser.h +system.o: ../../winix/core/error.h ../../pikotools/space/spaceparser.h system.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h -system.o: ../db/dbitemquery.h ../core/item.h ../db/dbitemcolumns.h -system.o: ../core/user.h ../core/group.h ../core/dircontainer.h -system.o: ../core/ugcontainer.h log.h textstream.h logmanipulators.h slog.h -system.o: cur.h request.h error.h config.h htmlfilter.h -system.o: ../templates/htmltextstream.h ../../pikotools/space/spacetojson.h -system.o: session.h user.h plugindata.h rebus.h ipban.h mount.h -system.o: ../templates/locale.h ../notify/notify.h ../notify/notifypool.h -system.o: ../templates/patterns.h ../templates/locale.h -system.o: ../templates/localefilter.h ../../ezc/src/ezc.h +system.o: ../../winix/db/dbitemquery.h ../../winix/core/item.h +system.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +system.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +system.o: ../../winix/core/ugcontainer.h log.h textstream.h logmanipulators.h +system.o: slog.h cur.h request.h error.h config.h htmlfilter.h +system.o: ../../winix/templates/htmltextstream.h +system.o: ../../pikotools/space/spacetojson.h session.h user.h plugindata.h +system.o: rebus.h ipban.h mount.h ../../winix/templates/locale.h +system.o: ../../winix/notify/notify.h ../../winix/notify/notifypool.h +system.o: ../../winix/templates/patterns.h ../../winix/templates/locale.h +system.o: ../../winix/templates/localefilter.h ../../ezc/src/ezc.h system.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h system.o: ../../ezc/src/functions.h ../../ezc/src/funinfo.h -system.o: ../../ezc/src/stringconv.h ../notify/notifythread.h -system.o: ../core/basethread.h ../notify/templatesnotify.h ../core/config.h -system.o: ../core/users.h ugcontainer.h lastcontainer.h mounts.h -system.o: mountparser.h crypt.h run.h users.h groups.h group.h loadavg.h -system.o: image.h threadmanager.h timezones.h timezone.h -system.o: ../templates/templates.h ../templates/patterncacher.h -system.o: ../templates/indexpatterns.h ../templates/patterns.h -system.o: ../templates/changepatterns.h ../templates/htmltextstream.h -system.o: ../core/cur.h ../core/system.h ../core/sessionmanager.h -system.o: ../core/htmlfilter.h ../functions/functions.h -system.o: ../functions/functionbase.h ../core/request.h ../core/synchro.h -system.o: ../functions/functionparser.h ../functions/account.h -system.o: ../functions/adduser.h ../functions/cat.h ../functions/chmod.h -system.o: ../functions/privchanger.h ../functions/chown.h -system.o: ../functions/ckeditor.h ../functions/cp.h ../functions/default.h -system.o: ../functions/download.h ../functions/emacs.h ../functions/env.h -system.o: ../functions/imgcrop.h ../functions/last.h ../functions/login.h -system.o: ../functions/logout.h ../functions/ln.h ../functions/ls.h -system.o: ../functions/man.h ../functions/meta.h ../functions/mkdir.h -system.o: ../functions/mv.h ../functions/nicedit.h ../functions/node.h -system.o: ../functions/passwd.h ../functions/priv.h ../functions/pw.h -system.o: ../functions/reload.h ../functions/rm.h ../functions/rmuser.h -system.o: ../functions/sort.h ../functions/specialdefault.h -system.o: ../functions/stat.h ../functions/subject.h ../functions/template.h -system.o: ../functions/tinymce.h ../functions/uname.h ../functions/upload.h -system.o: ../functions/uptime.h ../functions/who.h ../functions/vim.h -system.o: plugin.h pluginmsg.h sessionmanager.h sessioncontainer.h -system.o: ipbancontainer.h +system.o: ../../ezc/src/stringconv.h ../../winix/notify/notifythread.h +system.o: ../../winix/core/basethread.h ../../winix/notify/templatesnotify.h +system.o: ../../winix/core/config.h ../../winix/core/users.h ugcontainer.h +system.o: lastcontainer.h mounts.h mountparser.h crypt.h run.h users.h +system.o: groups.h group.h loadavg.h image.h threadmanager.h timezones.h +system.o: timezone.h ../../winix/templates/templates.h +system.o: ../../winix/templates/patterncacher.h +system.o: ../../winix/templates/indexpatterns.h +system.o: ../../winix/templates/patterns.h +system.o: ../../winix/templates/changepatterns.h +system.o: ../../winix/templates/htmltextstream.h ../../winix/core/cur.h +system.o: ../../winix/core/system.h ../../winix/core/sessionmanager.h +system.o: ../../winix/core/htmlfilter.h ../../winix/functions/functions.h +system.o: ../../winix/functions/functionbase.h ../../winix/core/request.h +system.o: ../../winix/core/synchro.h ../../winix/functions/functionparser.h +system.o: ../../winix/functions/account.h ../../winix/functions/adduser.h +system.o: ../../winix/functions/cat.h ../../winix/functions/chmod.h +system.o: ../../winix/functions/privchanger.h ../../winix/functions/chown.h +system.o: ../../winix/functions/ckeditor.h ../../winix/functions/cp.h +system.o: ../../winix/functions/default.h ../../winix/functions/download.h +system.o: ../../winix/functions/emacs.h ../../winix/functions/env.h +system.o: ../../winix/functions/imgcrop.h ../../winix/functions/last.h +system.o: ../../winix/functions/login.h ../../winix/functions/logout.h +system.o: ../../winix/functions/ln.h ../../winix/functions/ls.h +system.o: ../../winix/functions/man.h ../../winix/functions/meta.h +system.o: ../../winix/functions/mkdir.h ../../winix/functions/mv.h +system.o: ../../winix/functions/nicedit.h ../../winix/functions/node.h +system.o: ../../winix/functions/passwd.h ../../winix/functions/priv.h +system.o: ../../winix/functions/pw.h ../../winix/functions/reload.h +system.o: ../../winix/functions/rm.h ../../winix/functions/rmuser.h +system.o: ../../winix/functions/sort.h ../../winix/functions/specialdefault.h +system.o: ../../winix/functions/stat.h ../../winix/functions/subject.h +system.o: ../../winix/functions/template.h ../../winix/functions/tinymce.h +system.o: ../../winix/functions/uname.h ../../winix/functions/upload.h +system.o: ../../winix/functions/uptime.h ../../winix/functions/who.h +system.o: ../../winix/functions/vim.h plugin.h pluginmsg.h sessionmanager.h +system.o: sessioncontainer.h ipbancontainer.h threadmanager.o: threadmanager.h basethread.h synchro.h log.h textstream.h threadmanager.o: logmanipulators.h ../../pikotools/textstream/textstream.h threadmanager.o: ../../pikotools/space/space.h ../../pikotools/date/date.h @@ -815,10 +986,12 @@ threadmanager.o: requesttypes.h item.h error.h config.h threadmanager.o: ../../pikotools/space/spaceparser.h threadmanager.o: ../../pikotools/space/space.h threadmanager.o: ../../pikotools/textstream/types.h htmlfilter.h -threadmanager.o: ../templates/htmltextstream.h ../core/textstream.h misc.h +threadmanager.o: ../../winix/templates/htmltextstream.h +threadmanager.o: ../../winix/core/textstream.h misc.h threadmanager.o: ../../pikotools/utf8/utf8.h threadmanager.o: ../../pikotools/space/spacetojson.h session.h user.h -threadmanager.o: plugindata.h rebus.h ipban.h mount.h ../templates/locale.h +threadmanager.o: plugindata.h rebus.h ipban.h mount.h +threadmanager.o: ../../winix/templates/locale.h timezone.o: timezone.h ../../pikotools/date/date.h timezone.o: ../../pikotools/space/space.h misc.h item.h requesttypes.h timezone.o: ../../pikotools/textstream/textstream.h @@ -837,10 +1010,12 @@ timezones.o: ../../pikotools/convert/inttostr.h timezones.o: ../../pikotools/membuffer/membuffer.h timezones.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h timezones.o: log.h textstream.h logmanipulators.h slog.h cur.h request.h -timezones.o: error.h config.h htmlfilter.h ../templates/htmltextstream.h -timezones.o: ../core/textstream.h ../../pikotools/space/spacetojson.h -timezones.o: session.h user.h plugindata.h rebus.h ipban.h mount.h -timezones.o: ../templates/locale.h +timezones.o: error.h config.h htmlfilter.h +timezones.o: ../../winix/templates/htmltextstream.h +timezones.o: ../../winix/core/textstream.h +timezones.o: ../../pikotools/space/spacetojson.h session.h user.h +timezones.o: plugindata.h rebus.h ipban.h mount.h +timezones.o: ../../winix/templates/locale.h user.o: user.h users.o: users.h sessionmanager.h sessioncontainer.h session.h item.h users.o: ../../pikotools/space/space.h ../../pikotools/date/date.h error.h @@ -851,41 +1026,56 @@ users.o: ../../pikotools/membuffer/membuffer.h users.o: ../../pikotools/textstream/types.h config.h users.o: ../../pikotools/space/spaceparser.h ../../pikotools/space/space.h users.o: ../../pikotools/textstream/types.h htmlfilter.h -users.o: ../templates/htmltextstream.h ../core/textstream.h misc.h -users.o: ../../pikotools/utf8/utf8.h ../../pikotools/space/spacetojson.h -users.o: mount.h ipbancontainer.h lastcontainer.h system.h job.h basethread.h -users.o: synchro.h dirs.h dircontainer.h ../db/db.h ../db/dbbase.h -users.o: ../db/dbconn.h ../db/dbtextstream.h ../core/error.h -users.o: ../db/dbitemquery.h ../core/item.h ../db/dbitemcolumns.h -users.o: ../core/user.h ../core/group.h ../core/dircontainer.h -users.o: ../core/ugcontainer.h log.h logmanipulators.h slog.h -users.o: ../templates/locale.h ../notify/notify.h ../notify/notifypool.h -users.o: ../templates/patterns.h ../templates/locale.h -users.o: ../templates/localefilter.h ../../ezc/src/ezc.h +users.o: ../../winix/templates/htmltextstream.h ../../winix/core/textstream.h +users.o: misc.h ../../pikotools/utf8/utf8.h +users.o: ../../pikotools/space/spacetojson.h mount.h ipbancontainer.h +users.o: lastcontainer.h system.h job.h basethread.h synchro.h dirs.h +users.o: dircontainer.h ../../winix/db/db.h ../../winix/db/dbbase.h +users.o: ../../winix/db/dbconn.h ../../winix/db/dbtextstream.h +users.o: ../../winix/core/error.h ../../winix/db/dbitemquery.h +users.o: ../../winix/core/item.h ../../winix/db/dbitemcolumns.h +users.o: ../../winix/core/user.h ../../winix/core/group.h +users.o: ../../winix/core/dircontainer.h ../../winix/core/ugcontainer.h log.h +users.o: logmanipulators.h slog.h ../../winix/templates/locale.h +users.o: ../../winix/notify/notify.h ../../winix/notify/notifypool.h +users.o: ../../winix/templates/patterns.h ../../winix/templates/locale.h +users.o: ../../winix/templates/localefilter.h ../../ezc/src/ezc.h users.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h users.o: ../../ezc/src/functions.h ../../ezc/src/funinfo.h -users.o: ../../ezc/src/stringconv.h ../notify/notifythread.h -users.o: ../core/basethread.h ../notify/templatesnotify.h ../core/config.h -users.o: ../core/users.h ugcontainer.h mounts.h mountparser.h crypt.h run.h -users.o: groups.h group.h loadavg.h image.h threadmanager.h timezones.h -users.o: timezone.h plugin.h pluginmsg.h ../functions/functions.h -users.o: ../functions/functionbase.h ../core/request.h ../core/system.h -users.o: ../core/synchro.h ../functions/functionparser.h ../core/cur.h -users.o: ../functions/account.h ../functions/adduser.h ../functions/cat.h -users.o: ../functions/chmod.h ../functions/privchanger.h ../functions/chown.h -users.o: ../functions/ckeditor.h ../functions/cp.h ../functions/default.h -users.o: ../functions/download.h ../functions/emacs.h ../functions/env.h -users.o: ../functions/imgcrop.h ../functions/last.h ../functions/login.h -users.o: ../functions/logout.h ../functions/ln.h ../functions/ls.h -users.o: ../functions/man.h ../functions/meta.h ../functions/mkdir.h -users.o: ../functions/mv.h ../functions/nicedit.h ../functions/node.h -users.o: ../functions/passwd.h ../functions/priv.h ../functions/pw.h -users.o: ../functions/reload.h ../functions/rm.h ../functions/rmuser.h -users.o: ../functions/sort.h ../functions/specialdefault.h -users.o: ../functions/stat.h ../functions/subject.h ../functions/template.h -users.o: ../functions/tinymce.h ../functions/uname.h ../functions/upload.h -users.o: ../functions/uptime.h ../functions/who.h ../functions/vim.h -users.o: ../core/htmlfilter.h ../templates/templates.h -users.o: ../templates/patterncacher.h ../templates/indexpatterns.h -users.o: ../templates/patterns.h ../templates/changepatterns.h -users.o: ../templates/htmltextstream.h ../core/sessionmanager.h +users.o: ../../ezc/src/stringconv.h ../../winix/notify/notifythread.h +users.o: ../../winix/core/basethread.h ../../winix/notify/templatesnotify.h +users.o: ../../winix/core/config.h ../../winix/core/users.h ugcontainer.h +users.o: mounts.h mountparser.h crypt.h run.h groups.h group.h loadavg.h +users.o: image.h threadmanager.h timezones.h timezone.h plugin.h pluginmsg.h +users.o: ../../winix/functions/functions.h +users.o: ../../winix/functions/functionbase.h ../../winix/core/request.h +users.o: ../../winix/core/system.h ../../winix/core/synchro.h +users.o: ../../winix/functions/functionparser.h ../../winix/core/cur.h +users.o: ../../winix/functions/account.h ../../winix/functions/adduser.h +users.o: ../../winix/functions/cat.h ../../winix/functions/chmod.h +users.o: ../../winix/functions/privchanger.h ../../winix/functions/chown.h +users.o: ../../winix/functions/ckeditor.h ../../winix/functions/cp.h +users.o: ../../winix/functions/default.h ../../winix/functions/download.h +users.o: ../../winix/functions/emacs.h ../../winix/functions/env.h +users.o: ../../winix/functions/imgcrop.h ../../winix/functions/last.h +users.o: ../../winix/functions/login.h ../../winix/functions/logout.h +users.o: ../../winix/functions/ln.h ../../winix/functions/ls.h +users.o: ../../winix/functions/man.h ../../winix/functions/meta.h +users.o: ../../winix/functions/mkdir.h ../../winix/functions/mv.h +users.o: ../../winix/functions/nicedit.h ../../winix/functions/node.h +users.o: ../../winix/functions/passwd.h ../../winix/functions/priv.h +users.o: ../../winix/functions/pw.h ../../winix/functions/reload.h +users.o: ../../winix/functions/rm.h ../../winix/functions/rmuser.h +users.o: ../../winix/functions/sort.h ../../winix/functions/specialdefault.h +users.o: ../../winix/functions/stat.h ../../winix/functions/subject.h +users.o: ../../winix/functions/template.h ../../winix/functions/tinymce.h +users.o: ../../winix/functions/uname.h ../../winix/functions/upload.h +users.o: ../../winix/functions/uptime.h ../../winix/functions/who.h +users.o: ../../winix/functions/vim.h ../../winix/core/htmlfilter.h +users.o: ../../winix/templates/templates.h +users.o: ../../winix/templates/patterncacher.h +users.o: ../../winix/templates/indexpatterns.h +users.o: ../../winix/templates/patterns.h +users.o: ../../winix/templates/changepatterns.h +users.o: ../../winix/templates/htmltextstream.h +users.o: ../../winix/core/sessionmanager.h diff --git a/core/version.h b/core/version.h index f341dc7..91a54f6 100755 --- a/core/version.h +++ b/core/version.h @@ -13,7 +13,7 @@ #define WINIX_VER_MAJOR 0 #define WINIX_VER_MINOR 5 -#define WINIX_VER_REVISION 4 +#define WINIX_VER_REVISION 5 #endif diff --git a/db/Makefile b/db/Makefile index 14f7631..f25e1fc 100755 --- a/db/Makefile +++ b/db/Makefile @@ -5,11 +5,11 @@ all: $(o) %.o: %.cpp - $(CXX) -c $(CXXFLAGS) $< + $(CXX) -c $(CXXFLAGS) $(CXXWINIXINCLUDEFLAGS) $< depend: - makedepend -Y. -I.. -I../../ezc/src -I../../pikotools -I../../tito/src -f- *.cpp > Makefile.dep + makedepend -Y. $(CXXWINIXINCLUDEFLAGS) -f- *.cpp > Makefile.dep echo -n "o = " > Makefile.o.dep ls -1 *.cpp | xargs -I foo echo -n foo " " | sed -E "s/([^\.]*)\.cpp[ ]/\1\.o/g" >> Makefile.o.dep diff --git a/db/Makefile.dep b/db/Makefile.dep index 66a450b..2d6d499 100755 --- a/db/Makefile.dep +++ b/db/Makefile.dep @@ -1,59 +1,69 @@ # DO NOT DELETE -db.o: db.h dbbase.h dbconn.h dbtextstream.h ../core/textstream.h -db.o: ../core/misc.h ../core/item.h ../../pikotools/space/space.h -db.o: ../../pikotools/textstream/types.h ../../pikotools/date/date.h -db.o: ../core/requesttypes.h ../../pikotools/textstream/textstream.h +db.o: db.h dbbase.h dbconn.h dbtextstream.h ../../winix/core/textstream.h +db.o: ../../winix/core/misc.h ../../winix/core/item.h +db.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h +db.o: ../../pikotools/date/date.h ../../winix/core/requesttypes.h +db.o: ../../pikotools/textstream/textstream.h db.o: ../../pikotools/convert/convert.h ../../pikotools/convert/inttostr.h db.o: ../../pikotools/membuffer/membuffer.h db.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -db.o: ../core/error.h ../../pikotools/space/spaceparser.h -db.o: ../../pikotools/space/space.h dbitemquery.h ../core/item.h -db.o: dbitemcolumns.h ../core/user.h ../core/group.h ../core/dircontainer.h -db.o: ../core/ugcontainer.h ../core/log.h ../core/textstream.h -db.o: ../core/logmanipulators.h ../core/slog.h ../core/cur.h -db.o: ../core/request.h ../core/error.h ../core/config.h ../core/htmlfilter.h -db.o: ../templates/htmltextstream.h ../../pikotools/space/spacetojson.h -db.o: ../core/session.h ../core/user.h ../core/plugindata.h ../core/rebus.h -db.o: ../core/ipban.h ../core/mount.h ../templates/locale.h ../core/log.h -db.o: ../core/misc.h -dbbase.o: dbbase.h dbconn.h dbtextstream.h ../core/textstream.h -dbbase.o: ../core/misc.h ../core/item.h ../../pikotools/space/space.h -dbbase.o: ../../pikotools/textstream/types.h ../../pikotools/date/date.h -dbbase.o: ../core/requesttypes.h ../../pikotools/textstream/textstream.h +db.o: ../../winix/core/error.h ../../pikotools/space/spaceparser.h +db.o: ../../pikotools/space/space.h dbitemquery.h ../../winix/core/item.h +db.o: dbitemcolumns.h ../../winix/core/user.h ../../winix/core/group.h +db.o: ../../winix/core/dircontainer.h ../../winix/core/ugcontainer.h +db.o: ../../winix/core/log.h ../../winix/core/textstream.h +db.o: ../../winix/core/logmanipulators.h ../../winix/core/slog.h +db.o: ../../winix/core/cur.h ../../winix/core/request.h +db.o: ../../winix/core/error.h ../../winix/core/config.h +db.o: ../../winix/core/htmlfilter.h ../../winix/templates/htmltextstream.h +db.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +db.o: ../../winix/core/user.h ../../winix/core/plugindata.h +db.o: ../../winix/core/rebus.h ../../winix/core/ipban.h +db.o: ../../winix/core/mount.h ../../winix/templates/locale.h +db.o: ../../winix/core/log.h ../../winix/core/misc.h +dbbase.o: dbbase.h dbconn.h dbtextstream.h ../../winix/core/textstream.h +dbbase.o: ../../winix/core/misc.h ../../winix/core/item.h +dbbase.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h +dbbase.o: ../../pikotools/date/date.h ../../winix/core/requesttypes.h +dbbase.o: ../../pikotools/textstream/textstream.h dbbase.o: ../../pikotools/convert/convert.h dbbase.o: ../../pikotools/convert/inttostr.h dbbase.o: ../../pikotools/membuffer/membuffer.h dbbase.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -dbbase.o: ../core/error.h ../../pikotools/space/spaceparser.h -dbbase.o: ../../pikotools/space/space.h ../core/log.h ../core/misc.h -dbconn.o: dbconn.h dbtextstream.h ../core/textstream.h ../core/misc.h -dbconn.o: ../core/item.h ../../pikotools/space/space.h -dbconn.o: ../../pikotools/textstream/types.h ../../pikotools/date/date.h -dbconn.o: ../core/requesttypes.h ../../pikotools/textstream/textstream.h +dbbase.o: ../../winix/core/error.h ../../pikotools/space/spaceparser.h +dbbase.o: ../../pikotools/space/space.h ../../winix/core/log.h +dbbase.o: ../../winix/core/misc.h +dbconn.o: dbconn.h dbtextstream.h ../../winix/core/textstream.h +dbconn.o: ../../winix/core/misc.h ../../winix/core/item.h +dbconn.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h +dbconn.o: ../../pikotools/date/date.h ../../winix/core/requesttypes.h +dbconn.o: ../../pikotools/textstream/textstream.h dbconn.o: ../../pikotools/convert/convert.h dbconn.o: ../../pikotools/convert/inttostr.h dbconn.o: ../../pikotools/membuffer/membuffer.h dbconn.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -dbconn.o: ../core/log.h ../core/error.h -dbitemcolumns.o: dbitemcolumns.h ../core/item.h dbbase.h dbconn.h -dbitemcolumns.o: dbtextstream.h ../core/textstream.h ../core/misc.h -dbitemcolumns.o: ../core/item.h ../../pikotools/space/space.h +dbconn.o: ../../winix/core/log.h ../../winix/core/error.h +dbitemcolumns.o: dbitemcolumns.h ../../winix/core/item.h dbbase.h dbconn.h +dbitemcolumns.o: dbtextstream.h ../../winix/core/textstream.h +dbitemcolumns.o: ../../winix/core/misc.h ../../winix/core/item.h +dbitemcolumns.o: ../../pikotools/space/space.h dbitemcolumns.o: ../../pikotools/textstream/types.h -dbitemcolumns.o: ../../pikotools/date/date.h ../core/requesttypes.h +dbitemcolumns.o: ../../pikotools/date/date.h ../../winix/core/requesttypes.h dbitemcolumns.o: ../../pikotools/textstream/textstream.h dbitemcolumns.o: ../../pikotools/convert/convert.h dbitemcolumns.o: ../../pikotools/convert/inttostr.h dbitemcolumns.o: ../../pikotools/membuffer/membuffer.h dbitemcolumns.o: ../../pikotools/textstream/types.h -dbitemcolumns.o: ../../pikotools/utf8/utf8.h ../core/error.h +dbitemcolumns.o: ../../pikotools/utf8/utf8.h ../../winix/core/error.h dbitemcolumns.o: ../../pikotools/space/spaceparser.h -dbitemcolumns.o: ../../pikotools/space/space.h ../core/log.h -dbitemquery.o: dbitemquery.h ../core/item.h -dbtextstream.o: dbtextstream.h ../core/textstream.h ../core/misc.h -dbtextstream.o: ../core/item.h ../../pikotools/space/space.h +dbitemcolumns.o: ../../pikotools/space/space.h ../../winix/core/log.h +dbitemquery.o: dbitemquery.h ../../winix/core/item.h +dbtextstream.o: dbtextstream.h ../../winix/core/textstream.h +dbtextstream.o: ../../winix/core/misc.h ../../winix/core/item.h +dbtextstream.o: ../../pikotools/space/space.h dbtextstream.o: ../../pikotools/textstream/types.h -dbtextstream.o: ../../pikotools/date/date.h ../core/requesttypes.h +dbtextstream.o: ../../pikotools/date/date.h ../../winix/core/requesttypes.h dbtextstream.o: ../../pikotools/textstream/textstream.h dbtextstream.o: ../../pikotools/convert/convert.h dbtextstream.o: ../../pikotools/convert/inttostr.h diff --git a/functions/Makefile b/functions/Makefile index 14f7631..f25e1fc 100755 --- a/functions/Makefile +++ b/functions/Makefile @@ -5,11 +5,11 @@ all: $(o) %.o: %.cpp - $(CXX) -c $(CXXFLAGS) $< + $(CXX) -c $(CXXFLAGS) $(CXXWINIXINCLUDEFLAGS) $< depend: - makedepend -Y. -I.. -I../../ezc/src -I../../pikotools -I../../tito/src -f- *.cpp > Makefile.dep + makedepend -Y. $(CXXWINIXINCLUDEFLAGS) -f- *.cpp > Makefile.dep echo -n "o = " > Makefile.o.dep ls -1 *.cpp | xargs -I foo echo -n foo " " | sed -E "s/([^\.]*)\.cpp[ ]/\1\.o/g" >> Makefile.o.dep diff --git a/functions/Makefile.dep b/functions/Makefile.dep index 4aa188e..b53ebf1 100755 --- a/functions/Makefile.dep +++ b/functions/Makefile.dep @@ -1,470 +1,625 @@ # DO NOT DELETE -account.o: account.h functionbase.h ../core/item.h +account.o: account.h functionbase.h ../../winix/core/item.h account.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h -account.o: ../../pikotools/date/date.h ../db/db.h ../db/dbbase.h -account.o: ../db/dbconn.h ../db/dbtextstream.h ../core/textstream.h -account.o: ../core/misc.h ../core/item.h ../core/requesttypes.h +account.o: ../../pikotools/date/date.h ../../winix/db/db.h +account.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +account.o: ../../winix/db/dbtextstream.h ../../winix/core/textstream.h +account.o: ../../winix/core/misc.h ../../winix/core/item.h +account.o: ../../winix/core/requesttypes.h account.o: ../../pikotools/textstream/textstream.h account.o: ../../pikotools/convert/convert.h account.o: ../../pikotools/convert/inttostr.h account.o: ../../pikotools/membuffer/membuffer.h account.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -account.o: ../core/error.h ../../pikotools/space/spaceparser.h -account.o: ../../pikotools/space/space.h ../db/dbitemquery.h -account.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -account.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -account.o: ../core/textstream.h ../core/logmanipulators.h ../core/slog.h -account.o: ../core/cur.h ../core/request.h ../core/error.h ../core/config.h -account.o: ../core/htmlfilter.h ../templates/htmltextstream.h -account.o: ../../pikotools/space/spacetojson.h ../core/session.h -account.o: ../core/user.h ../core/plugindata.h ../core/rebus.h ipban.h -account.o: mount.h ../templates/locale.h ../core/request.h ../core/config.h -account.o: ../core/system.h ../core/job.h ../core/basethread.h -account.o: ../core/synchro.h ../core/dirs.h ../core/dircontainer.h -account.o: ../notify/notify.h ../notify/notifypool.h ../templates/patterns.h -account.o: locale.h ../templates/localefilter.h ../../ezc/src/ezc.h +account.o: ../../winix/core/error.h ../../pikotools/space/spaceparser.h +account.o: ../../pikotools/space/space.h ../../winix/db/dbitemquery.h +account.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +account.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +account.o: ../../winix/core/ugcontainer.h ../../winix/core/log.h +account.o: ../../winix/core/textstream.h ../../winix/core/logmanipulators.h +account.o: ../../winix/core/slog.h ../../winix/core/cur.h +account.o: ../../winix/core/request.h ../../winix/core/error.h +account.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h +account.o: ../../winix/templates/htmltextstream.h +account.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +account.o: ../../winix/core/user.h ../../winix/core/plugindata.h +account.o: ../../winix/core/rebus.h ipban.h mount.h +account.o: ../../winix/templates/locale.h ../../winix/core/request.h +account.o: ../../winix/core/config.h ../../winix/core/system.h +account.o: ../../winix/core/job.h ../../winix/core/basethread.h +account.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +account.o: ../../winix/core/dircontainer.h ../../winix/notify/notify.h +account.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +account.o: locale.h ../../winix/templates/localefilter.h ../../ezc/src/ezc.h account.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h -account.o: functionparser.h ../core/cur.h adduser.h cat.h chmod.h +account.o: functionparser.h ../../winix/core/cur.h adduser.h cat.h chmod.h account.o: privchanger.h chown.h ckeditor.h cp.h default.h download.h emacs.h account.o: env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h meta.h account.o: mkdir.h mv.h nicedit.h node.h passwd.h priv.h pw.h reload.h rm.h account.o: rmuser.h run.h sort.h specialdefault.h stat.h subject.h template.h account.o: timezone.h tinymce.h uname.h upload.h uptime.h who.h vim.h -account.o: ../core/htmlfilter.h ../../ezc/src/stringconv.h -account.o: ../notify/notifythread.h ../core/basethread.h -account.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h -account.o: ../core/lastcontainer.h ../core/mounts.h ../core/mountparser.h -account.o: ../core/crypt.h ../core/users.h ../core/groups.h ../core/group.h -account.o: ../core/loadavg.h ../core/image.h ../core/threadmanager.h -account.o: ../core/timezones.h ../core/synchro.h ../core/log.h ../core/misc.h -account.o: ../functions/functions.h -adduser.o: adduser.h functionbase.h ../core/item.h +account.o: ../../winix/core/htmlfilter.h ../../ezc/src/stringconv.h +account.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +account.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +account.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +account.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +account.o: ../../winix/core/crypt.h ../../winix/core/users.h +account.o: ../../winix/core/groups.h ../../winix/core/group.h +account.o: ../../winix/core/loadavg.h ../../winix/core/image.h +account.o: ../../winix/core/threadmanager.h ../../winix/core/timezones.h +account.o: ../../winix/core/synchro.h ../../winix/core/log.h +account.o: ../../winix/core/misc.h ../../winix/functions/functions.h +adduser.o: adduser.h functionbase.h ../../winix/core/item.h adduser.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h -adduser.o: ../../pikotools/date/date.h ../db/db.h ../db/dbbase.h -adduser.o: ../db/dbconn.h ../db/dbtextstream.h ../core/textstream.h -adduser.o: ../core/misc.h ../core/item.h ../core/requesttypes.h +adduser.o: ../../pikotools/date/date.h ../../winix/db/db.h +adduser.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +adduser.o: ../../winix/db/dbtextstream.h ../../winix/core/textstream.h +adduser.o: ../../winix/core/misc.h ../../winix/core/item.h +adduser.o: ../../winix/core/requesttypes.h adduser.o: ../../pikotools/textstream/textstream.h adduser.o: ../../pikotools/convert/convert.h adduser.o: ../../pikotools/convert/inttostr.h adduser.o: ../../pikotools/membuffer/membuffer.h adduser.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -adduser.o: ../core/error.h ../../pikotools/space/spaceparser.h -adduser.o: ../../pikotools/space/space.h ../db/dbitemquery.h -adduser.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -adduser.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -adduser.o: ../core/textstream.h ../core/logmanipulators.h ../core/slog.h -adduser.o: ../core/cur.h ../core/request.h ../core/error.h ../core/config.h -adduser.o: ../core/htmlfilter.h ../templates/htmltextstream.h -adduser.o: ../../pikotools/space/spacetojson.h ../core/session.h -adduser.o: ../core/user.h ../core/plugindata.h ../core/rebus.h ipban.h -adduser.o: mount.h ../templates/locale.h ../core/request.h ../core/config.h -adduser.o: ../core/system.h ../core/job.h ../core/basethread.h -adduser.o: ../core/synchro.h ../core/dirs.h ../core/dircontainer.h -adduser.o: ../notify/notify.h ../notify/notifypool.h ../templates/patterns.h -adduser.o: locale.h ../templates/localefilter.h ../../ezc/src/ezc.h +adduser.o: ../../winix/core/error.h ../../pikotools/space/spaceparser.h +adduser.o: ../../pikotools/space/space.h ../../winix/db/dbitemquery.h +adduser.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +adduser.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +adduser.o: ../../winix/core/ugcontainer.h ../../winix/core/log.h +adduser.o: ../../winix/core/textstream.h ../../winix/core/logmanipulators.h +adduser.o: ../../winix/core/slog.h ../../winix/core/cur.h +adduser.o: ../../winix/core/request.h ../../winix/core/error.h +adduser.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h +adduser.o: ../../winix/templates/htmltextstream.h +adduser.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +adduser.o: ../../winix/core/user.h ../../winix/core/plugindata.h +adduser.o: ../../winix/core/rebus.h ipban.h mount.h +adduser.o: ../../winix/templates/locale.h ../../winix/core/request.h +adduser.o: ../../winix/core/config.h ../../winix/core/system.h +adduser.o: ../../winix/core/job.h ../../winix/core/basethread.h +adduser.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +adduser.o: ../../winix/core/dircontainer.h ../../winix/notify/notify.h +adduser.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +adduser.o: locale.h ../../winix/templates/localefilter.h ../../ezc/src/ezc.h adduser.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h -adduser.o: functionparser.h ../core/cur.h account.h cat.h chmod.h +adduser.o: functionparser.h ../../winix/core/cur.h account.h cat.h chmod.h adduser.o: privchanger.h chown.h ckeditor.h cp.h default.h download.h emacs.h adduser.o: env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h meta.h adduser.o: mkdir.h mv.h nicedit.h node.h passwd.h priv.h pw.h reload.h rm.h adduser.o: rmuser.h run.h sort.h specialdefault.h stat.h subject.h template.h adduser.o: timezone.h tinymce.h uname.h upload.h uptime.h who.h vim.h -adduser.o: ../core/htmlfilter.h ../../ezc/src/stringconv.h -adduser.o: ../notify/notifythread.h ../core/basethread.h -adduser.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h -adduser.o: ../core/lastcontainer.h ../core/mounts.h ../core/mountparser.h -adduser.o: ../core/crypt.h ../core/users.h ../core/groups.h ../core/group.h -adduser.o: ../core/loadavg.h ../core/image.h ../core/threadmanager.h -adduser.o: ../core/timezones.h ../core/synchro.h ../core/slog.h -adduser.o: ../core/plugin.h ../core/pluginmsg.h ../core/system.h -adduser.o: ../core/sessionmanager.h ../core/sessioncontainer.h -adduser.o: ../core/ipbancontainer.h ../functions/functions.h -adduser.o: ../templates/templates.h ../templates/patterncacher.h -adduser.o: ../templates/indexpatterns.h ../templates/patterns.h -adduser.o: ../templates/changepatterns.h ../templates/htmltextstream.h -adduser.o: ../core/sessionmanager.h ../core/misc.h -cat.o: cat.h functionbase.h ../core/item.h ../../pikotools/space/space.h -cat.o: ../../pikotools/textstream/types.h ../../pikotools/date/date.h -cat.o: ../db/db.h ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h -cat.o: ../core/textstream.h ../core/misc.h ../core/item.h -cat.o: ../core/requesttypes.h ../../pikotools/textstream/textstream.h +adduser.o: ../../winix/core/htmlfilter.h ../../ezc/src/stringconv.h +adduser.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +adduser.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +adduser.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +adduser.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +adduser.o: ../../winix/core/crypt.h ../../winix/core/users.h +adduser.o: ../../winix/core/groups.h ../../winix/core/group.h +adduser.o: ../../winix/core/loadavg.h ../../winix/core/image.h +adduser.o: ../../winix/core/threadmanager.h ../../winix/core/timezones.h +adduser.o: ../../winix/core/synchro.h ../../winix/core/slog.h +adduser.o: ../../winix/core/plugin.h ../../winix/core/pluginmsg.h +adduser.o: ../../winix/core/system.h ../../winix/core/sessionmanager.h +adduser.o: ../../winix/core/sessioncontainer.h +adduser.o: ../../winix/core/ipbancontainer.h +adduser.o: ../../winix/functions/functions.h +adduser.o: ../../winix/templates/templates.h +adduser.o: ../../winix/templates/patterncacher.h +adduser.o: ../../winix/templates/indexpatterns.h +adduser.o: ../../winix/templates/patterns.h +adduser.o: ../../winix/templates/changepatterns.h +adduser.o: ../../winix/templates/htmltextstream.h +adduser.o: ../../winix/core/sessionmanager.h ../../winix/core/misc.h +cat.o: cat.h functionbase.h ../../winix/core/item.h +cat.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h +cat.o: ../../pikotools/date/date.h ../../winix/db/db.h +cat.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +cat.o: ../../winix/db/dbtextstream.h ../../winix/core/textstream.h +cat.o: ../../winix/core/misc.h ../../winix/core/item.h +cat.o: ../../winix/core/requesttypes.h +cat.o: ../../pikotools/textstream/textstream.h cat.o: ../../pikotools/convert/convert.h ../../pikotools/convert/inttostr.h cat.o: ../../pikotools/membuffer/membuffer.h cat.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -cat.o: ../core/error.h ../../pikotools/space/spaceparser.h -cat.o: ../../pikotools/space/space.h ../db/dbitemquery.h -cat.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -cat.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -cat.o: ../core/textstream.h ../core/logmanipulators.h ../core/slog.h -cat.o: ../core/cur.h ../core/request.h ../core/error.h ../core/config.h -cat.o: ../core/htmlfilter.h ../templates/htmltextstream.h -cat.o: ../../pikotools/space/spacetojson.h ../core/session.h ../core/user.h -cat.o: ../core/plugindata.h ../core/rebus.h ipban.h mount.h -cat.o: ../templates/locale.h ../core/request.h ../core/config.h -cat.o: ../core/system.h ../core/job.h ../core/basethread.h ../core/synchro.h -cat.o: ../core/dirs.h ../core/dircontainer.h ../notify/notify.h -cat.o: ../notify/notifypool.h ../templates/patterns.h locale.h -cat.o: ../templates/localefilter.h ../../ezc/src/ezc.h +cat.o: ../../winix/core/error.h ../../pikotools/space/spaceparser.h +cat.o: ../../pikotools/space/space.h ../../winix/db/dbitemquery.h +cat.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +cat.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +cat.o: ../../winix/core/ugcontainer.h ../../winix/core/log.h +cat.o: ../../winix/core/textstream.h ../../winix/core/logmanipulators.h +cat.o: ../../winix/core/slog.h ../../winix/core/cur.h +cat.o: ../../winix/core/request.h ../../winix/core/error.h +cat.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h +cat.o: ../../winix/templates/htmltextstream.h +cat.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +cat.o: ../../winix/core/user.h ../../winix/core/plugindata.h +cat.o: ../../winix/core/rebus.h ipban.h mount.h +cat.o: ../../winix/templates/locale.h ../../winix/core/request.h +cat.o: ../../winix/core/config.h ../../winix/core/system.h +cat.o: ../../winix/core/job.h ../../winix/core/basethread.h +cat.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +cat.o: ../../winix/core/dircontainer.h ../../winix/notify/notify.h +cat.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +cat.o: locale.h ../../winix/templates/localefilter.h ../../ezc/src/ezc.h cat.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h -cat.o: functionparser.h ../core/cur.h account.h adduser.h chmod.h +cat.o: functionparser.h ../../winix/core/cur.h account.h adduser.h chmod.h cat.o: privchanger.h chown.h ckeditor.h cp.h default.h download.h emacs.h cat.o: env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h meta.h mkdir.h cat.o: mv.h nicedit.h node.h passwd.h priv.h pw.h reload.h rm.h rmuser.h cat.o: run.h sort.h specialdefault.h stat.h subject.h template.h timezone.h -cat.o: tinymce.h uname.h upload.h uptime.h who.h vim.h ../core/htmlfilter.h -cat.o: ../../ezc/src/stringconv.h ../notify/notifythread.h -cat.o: ../core/basethread.h ../notify/templatesnotify.h ../core/users.h -cat.o: ../core/ugcontainer.h ../core/lastcontainer.h ../core/mounts.h -cat.o: ../core/mountparser.h ../core/crypt.h ../core/users.h ../core/groups.h -cat.o: ../core/group.h ../core/loadavg.h ../core/image.h -cat.o: ../core/threadmanager.h ../core/timezones.h ../core/synchro.h -chmod.o: chmod.h functionbase.h ../core/item.h ../../pikotools/space/space.h -chmod.o: ../../pikotools/textstream/types.h ../../pikotools/date/date.h -chmod.o: ../db/db.h ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h -chmod.o: ../core/textstream.h ../core/misc.h ../core/item.h -chmod.o: ../core/requesttypes.h ../../pikotools/textstream/textstream.h +cat.o: tinymce.h uname.h upload.h uptime.h who.h vim.h +cat.o: ../../winix/core/htmlfilter.h ../../ezc/src/stringconv.h +cat.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +cat.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +cat.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +cat.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +cat.o: ../../winix/core/crypt.h ../../winix/core/users.h +cat.o: ../../winix/core/groups.h ../../winix/core/group.h +cat.o: ../../winix/core/loadavg.h ../../winix/core/image.h +cat.o: ../../winix/core/threadmanager.h ../../winix/core/timezones.h +cat.o: ../../winix/core/synchro.h +chmod.o: chmod.h functionbase.h ../../winix/core/item.h +chmod.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h +chmod.o: ../../pikotools/date/date.h ../../winix/db/db.h +chmod.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +chmod.o: ../../winix/db/dbtextstream.h ../../winix/core/textstream.h +chmod.o: ../../winix/core/misc.h ../../winix/core/item.h +chmod.o: ../../winix/core/requesttypes.h +chmod.o: ../../pikotools/textstream/textstream.h chmod.o: ../../pikotools/convert/convert.h ../../pikotools/convert/inttostr.h chmod.o: ../../pikotools/membuffer/membuffer.h chmod.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -chmod.o: ../core/error.h ../../pikotools/space/spaceparser.h -chmod.o: ../../pikotools/space/space.h ../db/dbitemquery.h -chmod.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -chmod.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -chmod.o: ../core/textstream.h ../core/logmanipulators.h ../core/slog.h -chmod.o: ../core/cur.h ../core/request.h ../core/error.h ../core/config.h -chmod.o: ../core/htmlfilter.h ../templates/htmltextstream.h -chmod.o: ../../pikotools/space/spacetojson.h ../core/session.h ../core/user.h -chmod.o: ../core/plugindata.h ../core/rebus.h ipban.h mount.h -chmod.o: ../templates/locale.h ../core/request.h ../core/config.h -chmod.o: ../core/system.h ../core/job.h ../core/basethread.h -chmod.o: ../core/synchro.h ../core/dirs.h ../core/dircontainer.h -chmod.o: ../notify/notify.h ../notify/notifypool.h ../templates/patterns.h -chmod.o: locale.h ../templates/localefilter.h ../../ezc/src/ezc.h +chmod.o: ../../winix/core/error.h ../../pikotools/space/spaceparser.h +chmod.o: ../../pikotools/space/space.h ../../winix/db/dbitemquery.h +chmod.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +chmod.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +chmod.o: ../../winix/core/ugcontainer.h ../../winix/core/log.h +chmod.o: ../../winix/core/textstream.h ../../winix/core/logmanipulators.h +chmod.o: ../../winix/core/slog.h ../../winix/core/cur.h +chmod.o: ../../winix/core/request.h ../../winix/core/error.h +chmod.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h +chmod.o: ../../winix/templates/htmltextstream.h +chmod.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +chmod.o: ../../winix/core/user.h ../../winix/core/plugindata.h +chmod.o: ../../winix/core/rebus.h ipban.h mount.h +chmod.o: ../../winix/templates/locale.h ../../winix/core/request.h +chmod.o: ../../winix/core/config.h ../../winix/core/system.h +chmod.o: ../../winix/core/job.h ../../winix/core/basethread.h +chmod.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +chmod.o: ../../winix/core/dircontainer.h ../../winix/notify/notify.h +chmod.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +chmod.o: locale.h ../../winix/templates/localefilter.h ../../ezc/src/ezc.h chmod.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h -chmod.o: functionparser.h ../core/cur.h account.h adduser.h cat.h chown.h -chmod.o: privchanger.h ckeditor.h cp.h default.h download.h emacs.h env.h -chmod.o: imgcrop.h last.h login.h logout.h ln.h ls.h man.h meta.h mkdir.h -chmod.o: mv.h nicedit.h node.h passwd.h priv.h pw.h reload.h rm.h rmuser.h -chmod.o: run.h sort.h specialdefault.h stat.h subject.h template.h timezone.h -chmod.o: tinymce.h uname.h upload.h uptime.h who.h vim.h ../core/htmlfilter.h -chmod.o: ../../ezc/src/stringconv.h ../notify/notifythread.h -chmod.o: ../core/basethread.h ../notify/templatesnotify.h ../core/users.h -chmod.o: ../core/ugcontainer.h ../core/lastcontainer.h ../core/mounts.h -chmod.o: ../core/mountparser.h ../core/crypt.h ../core/users.h -chmod.o: ../core/groups.h ../core/group.h ../core/loadavg.h ../core/image.h -chmod.o: ../core/threadmanager.h ../core/timezones.h ../core/synchro.h -chown.o: chown.h functionbase.h ../core/item.h ../../pikotools/space/space.h -chown.o: ../../pikotools/textstream/types.h ../../pikotools/date/date.h -chown.o: ../db/db.h ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h -chown.o: ../core/textstream.h ../core/misc.h ../core/item.h -chown.o: ../core/requesttypes.h ../../pikotools/textstream/textstream.h +chmod.o: functionparser.h ../../winix/core/cur.h account.h adduser.h cat.h +chmod.o: chown.h privchanger.h ckeditor.h cp.h default.h download.h emacs.h +chmod.o: env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h meta.h +chmod.o: mkdir.h mv.h nicedit.h node.h passwd.h priv.h pw.h reload.h rm.h +chmod.o: rmuser.h run.h sort.h specialdefault.h stat.h subject.h template.h +chmod.o: timezone.h tinymce.h uname.h upload.h uptime.h who.h vim.h +chmod.o: ../../winix/core/htmlfilter.h ../../ezc/src/stringconv.h +chmod.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +chmod.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +chmod.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +chmod.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +chmod.o: ../../winix/core/crypt.h ../../winix/core/users.h +chmod.o: ../../winix/core/groups.h ../../winix/core/group.h +chmod.o: ../../winix/core/loadavg.h ../../winix/core/image.h +chmod.o: ../../winix/core/threadmanager.h ../../winix/core/timezones.h +chmod.o: ../../winix/core/synchro.h +chown.o: chown.h functionbase.h ../../winix/core/item.h +chown.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h +chown.o: ../../pikotools/date/date.h ../../winix/db/db.h +chown.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +chown.o: ../../winix/db/dbtextstream.h ../../winix/core/textstream.h +chown.o: ../../winix/core/misc.h ../../winix/core/item.h +chown.o: ../../winix/core/requesttypes.h +chown.o: ../../pikotools/textstream/textstream.h chown.o: ../../pikotools/convert/convert.h ../../pikotools/convert/inttostr.h chown.o: ../../pikotools/membuffer/membuffer.h chown.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -chown.o: ../core/error.h ../../pikotools/space/spaceparser.h -chown.o: ../../pikotools/space/space.h ../db/dbitemquery.h -chown.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -chown.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -chown.o: ../core/textstream.h ../core/logmanipulators.h ../core/slog.h -chown.o: ../core/cur.h ../core/request.h ../core/error.h ../core/config.h -chown.o: ../core/htmlfilter.h ../templates/htmltextstream.h -chown.o: ../../pikotools/space/spacetojson.h ../core/session.h ../core/user.h -chown.o: ../core/plugindata.h ../core/rebus.h ipban.h mount.h -chown.o: ../templates/locale.h ../core/request.h ../core/config.h -chown.o: ../core/system.h ../core/job.h ../core/basethread.h -chown.o: ../core/synchro.h ../core/dirs.h ../core/dircontainer.h -chown.o: ../notify/notify.h ../notify/notifypool.h ../templates/patterns.h -chown.o: locale.h ../templates/localefilter.h ../../ezc/src/ezc.h +chown.o: ../../winix/core/error.h ../../pikotools/space/spaceparser.h +chown.o: ../../pikotools/space/space.h ../../winix/db/dbitemquery.h +chown.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +chown.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +chown.o: ../../winix/core/ugcontainer.h ../../winix/core/log.h +chown.o: ../../winix/core/textstream.h ../../winix/core/logmanipulators.h +chown.o: ../../winix/core/slog.h ../../winix/core/cur.h +chown.o: ../../winix/core/request.h ../../winix/core/error.h +chown.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h +chown.o: ../../winix/templates/htmltextstream.h +chown.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +chown.o: ../../winix/core/user.h ../../winix/core/plugindata.h +chown.o: ../../winix/core/rebus.h ipban.h mount.h +chown.o: ../../winix/templates/locale.h ../../winix/core/request.h +chown.o: ../../winix/core/config.h ../../winix/core/system.h +chown.o: ../../winix/core/job.h ../../winix/core/basethread.h +chown.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +chown.o: ../../winix/core/dircontainer.h ../../winix/notify/notify.h +chown.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +chown.o: locale.h ../../winix/templates/localefilter.h ../../ezc/src/ezc.h chown.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h -chown.o: functionparser.h ../core/cur.h account.h adduser.h cat.h chmod.h -chown.o: privchanger.h ckeditor.h cp.h default.h download.h emacs.h env.h -chown.o: imgcrop.h last.h login.h logout.h ln.h ls.h man.h meta.h mkdir.h -chown.o: mv.h nicedit.h node.h passwd.h priv.h pw.h reload.h rm.h rmuser.h -chown.o: run.h sort.h specialdefault.h stat.h subject.h template.h timezone.h -chown.o: tinymce.h uname.h upload.h uptime.h who.h vim.h ../core/htmlfilter.h -chown.o: ../../ezc/src/stringconv.h ../notify/notifythread.h -chown.o: ../core/basethread.h ../notify/templatesnotify.h ../core/users.h -chown.o: ../core/ugcontainer.h ../core/lastcontainer.h ../core/mounts.h -chown.o: ../core/mountparser.h ../core/crypt.h ../core/users.h -chown.o: ../core/groups.h ../core/group.h ../core/loadavg.h ../core/image.h -chown.o: ../core/threadmanager.h ../core/timezones.h ../core/synchro.h -ckeditor.o: ckeditor.h functionbase.h ../core/item.h +chown.o: functionparser.h ../../winix/core/cur.h account.h adduser.h cat.h +chown.o: chmod.h privchanger.h ckeditor.h cp.h default.h download.h emacs.h +chown.o: env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h meta.h +chown.o: mkdir.h mv.h nicedit.h node.h passwd.h priv.h pw.h reload.h rm.h +chown.o: rmuser.h run.h sort.h specialdefault.h stat.h subject.h template.h +chown.o: timezone.h tinymce.h uname.h upload.h uptime.h who.h vim.h +chown.o: ../../winix/core/htmlfilter.h ../../ezc/src/stringconv.h +chown.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +chown.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +chown.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +chown.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +chown.o: ../../winix/core/crypt.h ../../winix/core/users.h +chown.o: ../../winix/core/groups.h ../../winix/core/group.h +chown.o: ../../winix/core/loadavg.h ../../winix/core/image.h +chown.o: ../../winix/core/threadmanager.h ../../winix/core/timezones.h +chown.o: ../../winix/core/synchro.h +ckeditor.o: ckeditor.h functionbase.h ../../winix/core/item.h ckeditor.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h -ckeditor.o: ../../pikotools/date/date.h ../db/db.h ../db/dbbase.h -ckeditor.o: ../db/dbconn.h ../db/dbtextstream.h ../core/textstream.h -ckeditor.o: ../core/misc.h ../core/item.h ../core/requesttypes.h +ckeditor.o: ../../pikotools/date/date.h ../../winix/db/db.h +ckeditor.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +ckeditor.o: ../../winix/db/dbtextstream.h ../../winix/core/textstream.h +ckeditor.o: ../../winix/core/misc.h ../../winix/core/item.h +ckeditor.o: ../../winix/core/requesttypes.h ckeditor.o: ../../pikotools/textstream/textstream.h ckeditor.o: ../../pikotools/convert/convert.h ckeditor.o: ../../pikotools/convert/inttostr.h ckeditor.o: ../../pikotools/membuffer/membuffer.h ckeditor.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -ckeditor.o: ../core/error.h ../../pikotools/space/spaceparser.h -ckeditor.o: ../../pikotools/space/space.h ../db/dbitemquery.h -ckeditor.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -ckeditor.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -ckeditor.o: ../core/textstream.h ../core/logmanipulators.h ../core/slog.h -ckeditor.o: ../core/cur.h ../core/request.h ../core/error.h ../core/config.h -ckeditor.o: ../core/htmlfilter.h ../templates/htmltextstream.h -ckeditor.o: ../../pikotools/space/spacetojson.h ../core/session.h -ckeditor.o: ../core/user.h ../core/plugindata.h ../core/rebus.h ipban.h -ckeditor.o: mount.h ../templates/locale.h ../core/request.h ../core/config.h -ckeditor.o: ../core/system.h ../core/job.h ../core/basethread.h -ckeditor.o: ../core/synchro.h ../core/dirs.h ../core/dircontainer.h -ckeditor.o: ../notify/notify.h ../notify/notifypool.h ../templates/patterns.h -ckeditor.o: locale.h ../templates/localefilter.h ../../ezc/src/ezc.h +ckeditor.o: ../../winix/core/error.h ../../pikotools/space/spaceparser.h +ckeditor.o: ../../pikotools/space/space.h ../../winix/db/dbitemquery.h +ckeditor.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +ckeditor.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +ckeditor.o: ../../winix/core/ugcontainer.h ../../winix/core/log.h +ckeditor.o: ../../winix/core/textstream.h ../../winix/core/logmanipulators.h +ckeditor.o: ../../winix/core/slog.h ../../winix/core/cur.h +ckeditor.o: ../../winix/core/request.h ../../winix/core/error.h +ckeditor.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h +ckeditor.o: ../../winix/templates/htmltextstream.h +ckeditor.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +ckeditor.o: ../../winix/core/user.h ../../winix/core/plugindata.h +ckeditor.o: ../../winix/core/rebus.h ipban.h mount.h +ckeditor.o: ../../winix/templates/locale.h ../../winix/core/request.h +ckeditor.o: ../../winix/core/config.h ../../winix/core/system.h +ckeditor.o: ../../winix/core/job.h ../../winix/core/basethread.h +ckeditor.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +ckeditor.o: ../../winix/core/dircontainer.h ../../winix/notify/notify.h +ckeditor.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +ckeditor.o: locale.h ../../winix/templates/localefilter.h ../../ezc/src/ezc.h ckeditor.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h -ckeditor.o: functionparser.h ../core/cur.h account.h adduser.h cat.h chmod.h -ckeditor.o: privchanger.h chown.h cp.h default.h download.h emacs.h env.h -ckeditor.o: imgcrop.h last.h login.h logout.h ln.h ls.h man.h meta.h mkdir.h -ckeditor.o: mv.h nicedit.h node.h passwd.h priv.h pw.h reload.h rm.h rmuser.h -ckeditor.o: run.h sort.h specialdefault.h stat.h subject.h template.h -ckeditor.o: timezone.h tinymce.h uname.h upload.h uptime.h who.h vim.h -ckeditor.o: ../core/htmlfilter.h ../../ezc/src/stringconv.h -ckeditor.o: ../notify/notifythread.h ../core/basethread.h -ckeditor.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h -ckeditor.o: ../core/lastcontainer.h ../core/mounts.h ../core/mountparser.h -ckeditor.o: ../core/crypt.h ../core/users.h ../core/groups.h ../core/group.h -ckeditor.o: ../core/loadavg.h ../core/image.h ../core/threadmanager.h -ckeditor.o: ../core/timezones.h ../core/synchro.h -cp.o: cp.h functionbase.h ../core/item.h ../../pikotools/space/space.h -cp.o: ../../pikotools/textstream/types.h ../../pikotools/date/date.h -cp.o: ../db/db.h ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h -cp.o: ../core/textstream.h ../core/misc.h ../core/item.h -cp.o: ../core/requesttypes.h ../../pikotools/textstream/textstream.h +ckeditor.o: functionparser.h ../../winix/core/cur.h account.h adduser.h cat.h +ckeditor.o: chmod.h privchanger.h chown.h cp.h default.h download.h emacs.h +ckeditor.o: env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h meta.h +ckeditor.o: mkdir.h mv.h nicedit.h node.h passwd.h priv.h pw.h reload.h rm.h +ckeditor.o: rmuser.h run.h sort.h specialdefault.h stat.h subject.h +ckeditor.o: template.h timezone.h tinymce.h uname.h upload.h uptime.h who.h +ckeditor.o: vim.h ../../winix/core/htmlfilter.h ../../ezc/src/stringconv.h +ckeditor.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +ckeditor.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +ckeditor.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +ckeditor.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +ckeditor.o: ../../winix/core/crypt.h ../../winix/core/users.h +ckeditor.o: ../../winix/core/groups.h ../../winix/core/group.h +ckeditor.o: ../../winix/core/loadavg.h ../../winix/core/image.h +ckeditor.o: ../../winix/core/threadmanager.h ../../winix/core/timezones.h +ckeditor.o: ../../winix/core/synchro.h +cp.o: cp.h functionbase.h ../../winix/core/item.h +cp.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h +cp.o: ../../pikotools/date/date.h ../../winix/db/db.h ../../winix/db/dbbase.h +cp.o: ../../winix/db/dbconn.h ../../winix/db/dbtextstream.h +cp.o: ../../winix/core/textstream.h ../../winix/core/misc.h +cp.o: ../../winix/core/item.h ../../winix/core/requesttypes.h +cp.o: ../../pikotools/textstream/textstream.h cp.o: ../../pikotools/convert/convert.h ../../pikotools/convert/inttostr.h cp.o: ../../pikotools/membuffer/membuffer.h cp.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -cp.o: ../core/error.h ../../pikotools/space/spaceparser.h -cp.o: ../../pikotools/space/space.h ../db/dbitemquery.h ../db/dbitemcolumns.h -cp.o: ../core/user.h ../core/group.h ../core/dircontainer.h -cp.o: ../core/ugcontainer.h ../core/log.h ../core/textstream.h -cp.o: ../core/logmanipulators.h ../core/slog.h ../core/cur.h -cp.o: ../core/request.h ../core/error.h ../core/config.h ../core/htmlfilter.h -cp.o: ../templates/htmltextstream.h ../../pikotools/space/spacetojson.h -cp.o: ../core/session.h ../core/user.h ../core/plugindata.h ../core/rebus.h -cp.o: ipban.h mount.h ../templates/locale.h ../core/request.h -cp.o: ../core/config.h ../core/system.h ../core/job.h ../core/basethread.h -cp.o: ../core/synchro.h ../core/dirs.h ../core/dircontainer.h -cp.o: ../notify/notify.h ../notify/notifypool.h ../templates/patterns.h -cp.o: locale.h ../templates/localefilter.h ../../ezc/src/ezc.h +cp.o: ../../winix/core/error.h ../../pikotools/space/spaceparser.h +cp.o: ../../pikotools/space/space.h ../../winix/db/dbitemquery.h +cp.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +cp.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +cp.o: ../../winix/core/ugcontainer.h ../../winix/core/log.h +cp.o: ../../winix/core/textstream.h ../../winix/core/logmanipulators.h +cp.o: ../../winix/core/slog.h ../../winix/core/cur.h +cp.o: ../../winix/core/request.h ../../winix/core/error.h +cp.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h +cp.o: ../../winix/templates/htmltextstream.h +cp.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +cp.o: ../../winix/core/user.h ../../winix/core/plugindata.h +cp.o: ../../winix/core/rebus.h ipban.h mount.h ../../winix/templates/locale.h +cp.o: ../../winix/core/request.h ../../winix/core/config.h +cp.o: ../../winix/core/system.h ../../winix/core/job.h +cp.o: ../../winix/core/basethread.h ../../winix/core/synchro.h +cp.o: ../../winix/core/dirs.h ../../winix/core/dircontainer.h +cp.o: ../../winix/notify/notify.h ../../winix/notify/notifypool.h +cp.o: ../../winix/templates/patterns.h locale.h +cp.o: ../../winix/templates/localefilter.h ../../ezc/src/ezc.h cp.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h -cp.o: functionparser.h ../core/cur.h account.h adduser.h cat.h chmod.h -cp.o: privchanger.h chown.h ckeditor.h default.h download.h emacs.h env.h -cp.o: imgcrop.h last.h login.h logout.h ln.h ls.h man.h meta.h mkdir.h mv.h -cp.o: nicedit.h node.h passwd.h priv.h pw.h reload.h rm.h rmuser.h run.h +cp.o: functionparser.h ../../winix/core/cur.h account.h adduser.h cat.h +cp.o: chmod.h privchanger.h chown.h ckeditor.h default.h download.h emacs.h +cp.o: env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h meta.h mkdir.h +cp.o: mv.h nicedit.h node.h passwd.h priv.h pw.h reload.h rm.h rmuser.h run.h cp.o: sort.h specialdefault.h stat.h subject.h template.h timezone.h -cp.o: tinymce.h uname.h upload.h uptime.h who.h vim.h ../core/htmlfilter.h -cp.o: ../../ezc/src/stringconv.h ../notify/notifythread.h -cp.o: ../core/basethread.h ../notify/templatesnotify.h ../core/users.h -cp.o: ../core/ugcontainer.h ../core/lastcontainer.h ../core/mounts.h -cp.o: ../core/mountparser.h ../core/crypt.h ../core/users.h ../core/groups.h -cp.o: ../core/group.h ../core/loadavg.h ../core/image.h -cp.o: ../core/threadmanager.h ../core/timezones.h ../core/synchro.h -cp.o: ../core/misc.h ../core/plugin.h ../core/pluginmsg.h ../core/system.h -cp.o: ../core/sessionmanager.h ../core/sessioncontainer.h -cp.o: ../core/ipbancontainer.h ../functions/functions.h -cp.o: ../templates/templates.h ../templates/patterncacher.h -cp.o: ../templates/indexpatterns.h ../templates/patterns.h -cp.o: ../templates/changepatterns.h ../templates/htmltextstream.h -cp.o: ../core/sessionmanager.h -default.o: default.h functionbase.h ../core/item.h +cp.o: tinymce.h uname.h upload.h uptime.h who.h vim.h +cp.o: ../../winix/core/htmlfilter.h ../../ezc/src/stringconv.h +cp.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +cp.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +cp.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +cp.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +cp.o: ../../winix/core/crypt.h ../../winix/core/users.h +cp.o: ../../winix/core/groups.h ../../winix/core/group.h +cp.o: ../../winix/core/loadavg.h ../../winix/core/image.h +cp.o: ../../winix/core/threadmanager.h ../../winix/core/timezones.h +cp.o: ../../winix/core/synchro.h ../../winix/core/misc.h +cp.o: ../../winix/core/plugin.h ../../winix/core/pluginmsg.h +cp.o: ../../winix/core/system.h ../../winix/core/sessionmanager.h +cp.o: ../../winix/core/sessioncontainer.h ../../winix/core/ipbancontainer.h +cp.o: ../../winix/functions/functions.h ../../winix/templates/templates.h +cp.o: ../../winix/templates/patterncacher.h +cp.o: ../../winix/templates/indexpatterns.h ../../winix/templates/patterns.h +cp.o: ../../winix/templates/changepatterns.h +cp.o: ../../winix/templates/htmltextstream.h +cp.o: ../../winix/core/sessionmanager.h +default.o: default.h functionbase.h ../../winix/core/item.h default.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h -default.o: ../../pikotools/date/date.h ../db/db.h ../db/dbbase.h -default.o: ../db/dbconn.h ../db/dbtextstream.h ../core/textstream.h -default.o: ../core/misc.h ../core/item.h ../core/requesttypes.h +default.o: ../../pikotools/date/date.h ../../winix/db/db.h +default.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +default.o: ../../winix/db/dbtextstream.h ../../winix/core/textstream.h +default.o: ../../winix/core/misc.h ../../winix/core/item.h +default.o: ../../winix/core/requesttypes.h default.o: ../../pikotools/textstream/textstream.h default.o: ../../pikotools/convert/convert.h default.o: ../../pikotools/convert/inttostr.h default.o: ../../pikotools/membuffer/membuffer.h default.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -default.o: ../core/error.h ../../pikotools/space/spaceparser.h -default.o: ../../pikotools/space/space.h ../db/dbitemquery.h -default.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -default.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -default.o: ../core/textstream.h ../core/logmanipulators.h ../core/slog.h -default.o: ../core/cur.h ../core/request.h ../core/error.h ../core/config.h -default.o: ../core/htmlfilter.h ../templates/htmltextstream.h -default.o: ../../pikotools/space/spacetojson.h ../core/session.h -default.o: ../core/user.h ../core/plugindata.h ../core/rebus.h ipban.h -default.o: mount.h ../templates/locale.h ../core/request.h ../core/config.h -default.o: ../core/system.h ../core/job.h ../core/basethread.h -default.o: ../core/synchro.h ../core/dirs.h ../core/dircontainer.h -default.o: ../notify/notify.h ../notify/notifypool.h ../templates/patterns.h -default.o: locale.h ../templates/localefilter.h ../../ezc/src/ezc.h +default.o: ../../winix/core/error.h ../../pikotools/space/spaceparser.h +default.o: ../../pikotools/space/space.h ../../winix/db/dbitemquery.h +default.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +default.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +default.o: ../../winix/core/ugcontainer.h ../../winix/core/log.h +default.o: ../../winix/core/textstream.h ../../winix/core/logmanipulators.h +default.o: ../../winix/core/slog.h ../../winix/core/cur.h +default.o: ../../winix/core/request.h ../../winix/core/error.h +default.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h +default.o: ../../winix/templates/htmltextstream.h +default.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +default.o: ../../winix/core/user.h ../../winix/core/plugindata.h +default.o: ../../winix/core/rebus.h ipban.h mount.h +default.o: ../../winix/templates/locale.h ../../winix/core/request.h +default.o: ../../winix/core/config.h ../../winix/core/system.h +default.o: ../../winix/core/job.h ../../winix/core/basethread.h +default.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +default.o: ../../winix/core/dircontainer.h ../../winix/notify/notify.h +default.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +default.o: locale.h ../../winix/templates/localefilter.h ../../ezc/src/ezc.h default.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h -default.o: functionparser.h ../core/cur.h account.h adduser.h cat.h chmod.h -default.o: privchanger.h chown.h ckeditor.h cp.h download.h emacs.h env.h -default.o: imgcrop.h last.h login.h logout.h ln.h ls.h man.h meta.h mkdir.h -default.o: mv.h nicedit.h node.h passwd.h priv.h pw.h reload.h rm.h rmuser.h -default.o: run.h sort.h specialdefault.h stat.h subject.h template.h +default.o: functionparser.h ../../winix/core/cur.h account.h adduser.h cat.h +default.o: chmod.h privchanger.h chown.h ckeditor.h cp.h download.h emacs.h +default.o: env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h meta.h +default.o: mkdir.h mv.h nicedit.h node.h passwd.h priv.h pw.h reload.h rm.h +default.o: rmuser.h run.h sort.h specialdefault.h stat.h subject.h template.h default.o: timezone.h tinymce.h uname.h upload.h uptime.h who.h vim.h -default.o: ../core/htmlfilter.h ../../ezc/src/stringconv.h -default.o: ../notify/notifythread.h ../core/basethread.h -default.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h -default.o: ../core/lastcontainer.h ../core/mounts.h ../core/mountparser.h -default.o: ../core/crypt.h ../core/users.h ../core/groups.h ../core/group.h -default.o: ../core/loadavg.h ../core/image.h ../core/threadmanager.h -default.o: ../core/timezones.h ../core/synchro.h -download.o: download.h functionbase.h ../core/item.h +default.o: ../../winix/core/htmlfilter.h ../../ezc/src/stringconv.h +default.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +default.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +default.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +default.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +default.o: ../../winix/core/crypt.h ../../winix/core/users.h +default.o: ../../winix/core/groups.h ../../winix/core/group.h +default.o: ../../winix/core/loadavg.h ../../winix/core/image.h +default.o: ../../winix/core/threadmanager.h ../../winix/core/timezones.h +default.o: ../../winix/core/synchro.h +download.o: download.h functionbase.h ../../winix/core/item.h download.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h -download.o: ../../pikotools/date/date.h ../db/db.h ../db/dbbase.h -download.o: ../db/dbconn.h ../db/dbtextstream.h ../core/textstream.h -download.o: ../core/misc.h ../core/item.h ../core/requesttypes.h +download.o: ../../pikotools/date/date.h ../../winix/db/db.h +download.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +download.o: ../../winix/db/dbtextstream.h ../../winix/core/textstream.h +download.o: ../../winix/core/misc.h ../../winix/core/item.h +download.o: ../../winix/core/requesttypes.h download.o: ../../pikotools/textstream/textstream.h download.o: ../../pikotools/convert/convert.h download.o: ../../pikotools/convert/inttostr.h download.o: ../../pikotools/membuffer/membuffer.h download.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -download.o: ../core/error.h ../../pikotools/space/spaceparser.h -download.o: ../../pikotools/space/space.h ../db/dbitemquery.h -download.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -download.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -download.o: ../core/textstream.h ../core/logmanipulators.h ../core/slog.h -download.o: ../core/cur.h ../core/request.h ../core/error.h ../core/config.h -download.o: ../core/htmlfilter.h ../templates/htmltextstream.h -download.o: ../../pikotools/space/spacetojson.h ../core/session.h -download.o: ../core/user.h ../core/plugindata.h ../core/rebus.h ipban.h -download.o: mount.h ../templates/locale.h ../core/request.h ../core/config.h -download.o: ../core/system.h ../core/job.h ../core/basethread.h -download.o: ../core/synchro.h ../core/dirs.h ../core/dircontainer.h -download.o: ../notify/notify.h ../notify/notifypool.h ../templates/patterns.h -download.o: locale.h ../templates/localefilter.h ../../ezc/src/ezc.h +download.o: ../../winix/core/error.h ../../pikotools/space/spaceparser.h +download.o: ../../pikotools/space/space.h ../../winix/db/dbitemquery.h +download.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +download.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +download.o: ../../winix/core/ugcontainer.h ../../winix/core/log.h +download.o: ../../winix/core/textstream.h ../../winix/core/logmanipulators.h +download.o: ../../winix/core/slog.h ../../winix/core/cur.h +download.o: ../../winix/core/request.h ../../winix/core/error.h +download.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h +download.o: ../../winix/templates/htmltextstream.h +download.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +download.o: ../../winix/core/user.h ../../winix/core/plugindata.h +download.o: ../../winix/core/rebus.h ipban.h mount.h +download.o: ../../winix/templates/locale.h ../../winix/core/request.h +download.o: ../../winix/core/config.h ../../winix/core/system.h +download.o: ../../winix/core/job.h ../../winix/core/basethread.h +download.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +download.o: ../../winix/core/dircontainer.h ../../winix/notify/notify.h +download.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +download.o: locale.h ../../winix/templates/localefilter.h ../../ezc/src/ezc.h download.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h -download.o: functionparser.h ../core/cur.h account.h adduser.h cat.h chmod.h -download.o: privchanger.h chown.h ckeditor.h cp.h default.h emacs.h env.h -download.o: imgcrop.h last.h login.h logout.h ln.h ls.h man.h meta.h mkdir.h -download.o: mv.h nicedit.h node.h passwd.h priv.h pw.h reload.h rm.h rmuser.h -download.o: run.h sort.h specialdefault.h stat.h subject.h template.h -download.o: timezone.h tinymce.h uname.h upload.h uptime.h who.h vim.h -download.o: ../core/htmlfilter.h ../../ezc/src/stringconv.h -download.o: ../notify/notifythread.h ../core/basethread.h -download.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h -download.o: ../core/lastcontainer.h ../core/mounts.h ../core/mountparser.h -download.o: ../core/crypt.h ../core/users.h ../core/groups.h ../core/group.h -download.o: ../core/loadavg.h ../core/image.h ../core/threadmanager.h -download.o: ../core/timezones.h ../core/synchro.h -emacs.o: emacs.h functionbase.h ../core/item.h ../../pikotools/space/space.h -emacs.o: ../../pikotools/textstream/types.h ../../pikotools/date/date.h -emacs.o: ../db/db.h ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h -emacs.o: ../core/textstream.h ../core/misc.h ../core/item.h -emacs.o: ../core/requesttypes.h ../../pikotools/textstream/textstream.h +download.o: functionparser.h ../../winix/core/cur.h account.h adduser.h cat.h +download.o: chmod.h privchanger.h chown.h ckeditor.h cp.h default.h emacs.h +download.o: env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h meta.h +download.o: mkdir.h mv.h nicedit.h node.h passwd.h priv.h pw.h reload.h rm.h +download.o: rmuser.h run.h sort.h specialdefault.h stat.h subject.h +download.o: template.h timezone.h tinymce.h uname.h upload.h uptime.h who.h +download.o: vim.h ../../winix/core/htmlfilter.h ../../ezc/src/stringconv.h +download.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +download.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +download.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +download.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +download.o: ../../winix/core/crypt.h ../../winix/core/users.h +download.o: ../../winix/core/groups.h ../../winix/core/group.h +download.o: ../../winix/core/loadavg.h ../../winix/core/image.h +download.o: ../../winix/core/threadmanager.h ../../winix/core/timezones.h +download.o: ../../winix/core/synchro.h +emacs.o: emacs.h functionbase.h ../../winix/core/item.h +emacs.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h +emacs.o: ../../pikotools/date/date.h ../../winix/db/db.h +emacs.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +emacs.o: ../../winix/db/dbtextstream.h ../../winix/core/textstream.h +emacs.o: ../../winix/core/misc.h ../../winix/core/item.h +emacs.o: ../../winix/core/requesttypes.h +emacs.o: ../../pikotools/textstream/textstream.h emacs.o: ../../pikotools/convert/convert.h ../../pikotools/convert/inttostr.h emacs.o: ../../pikotools/membuffer/membuffer.h emacs.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -emacs.o: ../core/error.h ../../pikotools/space/spaceparser.h -emacs.o: ../../pikotools/space/space.h ../db/dbitemquery.h -emacs.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -emacs.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -emacs.o: ../core/textstream.h ../core/logmanipulators.h ../core/slog.h -emacs.o: ../core/cur.h ../core/request.h ../core/error.h ../core/config.h -emacs.o: ../core/htmlfilter.h ../templates/htmltextstream.h -emacs.o: ../../pikotools/space/spacetojson.h ../core/session.h ../core/user.h -emacs.o: ../core/plugindata.h ../core/rebus.h ipban.h mount.h -emacs.o: ../templates/locale.h ../core/request.h ../core/config.h -emacs.o: ../core/system.h ../core/job.h ../core/basethread.h -emacs.o: ../core/synchro.h ../core/dirs.h ../core/dircontainer.h -emacs.o: ../notify/notify.h ../notify/notifypool.h ../templates/patterns.h -emacs.o: locale.h ../templates/localefilter.h ../../ezc/src/ezc.h +emacs.o: ../../winix/core/error.h ../../pikotools/space/spaceparser.h +emacs.o: ../../pikotools/space/space.h ../../winix/db/dbitemquery.h +emacs.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +emacs.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +emacs.o: ../../winix/core/ugcontainer.h ../../winix/core/log.h +emacs.o: ../../winix/core/textstream.h ../../winix/core/logmanipulators.h +emacs.o: ../../winix/core/slog.h ../../winix/core/cur.h +emacs.o: ../../winix/core/request.h ../../winix/core/error.h +emacs.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h +emacs.o: ../../winix/templates/htmltextstream.h +emacs.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +emacs.o: ../../winix/core/user.h ../../winix/core/plugindata.h +emacs.o: ../../winix/core/rebus.h ipban.h mount.h +emacs.o: ../../winix/templates/locale.h ../../winix/core/request.h +emacs.o: ../../winix/core/config.h ../../winix/core/system.h +emacs.o: ../../winix/core/job.h ../../winix/core/basethread.h +emacs.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +emacs.o: ../../winix/core/dircontainer.h ../../winix/notify/notify.h +emacs.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +emacs.o: locale.h ../../winix/templates/localefilter.h ../../ezc/src/ezc.h emacs.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h -emacs.o: functionparser.h ../core/cur.h account.h adduser.h cat.h chmod.h -emacs.o: privchanger.h chown.h ckeditor.h cp.h default.h download.h env.h -emacs.o: imgcrop.h last.h login.h logout.h ln.h ls.h man.h meta.h mkdir.h -emacs.o: mv.h nicedit.h node.h passwd.h priv.h pw.h reload.h rm.h rmuser.h -emacs.o: run.h sort.h specialdefault.h stat.h subject.h template.h timezone.h -emacs.o: tinymce.h uname.h upload.h uptime.h who.h vim.h ../core/htmlfilter.h -emacs.o: ../../ezc/src/stringconv.h ../notify/notifythread.h -emacs.o: ../core/basethread.h ../notify/templatesnotify.h ../core/users.h -emacs.o: ../core/ugcontainer.h ../core/lastcontainer.h ../core/mounts.h -emacs.o: ../core/mountparser.h ../core/crypt.h ../core/users.h -emacs.o: ../core/groups.h ../core/group.h ../core/loadavg.h ../core/image.h -emacs.o: ../core/threadmanager.h ../core/timezones.h ../core/synchro.h -emacs.o: ../templates/templates.h ../templates/patterncacher.h -emacs.o: ../templates/indexpatterns.h ../templates/patterns.h -emacs.o: ../templates/changepatterns.h ../templates/htmltextstream.h -emacs.o: ../core/sessionmanager.h -env.o: env.h functionbase.h ../core/item.h ../../pikotools/space/space.h -env.o: ../../pikotools/textstream/types.h ../../pikotools/date/date.h -env.o: ../db/db.h ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h -env.o: ../core/textstream.h ../core/misc.h ../core/item.h -env.o: ../core/requesttypes.h ../../pikotools/textstream/textstream.h +emacs.o: functionparser.h ../../winix/core/cur.h account.h adduser.h cat.h +emacs.o: chmod.h privchanger.h chown.h ckeditor.h cp.h default.h download.h +emacs.o: env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h meta.h +emacs.o: mkdir.h mv.h nicedit.h node.h passwd.h priv.h pw.h reload.h rm.h +emacs.o: rmuser.h run.h sort.h specialdefault.h stat.h subject.h template.h +emacs.o: timezone.h tinymce.h uname.h upload.h uptime.h who.h vim.h +emacs.o: ../../winix/core/htmlfilter.h ../../ezc/src/stringconv.h +emacs.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +emacs.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +emacs.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +emacs.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +emacs.o: ../../winix/core/crypt.h ../../winix/core/users.h +emacs.o: ../../winix/core/groups.h ../../winix/core/group.h +emacs.o: ../../winix/core/loadavg.h ../../winix/core/image.h +emacs.o: ../../winix/core/threadmanager.h ../../winix/core/timezones.h +emacs.o: ../../winix/core/synchro.h ../../winix/templates/templates.h +emacs.o: ../../winix/templates/patterncacher.h +emacs.o: ../../winix/templates/indexpatterns.h +emacs.o: ../../winix/templates/patterns.h +emacs.o: ../../winix/templates/changepatterns.h +emacs.o: ../../winix/templates/htmltextstream.h +emacs.o: ../../winix/core/sessionmanager.h +env.o: env.h functionbase.h ../../winix/core/item.h +env.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h +env.o: ../../pikotools/date/date.h ../../winix/db/db.h +env.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +env.o: ../../winix/db/dbtextstream.h ../../winix/core/textstream.h +env.o: ../../winix/core/misc.h ../../winix/core/item.h +env.o: ../../winix/core/requesttypes.h +env.o: ../../pikotools/textstream/textstream.h env.o: ../../pikotools/convert/convert.h ../../pikotools/convert/inttostr.h env.o: ../../pikotools/membuffer/membuffer.h env.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -env.o: ../core/error.h ../../pikotools/space/spaceparser.h -env.o: ../../pikotools/space/space.h ../db/dbitemquery.h -env.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -env.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -env.o: ../core/textstream.h ../core/logmanipulators.h ../core/slog.h -env.o: ../core/cur.h ../core/request.h ../core/error.h ../core/config.h -env.o: ../core/htmlfilter.h ../templates/htmltextstream.h -env.o: ../../pikotools/space/spacetojson.h ../core/session.h ../core/user.h -env.o: ../core/plugindata.h ../core/rebus.h ipban.h mount.h -env.o: ../templates/locale.h ../core/request.h ../core/config.h -env.o: ../core/system.h ../core/job.h ../core/basethread.h ../core/synchro.h -env.o: ../core/dirs.h ../core/dircontainer.h ../notify/notify.h -env.o: ../notify/notifypool.h ../templates/patterns.h locale.h -env.o: ../templates/localefilter.h ../../ezc/src/ezc.h +env.o: ../../winix/core/error.h ../../pikotools/space/spaceparser.h +env.o: ../../pikotools/space/space.h ../../winix/db/dbitemquery.h +env.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +env.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +env.o: ../../winix/core/ugcontainer.h ../../winix/core/log.h +env.o: ../../winix/core/textstream.h ../../winix/core/logmanipulators.h +env.o: ../../winix/core/slog.h ../../winix/core/cur.h +env.o: ../../winix/core/request.h ../../winix/core/error.h +env.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h +env.o: ../../winix/templates/htmltextstream.h +env.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +env.o: ../../winix/core/user.h ../../winix/core/plugindata.h +env.o: ../../winix/core/rebus.h ipban.h mount.h +env.o: ../../winix/templates/locale.h ../../winix/core/request.h +env.o: ../../winix/core/config.h ../../winix/core/system.h +env.o: ../../winix/core/job.h ../../winix/core/basethread.h +env.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +env.o: ../../winix/core/dircontainer.h ../../winix/notify/notify.h +env.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +env.o: locale.h ../../winix/templates/localefilter.h ../../ezc/src/ezc.h env.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h -env.o: functionparser.h ../core/cur.h account.h adduser.h cat.h chmod.h -env.o: privchanger.h chown.h ckeditor.h cp.h default.h download.h emacs.h -env.o: imgcrop.h last.h login.h logout.h ln.h ls.h man.h meta.h mkdir.h mv.h -env.o: nicedit.h node.h passwd.h priv.h pw.h reload.h rm.h rmuser.h run.h -env.o: sort.h specialdefault.h stat.h subject.h template.h timezone.h -env.o: tinymce.h uname.h upload.h uptime.h who.h vim.h ../core/htmlfilter.h -env.o: ../../ezc/src/stringconv.h ../notify/notifythread.h -env.o: ../core/basethread.h ../notify/templatesnotify.h ../core/users.h -env.o: ../core/ugcontainer.h ../core/lastcontainer.h ../core/mounts.h -env.o: ../core/mountparser.h ../core/crypt.h ../core/users.h ../core/groups.h -env.o: ../core/group.h ../core/loadavg.h ../core/image.h -env.o: ../core/threadmanager.h ../core/timezones.h ../core/synchro.h -env.o: ../core/log.h -functionbase.o: functionbase.h ../core/item.h ../../pikotools/space/space.h +env.o: functionparser.h ../../winix/core/cur.h account.h adduser.h cat.h +env.o: chmod.h privchanger.h chown.h ckeditor.h cp.h default.h download.h +env.o: emacs.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h meta.h +env.o: mkdir.h mv.h nicedit.h node.h passwd.h priv.h pw.h reload.h rm.h +env.o: rmuser.h run.h sort.h specialdefault.h stat.h subject.h template.h +env.o: timezone.h tinymce.h uname.h upload.h uptime.h who.h vim.h +env.o: ../../winix/core/htmlfilter.h ../../ezc/src/stringconv.h +env.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +env.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +env.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +env.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +env.o: ../../winix/core/crypt.h ../../winix/core/users.h +env.o: ../../winix/core/groups.h ../../winix/core/group.h +env.o: ../../winix/core/loadavg.h ../../winix/core/image.h +env.o: ../../winix/core/threadmanager.h ../../winix/core/timezones.h +env.o: ../../winix/core/synchro.h ../../winix/core/log.h +functionbase.o: functionbase.h ../../winix/core/item.h +functionbase.o: ../../pikotools/space/space.h functionbase.o: ../../pikotools/textstream/types.h -functionbase.o: ../../pikotools/date/date.h ../db/db.h ../db/dbbase.h -functionbase.o: ../db/dbconn.h ../db/dbtextstream.h ../core/textstream.h -functionbase.o: ../core/misc.h ../core/item.h ../core/requesttypes.h +functionbase.o: ../../pikotools/date/date.h ../../winix/db/db.h +functionbase.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +functionbase.o: ../../winix/db/dbtextstream.h ../../winix/core/textstream.h +functionbase.o: ../../winix/core/misc.h ../../winix/core/item.h +functionbase.o: ../../winix/core/requesttypes.h functionbase.o: ../../pikotools/textstream/textstream.h functionbase.o: ../../pikotools/convert/convert.h functionbase.o: ../../pikotools/convert/inttostr.h functionbase.o: ../../pikotools/membuffer/membuffer.h functionbase.o: ../../pikotools/textstream/types.h -functionbase.o: ../../pikotools/utf8/utf8.h ../core/error.h +functionbase.o: ../../pikotools/utf8/utf8.h ../../winix/core/error.h functionbase.o: ../../pikotools/space/spaceparser.h -functionbase.o: ../../pikotools/space/space.h ../db/dbitemquery.h -functionbase.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -functionbase.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -functionbase.o: ../core/textstream.h ../core/logmanipulators.h ../core/slog.h -functionbase.o: ../core/cur.h ../core/request.h ../core/error.h -functionbase.o: ../core/config.h ../core/htmlfilter.h -functionbase.o: ../templates/htmltextstream.h -functionbase.o: ../../pikotools/space/spacetojson.h ../core/session.h -functionbase.o: ../core/user.h ../core/plugindata.h ../core/rebus.h ipban.h -functionbase.o: mount.h ../templates/locale.h ../core/request.h -functionbase.o: ../core/config.h ../core/system.h ../core/job.h -functionbase.o: ../core/basethread.h ../core/synchro.h ../core/dirs.h -functionbase.o: ../core/dircontainer.h ../notify/notify.h -functionbase.o: ../notify/notifypool.h ../templates/patterns.h locale.h -functionbase.o: ../templates/localefilter.h ../../ezc/src/ezc.h +functionbase.o: ../../pikotools/space/space.h ../../winix/db/dbitemquery.h +functionbase.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +functionbase.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +functionbase.o: ../../winix/core/ugcontainer.h ../../winix/core/log.h +functionbase.o: ../../winix/core/textstream.h +functionbase.o: ../../winix/core/logmanipulators.h ../../winix/core/slog.h +functionbase.o: ../../winix/core/cur.h ../../winix/core/request.h +functionbase.o: ../../winix/core/error.h ../../winix/core/config.h +functionbase.o: ../../winix/core/htmlfilter.h +functionbase.o: ../../winix/templates/htmltextstream.h +functionbase.o: ../../pikotools/space/spacetojson.h +functionbase.o: ../../winix/core/session.h ../../winix/core/user.h +functionbase.o: ../../winix/core/plugindata.h ../../winix/core/rebus.h +functionbase.o: ipban.h mount.h ../../winix/templates/locale.h +functionbase.o: ../../winix/core/request.h ../../winix/core/config.h +functionbase.o: ../../winix/core/system.h ../../winix/core/job.h +functionbase.o: ../../winix/core/basethread.h ../../winix/core/synchro.h +functionbase.o: ../../winix/core/dirs.h ../../winix/core/dircontainer.h +functionbase.o: ../../winix/notify/notify.h ../../winix/notify/notifypool.h +functionbase.o: ../../winix/templates/patterns.h locale.h +functionbase.o: ../../winix/templates/localefilter.h ../../ezc/src/ezc.h functionbase.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h -functionbase.o: functionparser.h ../core/cur.h account.h adduser.h cat.h -functionbase.o: chmod.h privchanger.h chown.h ckeditor.h cp.h default.h +functionbase.o: functionparser.h ../../winix/core/cur.h account.h adduser.h +functionbase.o: cat.h chmod.h privchanger.h chown.h ckeditor.h cp.h default.h functionbase.o: download.h emacs.h env.h imgcrop.h last.h login.h logout.h functionbase.o: ln.h ls.h man.h meta.h mkdir.h mv.h nicedit.h node.h passwd.h functionbase.o: priv.h pw.h reload.h rm.h rmuser.h run.h sort.h functionbase.o: specialdefault.h stat.h subject.h template.h timezone.h functionbase.o: tinymce.h uname.h upload.h uptime.h who.h vim.h -functionbase.o: ../core/htmlfilter.h ../../ezc/src/stringconv.h -functionbase.o: ../notify/notifythread.h ../core/basethread.h -functionbase.o: ../notify/templatesnotify.h ../core/users.h -functionbase.o: ../core/ugcontainer.h ../core/lastcontainer.h -functionbase.o: ../core/mounts.h ../core/mountparser.h ../core/crypt.h -functionbase.o: ../core/users.h ../core/groups.h ../core/group.h -functionbase.o: ../core/loadavg.h ../core/image.h ../core/threadmanager.h -functionbase.o: ../core/timezones.h ../core/synchro.h -functionparser.o: functionparser.h ../db/db.h ../db/dbbase.h ../db/dbconn.h -functionparser.o: ../db/dbtextstream.h ../core/textstream.h ../core/misc.h -functionparser.o: ../core/item.h ../core/requesttypes.h +functionbase.o: ../../winix/core/htmlfilter.h ../../ezc/src/stringconv.h +functionbase.o: ../../winix/notify/notifythread.h +functionbase.o: ../../winix/core/basethread.h +functionbase.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +functionbase.o: ../../winix/core/ugcontainer.h +functionbase.o: ../../winix/core/lastcontainer.h ../../winix/core/mounts.h +functionbase.o: ../../winix/core/mountparser.h ../../winix/core/crypt.h +functionbase.o: ../../winix/core/users.h ../../winix/core/groups.h +functionbase.o: ../../winix/core/group.h ../../winix/core/loadavg.h +functionbase.o: ../../winix/core/image.h ../../winix/core/threadmanager.h +functionbase.o: ../../winix/core/timezones.h ../../winix/core/synchro.h +functionparser.o: functionparser.h ../../winix/db/db.h +functionparser.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +functionparser.o: ../../winix/db/dbtextstream.h ../../winix/core/textstream.h +functionparser.o: ../../winix/core/misc.h ../../winix/core/item.h +functionparser.o: ../../winix/core/requesttypes.h functionparser.o: ../../pikotools/textstream/textstream.h functionparser.o: ../../pikotools/space/space.h functionparser.o: ../../pikotools/textstream/types.h @@ -473,23 +628,31 @@ functionparser.o: ../../pikotools/convert/convert.h functionparser.o: ../../pikotools/convert/inttostr.h functionparser.o: ../../pikotools/membuffer/membuffer.h functionparser.o: ../../pikotools/textstream/types.h -functionparser.o: ../../pikotools/utf8/utf8.h ../core/error.h +functionparser.o: ../../pikotools/utf8/utf8.h ../../winix/core/error.h functionparser.o: ../../pikotools/space/spaceparser.h -functionparser.o: ../../pikotools/space/space.h ../db/dbitemquery.h -functionparser.o: ../core/item.h ../db/dbitemcolumns.h ../core/user.h -functionparser.o: ../core/group.h ../core/dircontainer.h -functionparser.o: ../core/ugcontainer.h ../core/log.h ../core/textstream.h -functionparser.o: ../core/logmanipulators.h ../core/slog.h ../core/cur.h -functionparser.o: ../core/request.h ../core/error.h ../core/config.h -functionparser.o: ../core/htmlfilter.h ../templates/htmltextstream.h -functionparser.o: ../../pikotools/space/spacetojson.h ../core/session.h -functionparser.o: ../core/user.h ../core/plugindata.h ../core/rebus.h ipban.h -functionparser.o: functionbase.h ../core/request.h ../core/config.h -functionparser.o: ../core/system.h ../core/job.h ../core/basethread.h -functionparser.o: ../core/synchro.h ../core/dirs.h ../core/dircontainer.h -functionparser.o: ../notify/notify.h ../notify/notifypool.h -functionparser.o: ../templates/locale.h ../templates/patterns.h locale.h -functionparser.o: ../templates/localefilter.h ../../ezc/src/ezc.h +functionparser.o: ../../pikotools/space/space.h ../../winix/db/dbitemquery.h +functionparser.o: ../../winix/core/item.h ../../winix/db/dbitemcolumns.h +functionparser.o: ../../winix/core/user.h ../../winix/core/group.h +functionparser.o: ../../winix/core/dircontainer.h +functionparser.o: ../../winix/core/ugcontainer.h ../../winix/core/log.h +functionparser.o: ../../winix/core/textstream.h +functionparser.o: ../../winix/core/logmanipulators.h ../../winix/core/slog.h +functionparser.o: ../../winix/core/cur.h ../../winix/core/request.h +functionparser.o: ../../winix/core/error.h ../../winix/core/config.h +functionparser.o: ../../winix/core/htmlfilter.h +functionparser.o: ../../winix/templates/htmltextstream.h +functionparser.o: ../../pikotools/space/spacetojson.h +functionparser.o: ../../winix/core/session.h ../../winix/core/user.h +functionparser.o: ../../winix/core/plugindata.h ../../winix/core/rebus.h +functionparser.o: ipban.h functionbase.h ../../winix/core/request.h +functionparser.o: ../../winix/core/config.h ../../winix/core/system.h +functionparser.o: ../../winix/core/job.h ../../winix/core/basethread.h +functionparser.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +functionparser.o: ../../winix/core/dircontainer.h ../../winix/notify/notify.h +functionparser.o: ../../winix/notify/notifypool.h +functionparser.o: ../../winix/templates/locale.h +functionparser.o: ../../winix/templates/patterns.h locale.h +functionparser.o: ../../winix/templates/localefilter.h ../../ezc/src/ezc.h functionparser.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functionparser.o: functions.h account.h adduser.h cat.h chmod.h privchanger.h functionparser.o: chown.h ckeditor.h cp.h default.h download.h emacs.h env.h @@ -497,1394 +660,1866 @@ functionparser.o: imgcrop.h last.h login.h logout.h ln.h ls.h man.h meta.h functionparser.o: mkdir.h mount.h mv.h nicedit.h node.h passwd.h priv.h pw.h functionparser.o: reload.h rm.h rmuser.h run.h sort.h specialdefault.h stat.h functionparser.o: subject.h template.h timezone.h tinymce.h uname.h upload.h -functionparser.o: uptime.h who.h vim.h ../core/htmlfilter.h -functionparser.o: ../../ezc/src/stringconv.h ../notify/notifythread.h -functionparser.o: ../core/basethread.h ../notify/templatesnotify.h -functionparser.o: ../core/users.h ../core/ugcontainer.h -functionparser.o: ../core/lastcontainer.h ../core/mounts.h -functionparser.o: ../core/mountparser.h ../core/crypt.h ../core/users.h -functionparser.o: ../core/groups.h ../core/group.h ../core/loadavg.h -functionparser.o: ../core/image.h ../core/threadmanager.h ../core/timezones.h -functionparser.o: ../core/synchro.h ../core/cur.h ../core/log.h -functions.o: functions.h functionbase.h ../core/item.h +functionparser.o: uptime.h who.h vim.h ../../winix/core/htmlfilter.h +functionparser.o: ../../ezc/src/stringconv.h +functionparser.o: ../../winix/notify/notifythread.h +functionparser.o: ../../winix/core/basethread.h +functionparser.o: ../../winix/notify/templatesnotify.h +functionparser.o: ../../winix/core/users.h ../../winix/core/ugcontainer.h +functionparser.o: ../../winix/core/lastcontainer.h ../../winix/core/mounts.h +functionparser.o: ../../winix/core/mountparser.h ../../winix/core/crypt.h +functionparser.o: ../../winix/core/users.h ../../winix/core/groups.h +functionparser.o: ../../winix/core/group.h ../../winix/core/loadavg.h +functionparser.o: ../../winix/core/image.h ../../winix/core/threadmanager.h +functionparser.o: ../../winix/core/timezones.h ../../winix/core/synchro.h +functionparser.o: ../../winix/core/cur.h ../../winix/core/log.h +functions.o: functions.h functionbase.h ../../winix/core/item.h functions.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h -functions.o: ../../pikotools/date/date.h ../db/db.h ../db/dbbase.h -functions.o: ../db/dbconn.h ../db/dbtextstream.h ../core/textstream.h -functions.o: ../core/misc.h ../core/item.h ../core/requesttypes.h +functions.o: ../../pikotools/date/date.h ../../winix/db/db.h +functions.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +functions.o: ../../winix/db/dbtextstream.h ../../winix/core/textstream.h +functions.o: ../../winix/core/misc.h ../../winix/core/item.h +functions.o: ../../winix/core/requesttypes.h functions.o: ../../pikotools/textstream/textstream.h functions.o: ../../pikotools/convert/convert.h functions.o: ../../pikotools/convert/inttostr.h functions.o: ../../pikotools/membuffer/membuffer.h functions.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -functions.o: ../core/error.h ../../pikotools/space/spaceparser.h -functions.o: ../../pikotools/space/space.h ../db/dbitemquery.h -functions.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -functions.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -functions.o: ../core/textstream.h ../core/logmanipulators.h ../core/slog.h -functions.o: ../core/cur.h ../core/request.h ../core/error.h ../core/config.h -functions.o: ../core/htmlfilter.h ../templates/htmltextstream.h -functions.o: ../../pikotools/space/spacetojson.h ../core/session.h -functions.o: ../core/user.h ../core/plugindata.h ../core/rebus.h ipban.h -functions.o: mount.h ../templates/locale.h ../core/request.h ../core/config.h -functions.o: ../core/system.h ../core/job.h ../core/basethread.h -functions.o: ../core/synchro.h ../core/dirs.h ../core/dircontainer.h -functions.o: ../notify/notify.h ../notify/notifypool.h -functions.o: ../templates/patterns.h locale.h ../templates/localefilter.h +functions.o: ../../winix/core/error.h ../../pikotools/space/spaceparser.h +functions.o: ../../pikotools/space/space.h ../../winix/db/dbitemquery.h +functions.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +functions.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +functions.o: ../../winix/core/ugcontainer.h ../../winix/core/log.h +functions.o: ../../winix/core/textstream.h ../../winix/core/logmanipulators.h +functions.o: ../../winix/core/slog.h ../../winix/core/cur.h +functions.o: ../../winix/core/request.h ../../winix/core/error.h +functions.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h +functions.o: ../../winix/templates/htmltextstream.h +functions.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +functions.o: ../../winix/core/user.h ../../winix/core/plugindata.h +functions.o: ../../winix/core/rebus.h ipban.h mount.h +functions.o: ../../winix/templates/locale.h ../../winix/core/request.h +functions.o: ../../winix/core/config.h ../../winix/core/system.h +functions.o: ../../winix/core/job.h ../../winix/core/basethread.h +functions.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +functions.o: ../../winix/core/dircontainer.h ../../winix/notify/notify.h +functions.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +functions.o: locale.h ../../winix/templates/localefilter.h functions.o: ../../ezc/src/ezc.h ../../ezc/src/generator.h functions.o: ../../ezc/src/pattern.h ../../ezc/src/stringconv.h -functions.o: ../notify/notifythread.h ../core/basethread.h -functions.o: ../notify/templatesnotify.h ../core/users.h -functions.o: ../core/ugcontainer.h ../core/lastcontainer.h ../core/mounts.h -functions.o: ../core/mountparser.h ../core/crypt.h run.h ../core/users.h -functions.o: ../core/groups.h ../core/group.h ../core/loadavg.h -functions.o: ../core/image.h ../core/threadmanager.h ../core/timezones.h -functions.o: timezone.h ../core/synchro.h functionparser.h ../core/cur.h -functions.o: account.h adduser.h cat.h chmod.h privchanger.h chown.h -functions.o: ckeditor.h cp.h default.h download.h emacs.h env.h imgcrop.h -functions.o: last.h login.h logout.h ln.h ls.h man.h meta.h mkdir.h mv.h -functions.o: nicedit.h node.h passwd.h priv.h pw.h reload.h rm.h rmuser.h -functions.o: sort.h specialdefault.h stat.h subject.h template.h tinymce.h -functions.o: uname.h upload.h uptime.h who.h vim.h ../core/htmlfilter.h -functions.o: ../core/log.h ../core/misc.h ../core/plugin.h -functions.o: ../core/pluginmsg.h ../core/system.h ../core/sessionmanager.h -functions.o: ../core/sessioncontainer.h ../core/ipbancontainer.h -functions.o: ../functions/functions.h ../templates/templates.h -functions.o: ../templates/patterncacher.h ../templates/indexpatterns.h -functions.o: ../templates/patterns.h ../templates/changepatterns.h -functions.o: ../templates/htmltextstream.h ../core/sessionmanager.h -imgcrop.o: imgcrop.h functionbase.h ../core/item.h +functions.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +functions.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +functions.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +functions.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +functions.o: ../../winix/core/crypt.h run.h ../../winix/core/users.h +functions.o: ../../winix/core/groups.h ../../winix/core/group.h +functions.o: ../../winix/core/loadavg.h ../../winix/core/image.h +functions.o: ../../winix/core/threadmanager.h ../../winix/core/timezones.h +functions.o: timezone.h ../../winix/core/synchro.h functionparser.h +functions.o: ../../winix/core/cur.h account.h adduser.h cat.h chmod.h +functions.o: privchanger.h chown.h ckeditor.h cp.h default.h download.h +functions.o: emacs.h env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h +functions.o: meta.h mkdir.h mv.h nicedit.h node.h passwd.h priv.h pw.h +functions.o: reload.h rm.h rmuser.h sort.h specialdefault.h stat.h subject.h +functions.o: template.h tinymce.h uname.h upload.h uptime.h who.h vim.h +functions.o: ../../winix/core/htmlfilter.h ../../winix/core/log.h +functions.o: ../../winix/core/misc.h ../../winix/core/plugin.h +functions.o: ../../winix/core/pluginmsg.h ../../winix/core/system.h +functions.o: ../../winix/core/sessionmanager.h +functions.o: ../../winix/core/sessioncontainer.h +functions.o: ../../winix/core/ipbancontainer.h +functions.o: ../../winix/functions/functions.h +functions.o: ../../winix/templates/templates.h +functions.o: ../../winix/templates/patterncacher.h +functions.o: ../../winix/templates/indexpatterns.h +functions.o: ../../winix/templates/patterns.h +functions.o: ../../winix/templates/changepatterns.h +functions.o: ../../winix/templates/htmltextstream.h +functions.o: ../../winix/core/sessionmanager.h +imgcrop.o: imgcrop.h functionbase.h ../../winix/core/item.h imgcrop.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h -imgcrop.o: ../../pikotools/date/date.h ../db/db.h ../db/dbbase.h -imgcrop.o: ../db/dbconn.h ../db/dbtextstream.h ../core/textstream.h -imgcrop.o: ../core/misc.h ../core/item.h ../core/requesttypes.h +imgcrop.o: ../../pikotools/date/date.h ../../winix/db/db.h +imgcrop.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +imgcrop.o: ../../winix/db/dbtextstream.h ../../winix/core/textstream.h +imgcrop.o: ../../winix/core/misc.h ../../winix/core/item.h +imgcrop.o: ../../winix/core/requesttypes.h imgcrop.o: ../../pikotools/textstream/textstream.h imgcrop.o: ../../pikotools/convert/convert.h imgcrop.o: ../../pikotools/convert/inttostr.h imgcrop.o: ../../pikotools/membuffer/membuffer.h imgcrop.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -imgcrop.o: ../core/error.h ../../pikotools/space/spaceparser.h -imgcrop.o: ../../pikotools/space/space.h ../db/dbitemquery.h -imgcrop.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -imgcrop.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -imgcrop.o: ../core/textstream.h ../core/logmanipulators.h ../core/slog.h -imgcrop.o: ../core/cur.h ../core/request.h ../core/error.h ../core/config.h -imgcrop.o: ../core/htmlfilter.h ../templates/htmltextstream.h -imgcrop.o: ../../pikotools/space/spacetojson.h ../core/session.h -imgcrop.o: ../core/user.h ../core/plugindata.h ../core/rebus.h ipban.h -imgcrop.o: mount.h ../templates/locale.h ../core/request.h ../core/config.h -imgcrop.o: ../core/system.h ../core/job.h ../core/basethread.h -imgcrop.o: ../core/synchro.h ../core/dirs.h ../core/dircontainer.h -imgcrop.o: ../notify/notify.h ../notify/notifypool.h ../templates/patterns.h -imgcrop.o: locale.h ../templates/localefilter.h ../../ezc/src/ezc.h +imgcrop.o: ../../winix/core/error.h ../../pikotools/space/spaceparser.h +imgcrop.o: ../../pikotools/space/space.h ../../winix/db/dbitemquery.h +imgcrop.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +imgcrop.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +imgcrop.o: ../../winix/core/ugcontainer.h ../../winix/core/log.h +imgcrop.o: ../../winix/core/textstream.h ../../winix/core/logmanipulators.h +imgcrop.o: ../../winix/core/slog.h ../../winix/core/cur.h +imgcrop.o: ../../winix/core/request.h ../../winix/core/error.h +imgcrop.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h +imgcrop.o: ../../winix/templates/htmltextstream.h +imgcrop.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +imgcrop.o: ../../winix/core/user.h ../../winix/core/plugindata.h +imgcrop.o: ../../winix/core/rebus.h ipban.h mount.h +imgcrop.o: ../../winix/templates/locale.h ../../winix/core/request.h +imgcrop.o: ../../winix/core/config.h ../../winix/core/system.h +imgcrop.o: ../../winix/core/job.h ../../winix/core/basethread.h +imgcrop.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +imgcrop.o: ../../winix/core/dircontainer.h ../../winix/notify/notify.h +imgcrop.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +imgcrop.o: locale.h ../../winix/templates/localefilter.h ../../ezc/src/ezc.h imgcrop.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h -imgcrop.o: functionparser.h ../core/cur.h account.h adduser.h cat.h chmod.h -imgcrop.o: privchanger.h chown.h ckeditor.h cp.h default.h download.h emacs.h -imgcrop.o: env.h last.h login.h logout.h ln.h ls.h man.h meta.h mkdir.h mv.h -imgcrop.o: nicedit.h node.h passwd.h priv.h pw.h reload.h rm.h rmuser.h run.h -imgcrop.o: sort.h specialdefault.h stat.h subject.h template.h timezone.h -imgcrop.o: tinymce.h uname.h upload.h uptime.h who.h vim.h -imgcrop.o: ../core/htmlfilter.h ../../ezc/src/stringconv.h -imgcrop.o: ../notify/notifythread.h ../core/basethread.h -imgcrop.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h -imgcrop.o: ../core/lastcontainer.h ../core/mounts.h ../core/mountparser.h -imgcrop.o: ../core/crypt.h ../core/users.h ../core/groups.h ../core/group.h -imgcrop.o: ../core/loadavg.h ../core/image.h ../core/threadmanager.h -imgcrop.o: ../core/timezones.h ../core/synchro.h -ipban.o: ipban.h functionbase.h ../core/item.h ../../pikotools/space/space.h -ipban.o: ../../pikotools/textstream/types.h ../../pikotools/date/date.h -ipban.o: ../db/db.h ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h -ipban.o: ../core/textstream.h ../core/misc.h ../core/item.h -ipban.o: ../core/requesttypes.h ../../pikotools/textstream/textstream.h +imgcrop.o: functionparser.h ../../winix/core/cur.h account.h adduser.h cat.h +imgcrop.o: chmod.h privchanger.h chown.h ckeditor.h cp.h default.h download.h +imgcrop.o: emacs.h env.h last.h login.h logout.h ln.h ls.h man.h meta.h +imgcrop.o: mkdir.h mv.h nicedit.h node.h passwd.h priv.h pw.h reload.h rm.h +imgcrop.o: rmuser.h run.h sort.h specialdefault.h stat.h subject.h template.h +imgcrop.o: timezone.h tinymce.h uname.h upload.h uptime.h who.h vim.h +imgcrop.o: ../../winix/core/htmlfilter.h ../../ezc/src/stringconv.h +imgcrop.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +imgcrop.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +imgcrop.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +imgcrop.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +imgcrop.o: ../../winix/core/crypt.h ../../winix/core/users.h +imgcrop.o: ../../winix/core/groups.h ../../winix/core/group.h +imgcrop.o: ../../winix/core/loadavg.h ../../winix/core/image.h +imgcrop.o: ../../winix/core/threadmanager.h ../../winix/core/timezones.h +imgcrop.o: ../../winix/core/synchro.h +ipban.o: ipban.h functionbase.h ../../winix/core/item.h +ipban.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h +ipban.o: ../../pikotools/date/date.h ../../winix/db/db.h +ipban.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +ipban.o: ../../winix/db/dbtextstream.h ../../winix/core/textstream.h +ipban.o: ../../winix/core/misc.h ../../winix/core/item.h +ipban.o: ../../winix/core/requesttypes.h +ipban.o: ../../pikotools/textstream/textstream.h ipban.o: ../../pikotools/convert/convert.h ../../pikotools/convert/inttostr.h ipban.o: ../../pikotools/membuffer/membuffer.h ipban.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -ipban.o: ../core/error.h ../../pikotools/space/spaceparser.h -ipban.o: ../../pikotools/space/space.h ../db/dbitemquery.h -ipban.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -ipban.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -ipban.o: ../core/textstream.h ../core/logmanipulators.h ../core/slog.h -ipban.o: ../core/cur.h ../core/request.h ../core/error.h ../core/config.h -ipban.o: ../core/htmlfilter.h ../templates/htmltextstream.h -ipban.o: ../../pikotools/space/spacetojson.h ../core/session.h ../core/user.h -ipban.o: ../core/plugindata.h ../core/rebus.h mount.h ../templates/locale.h -ipban.o: ../core/request.h ../core/config.h ../core/system.h ../core/job.h -ipban.o: ../core/basethread.h ../core/synchro.h ../core/dirs.h -ipban.o: ../core/dircontainer.h ../notify/notify.h ../notify/notifypool.h -ipban.o: ../templates/patterns.h locale.h ../templates/localefilter.h -ipban.o: ../../ezc/src/ezc.h ../../ezc/src/generator.h -ipban.o: ../../ezc/src/pattern.h functions.h functionparser.h ../core/cur.h -ipban.o: account.h adduser.h cat.h chmod.h privchanger.h chown.h ckeditor.h -ipban.o: cp.h default.h download.h emacs.h env.h imgcrop.h last.h login.h -ipban.o: logout.h ln.h ls.h man.h meta.h mkdir.h mv.h nicedit.h node.h -ipban.o: passwd.h priv.h pw.h reload.h rm.h rmuser.h run.h sort.h -ipban.o: specialdefault.h stat.h subject.h template.h timezone.h tinymce.h -ipban.o: uname.h upload.h uptime.h who.h vim.h ../core/htmlfilter.h -ipban.o: ../../ezc/src/stringconv.h ../notify/notifythread.h -ipban.o: ../core/basethread.h ../notify/templatesnotify.h ../core/users.h -ipban.o: ../core/ugcontainer.h ../core/lastcontainer.h ../core/mounts.h -ipban.o: ../core/mountparser.h ../core/crypt.h ../core/users.h -ipban.o: ../core/groups.h ../core/group.h ../core/loadavg.h ../core/image.h -ipban.o: ../core/threadmanager.h ../core/timezones.h ../core/synchro.h -ipban.o: ../core/sessionmanager.h -last.o: last.h functionbase.h ../core/item.h ../../pikotools/space/space.h -last.o: ../../pikotools/textstream/types.h ../../pikotools/date/date.h -last.o: ../db/db.h ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h -last.o: ../core/textstream.h ../core/misc.h ../core/item.h -last.o: ../core/requesttypes.h ../../pikotools/textstream/textstream.h +ipban.o: ../../winix/core/error.h ../../pikotools/space/spaceparser.h +ipban.o: ../../pikotools/space/space.h ../../winix/db/dbitemquery.h +ipban.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +ipban.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +ipban.o: ../../winix/core/ugcontainer.h ../../winix/core/log.h +ipban.o: ../../winix/core/textstream.h ../../winix/core/logmanipulators.h +ipban.o: ../../winix/core/slog.h ../../winix/core/cur.h +ipban.o: ../../winix/core/request.h ../../winix/core/error.h +ipban.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h +ipban.o: ../../winix/templates/htmltextstream.h +ipban.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +ipban.o: ../../winix/core/user.h ../../winix/core/plugindata.h +ipban.o: ../../winix/core/rebus.h mount.h ../../winix/templates/locale.h +ipban.o: ../../winix/core/request.h ../../winix/core/config.h +ipban.o: ../../winix/core/system.h ../../winix/core/job.h +ipban.o: ../../winix/core/basethread.h ../../winix/core/synchro.h +ipban.o: ../../winix/core/dirs.h ../../winix/core/dircontainer.h +ipban.o: ../../winix/notify/notify.h ../../winix/notify/notifypool.h +ipban.o: ../../winix/templates/patterns.h locale.h +ipban.o: ../../winix/templates/localefilter.h ../../ezc/src/ezc.h +ipban.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h +ipban.o: functionparser.h ../../winix/core/cur.h account.h adduser.h cat.h +ipban.o: chmod.h privchanger.h chown.h ckeditor.h cp.h default.h download.h +ipban.o: emacs.h env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h +ipban.o: meta.h mkdir.h mv.h nicedit.h node.h passwd.h priv.h pw.h reload.h +ipban.o: rm.h rmuser.h run.h sort.h specialdefault.h stat.h subject.h +ipban.o: template.h timezone.h tinymce.h uname.h upload.h uptime.h who.h +ipban.o: vim.h ../../winix/core/htmlfilter.h ../../ezc/src/stringconv.h +ipban.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +ipban.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +ipban.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +ipban.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +ipban.o: ../../winix/core/crypt.h ../../winix/core/users.h +ipban.o: ../../winix/core/groups.h ../../winix/core/group.h +ipban.o: ../../winix/core/loadavg.h ../../winix/core/image.h +ipban.o: ../../winix/core/threadmanager.h ../../winix/core/timezones.h +ipban.o: ../../winix/core/synchro.h ../../winix/core/sessionmanager.h +last.o: last.h functionbase.h ../../winix/core/item.h +last.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h +last.o: ../../pikotools/date/date.h ../../winix/db/db.h +last.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +last.o: ../../winix/db/dbtextstream.h ../../winix/core/textstream.h +last.o: ../../winix/core/misc.h ../../winix/core/item.h +last.o: ../../winix/core/requesttypes.h +last.o: ../../pikotools/textstream/textstream.h last.o: ../../pikotools/convert/convert.h ../../pikotools/convert/inttostr.h last.o: ../../pikotools/membuffer/membuffer.h last.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -last.o: ../core/error.h ../../pikotools/space/spaceparser.h -last.o: ../../pikotools/space/space.h ../db/dbitemquery.h -last.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -last.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -last.o: ../core/textstream.h ../core/logmanipulators.h ../core/slog.h -last.o: ../core/cur.h ../core/request.h ../core/error.h ../core/config.h -last.o: ../core/htmlfilter.h ../templates/htmltextstream.h -last.o: ../../pikotools/space/spacetojson.h ../core/session.h ../core/user.h -last.o: ../core/plugindata.h ../core/rebus.h ipban.h mount.h -last.o: ../templates/locale.h ../core/request.h ../core/config.h -last.o: ../core/system.h ../core/job.h ../core/basethread.h ../core/synchro.h -last.o: ../core/dirs.h ../core/dircontainer.h ../notify/notify.h -last.o: ../notify/notifypool.h ../templates/patterns.h locale.h -last.o: ../templates/localefilter.h ../../ezc/src/ezc.h +last.o: ../../winix/core/error.h ../../pikotools/space/spaceparser.h +last.o: ../../pikotools/space/space.h ../../winix/db/dbitemquery.h +last.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +last.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +last.o: ../../winix/core/ugcontainer.h ../../winix/core/log.h +last.o: ../../winix/core/textstream.h ../../winix/core/logmanipulators.h +last.o: ../../winix/core/slog.h ../../winix/core/cur.h +last.o: ../../winix/core/request.h ../../winix/core/error.h +last.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h +last.o: ../../winix/templates/htmltextstream.h +last.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +last.o: ../../winix/core/user.h ../../winix/core/plugindata.h +last.o: ../../winix/core/rebus.h ipban.h mount.h +last.o: ../../winix/templates/locale.h ../../winix/core/request.h +last.o: ../../winix/core/config.h ../../winix/core/system.h +last.o: ../../winix/core/job.h ../../winix/core/basethread.h +last.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +last.o: ../../winix/core/dircontainer.h ../../winix/notify/notify.h +last.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +last.o: locale.h ../../winix/templates/localefilter.h ../../ezc/src/ezc.h last.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h -last.o: functionparser.h ../core/cur.h account.h adduser.h cat.h chmod.h -last.o: privchanger.h chown.h ckeditor.h cp.h default.h download.h emacs.h -last.o: env.h imgcrop.h login.h logout.h ln.h ls.h man.h meta.h mkdir.h mv.h -last.o: nicedit.h node.h passwd.h priv.h pw.h reload.h rm.h rmuser.h run.h -last.o: sort.h specialdefault.h stat.h subject.h template.h timezone.h -last.o: tinymce.h uname.h upload.h uptime.h who.h vim.h ../core/htmlfilter.h -last.o: ../../ezc/src/stringconv.h ../notify/notifythread.h -last.o: ../core/basethread.h ../notify/templatesnotify.h ../core/users.h -last.o: ../core/ugcontainer.h ../core/lastcontainer.h ../core/mounts.h -last.o: ../core/mountparser.h ../core/crypt.h ../core/users.h -last.o: ../core/groups.h ../core/group.h ../core/loadavg.h ../core/image.h -last.o: ../core/threadmanager.h ../core/timezones.h ../core/synchro.h -ln.o: ln.h functionbase.h ../core/item.h ../../pikotools/space/space.h -ln.o: ../../pikotools/textstream/types.h ../../pikotools/date/date.h -ln.o: ../db/db.h ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h -ln.o: ../core/textstream.h ../core/misc.h ../core/item.h -ln.o: ../core/requesttypes.h ../../pikotools/textstream/textstream.h +last.o: functionparser.h ../../winix/core/cur.h account.h adduser.h cat.h +last.o: chmod.h privchanger.h chown.h ckeditor.h cp.h default.h download.h +last.o: emacs.h env.h imgcrop.h login.h logout.h ln.h ls.h man.h meta.h +last.o: mkdir.h mv.h nicedit.h node.h passwd.h priv.h pw.h reload.h rm.h +last.o: rmuser.h run.h sort.h specialdefault.h stat.h subject.h template.h +last.o: timezone.h tinymce.h uname.h upload.h uptime.h who.h vim.h +last.o: ../../winix/core/htmlfilter.h ../../ezc/src/stringconv.h +last.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +last.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +last.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +last.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +last.o: ../../winix/core/crypt.h ../../winix/core/users.h +last.o: ../../winix/core/groups.h ../../winix/core/group.h +last.o: ../../winix/core/loadavg.h ../../winix/core/image.h +last.o: ../../winix/core/threadmanager.h ../../winix/core/timezones.h +last.o: ../../winix/core/synchro.h +ln.o: ln.h functionbase.h ../../winix/core/item.h +ln.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h +ln.o: ../../pikotools/date/date.h ../../winix/db/db.h ../../winix/db/dbbase.h +ln.o: ../../winix/db/dbconn.h ../../winix/db/dbtextstream.h +ln.o: ../../winix/core/textstream.h ../../winix/core/misc.h +ln.o: ../../winix/core/item.h ../../winix/core/requesttypes.h +ln.o: ../../pikotools/textstream/textstream.h ln.o: ../../pikotools/convert/convert.h ../../pikotools/convert/inttostr.h ln.o: ../../pikotools/membuffer/membuffer.h ln.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -ln.o: ../core/error.h ../../pikotools/space/spaceparser.h -ln.o: ../../pikotools/space/space.h ../db/dbitemquery.h ../db/dbitemcolumns.h -ln.o: ../core/user.h ../core/group.h ../core/dircontainer.h -ln.o: ../core/ugcontainer.h ../core/log.h ../core/textstream.h -ln.o: ../core/logmanipulators.h ../core/slog.h ../core/cur.h -ln.o: ../core/request.h ../core/error.h ../core/config.h ../core/htmlfilter.h -ln.o: ../templates/htmltextstream.h ../../pikotools/space/spacetojson.h -ln.o: ../core/session.h ../core/user.h ../core/plugindata.h ../core/rebus.h -ln.o: ipban.h mount.h ../templates/locale.h ../core/request.h -ln.o: ../core/config.h ../core/system.h ../core/job.h ../core/basethread.h -ln.o: ../core/synchro.h ../core/dirs.h ../core/dircontainer.h -ln.o: ../notify/notify.h ../notify/notifypool.h ../templates/patterns.h -ln.o: locale.h ../templates/localefilter.h ../../ezc/src/ezc.h +ln.o: ../../winix/core/error.h ../../pikotools/space/spaceparser.h +ln.o: ../../pikotools/space/space.h ../../winix/db/dbitemquery.h +ln.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +ln.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +ln.o: ../../winix/core/ugcontainer.h ../../winix/core/log.h +ln.o: ../../winix/core/textstream.h ../../winix/core/logmanipulators.h +ln.o: ../../winix/core/slog.h ../../winix/core/cur.h +ln.o: ../../winix/core/request.h ../../winix/core/error.h +ln.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h +ln.o: ../../winix/templates/htmltextstream.h +ln.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +ln.o: ../../winix/core/user.h ../../winix/core/plugindata.h +ln.o: ../../winix/core/rebus.h ipban.h mount.h ../../winix/templates/locale.h +ln.o: ../../winix/core/request.h ../../winix/core/config.h +ln.o: ../../winix/core/system.h ../../winix/core/job.h +ln.o: ../../winix/core/basethread.h ../../winix/core/synchro.h +ln.o: ../../winix/core/dirs.h ../../winix/core/dircontainer.h +ln.o: ../../winix/notify/notify.h ../../winix/notify/notifypool.h +ln.o: ../../winix/templates/patterns.h locale.h +ln.o: ../../winix/templates/localefilter.h ../../ezc/src/ezc.h ln.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h -ln.o: functionparser.h ../core/cur.h account.h adduser.h cat.h chmod.h -ln.o: privchanger.h chown.h ckeditor.h cp.h default.h download.h emacs.h -ln.o: env.h imgcrop.h last.h login.h logout.h ls.h man.h meta.h mkdir.h mv.h -ln.o: nicedit.h node.h passwd.h priv.h pw.h reload.h rm.h rmuser.h run.h -ln.o: sort.h specialdefault.h stat.h subject.h template.h timezone.h -ln.o: tinymce.h uname.h upload.h uptime.h who.h vim.h ../core/htmlfilter.h -ln.o: ../../ezc/src/stringconv.h ../notify/notifythread.h -ln.o: ../core/basethread.h ../notify/templatesnotify.h ../core/users.h -ln.o: ../core/ugcontainer.h ../core/lastcontainer.h ../core/mounts.h -ln.o: ../core/mountparser.h ../core/crypt.h ../core/users.h ../core/groups.h -ln.o: ../core/group.h ../core/loadavg.h ../core/image.h -ln.o: ../core/threadmanager.h ../core/timezones.h ../core/synchro.h -ln.o: ../core/misc.h ../functions/functions.h -locale.o: locale.h functionbase.h ../core/item.h +ln.o: functionparser.h ../../winix/core/cur.h account.h adduser.h cat.h +ln.o: chmod.h privchanger.h chown.h ckeditor.h cp.h default.h download.h +ln.o: emacs.h env.h imgcrop.h last.h login.h logout.h ls.h man.h meta.h +ln.o: mkdir.h mv.h nicedit.h node.h passwd.h priv.h pw.h reload.h rm.h +ln.o: rmuser.h run.h sort.h specialdefault.h stat.h subject.h template.h +ln.o: timezone.h tinymce.h uname.h upload.h uptime.h who.h vim.h +ln.o: ../../winix/core/htmlfilter.h ../../ezc/src/stringconv.h +ln.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +ln.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +ln.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +ln.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +ln.o: ../../winix/core/crypt.h ../../winix/core/users.h +ln.o: ../../winix/core/groups.h ../../winix/core/group.h +ln.o: ../../winix/core/loadavg.h ../../winix/core/image.h +ln.o: ../../winix/core/threadmanager.h ../../winix/core/timezones.h +ln.o: ../../winix/core/synchro.h ../../winix/core/misc.h +ln.o: ../../winix/functions/functions.h +locale.o: locale.h functionbase.h ../../winix/core/item.h locale.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h -locale.o: ../../pikotools/date/date.h ../db/db.h ../db/dbbase.h -locale.o: ../db/dbconn.h ../db/dbtextstream.h ../core/textstream.h -locale.o: ../core/misc.h ../core/item.h ../core/requesttypes.h +locale.o: ../../pikotools/date/date.h ../../winix/db/db.h +locale.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +locale.o: ../../winix/db/dbtextstream.h ../../winix/core/textstream.h +locale.o: ../../winix/core/misc.h ../../winix/core/item.h +locale.o: ../../winix/core/requesttypes.h locale.o: ../../pikotools/textstream/textstream.h locale.o: ../../pikotools/convert/convert.h locale.o: ../../pikotools/convert/inttostr.h locale.o: ../../pikotools/membuffer/membuffer.h locale.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -locale.o: ../core/error.h ../../pikotools/space/spaceparser.h -locale.o: ../../pikotools/space/space.h ../db/dbitemquery.h -locale.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -locale.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -locale.o: ../core/textstream.h ../core/logmanipulators.h ../core/slog.h -locale.o: ../core/cur.h ../core/request.h ../core/error.h ../core/config.h -locale.o: ../core/htmlfilter.h ../templates/htmltextstream.h -locale.o: ../../pikotools/space/spacetojson.h ../core/session.h -locale.o: ../core/user.h ../core/plugindata.h ../core/rebus.h ipban.h mount.h -locale.o: ../templates/locale.h ../core/request.h ../core/config.h -locale.o: ../core/system.h ../core/job.h ../core/basethread.h -locale.o: ../core/synchro.h ../core/dirs.h ../core/dircontainer.h -locale.o: ../notify/notify.h ../notify/notifypool.h ../templates/patterns.h -locale.o: ../templates/localefilter.h ../../ezc/src/ezc.h +locale.o: ../../winix/core/error.h ../../pikotools/space/spaceparser.h +locale.o: ../../pikotools/space/space.h ../../winix/db/dbitemquery.h +locale.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +locale.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +locale.o: ../../winix/core/ugcontainer.h ../../winix/core/log.h +locale.o: ../../winix/core/textstream.h ../../winix/core/logmanipulators.h +locale.o: ../../winix/core/slog.h ../../winix/core/cur.h +locale.o: ../../winix/core/request.h ../../winix/core/error.h +locale.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h +locale.o: ../../winix/templates/htmltextstream.h +locale.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +locale.o: ../../winix/core/user.h ../../winix/core/plugindata.h +locale.o: ../../winix/core/rebus.h ipban.h mount.h +locale.o: ../../winix/templates/locale.h ../../winix/core/request.h +locale.o: ../../winix/core/config.h ../../winix/core/system.h +locale.o: ../../winix/core/job.h ../../winix/core/basethread.h +locale.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +locale.o: ../../winix/core/dircontainer.h ../../winix/notify/notify.h +locale.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +locale.o: ../../winix/templates/localefilter.h ../../ezc/src/ezc.h locale.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h -locale.o: functionparser.h ../core/cur.h account.h adduser.h cat.h chmod.h -locale.o: privchanger.h chown.h ckeditor.h cp.h default.h download.h emacs.h -locale.o: env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h meta.h -locale.o: mkdir.h mv.h nicedit.h node.h passwd.h priv.h pw.h reload.h rm.h -locale.o: rmuser.h run.h sort.h specialdefault.h stat.h subject.h template.h -locale.o: timezone.h tinymce.h uname.h upload.h uptime.h who.h vim.h -locale.o: ../core/htmlfilter.h ../../ezc/src/stringconv.h -locale.o: ../notify/notifythread.h ../core/basethread.h -locale.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h -locale.o: ../core/lastcontainer.h ../core/mounts.h ../core/mountparser.h -locale.o: ../core/crypt.h ../core/users.h ../core/groups.h ../core/group.h -locale.o: ../core/loadavg.h ../core/image.h ../core/threadmanager.h -locale.o: ../core/timezones.h ../core/synchro.h ../templates/templates.h -locale.o: ../templates/patterncacher.h ../templates/indexpatterns.h -locale.o: ../templates/patterns.h ../templates/changepatterns.h -locale.o: ../templates/htmltextstream.h ../core/sessionmanager.h -login.o: ../core/sessionmanager.h login.h functionbase.h ../core/item.h -login.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h -login.o: ../../pikotools/date/date.h ../db/db.h ../db/dbbase.h ../db/dbconn.h -login.o: ../db/dbtextstream.h ../core/textstream.h ../core/misc.h -login.o: ../core/item.h ../core/requesttypes.h +locale.o: functionparser.h ../../winix/core/cur.h account.h adduser.h cat.h +locale.o: chmod.h privchanger.h chown.h ckeditor.h cp.h default.h download.h +locale.o: emacs.h env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h +locale.o: meta.h mkdir.h mv.h nicedit.h node.h passwd.h priv.h pw.h reload.h +locale.o: rm.h rmuser.h run.h sort.h specialdefault.h stat.h subject.h +locale.o: template.h timezone.h tinymce.h uname.h upload.h uptime.h who.h +locale.o: vim.h ../../winix/core/htmlfilter.h ../../ezc/src/stringconv.h +locale.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +locale.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +locale.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +locale.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +locale.o: ../../winix/core/crypt.h ../../winix/core/users.h +locale.o: ../../winix/core/groups.h ../../winix/core/group.h +locale.o: ../../winix/core/loadavg.h ../../winix/core/image.h +locale.o: ../../winix/core/threadmanager.h ../../winix/core/timezones.h +locale.o: ../../winix/core/synchro.h ../../winix/templates/templates.h +locale.o: ../../winix/templates/patterncacher.h +locale.o: ../../winix/templates/indexpatterns.h +locale.o: ../../winix/templates/patterns.h +locale.o: ../../winix/templates/changepatterns.h +locale.o: ../../winix/templates/htmltextstream.h +locale.o: ../../winix/core/sessionmanager.h +login.o: ../../winix/core/sessionmanager.h login.h functionbase.h +login.o: ../../winix/core/item.h ../../pikotools/space/space.h +login.o: ../../pikotools/textstream/types.h ../../pikotools/date/date.h +login.o: ../../winix/db/db.h ../../winix/db/dbbase.h ../../winix/db/dbconn.h +login.o: ../../winix/db/dbtextstream.h ../../winix/core/textstream.h +login.o: ../../winix/core/misc.h ../../winix/core/item.h +login.o: ../../winix/core/requesttypes.h login.o: ../../pikotools/textstream/textstream.h login.o: ../../pikotools/convert/convert.h ../../pikotools/convert/inttostr.h login.o: ../../pikotools/membuffer/membuffer.h login.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -login.o: ../core/error.h ../../pikotools/space/spaceparser.h -login.o: ../../pikotools/space/space.h ../db/dbitemquery.h -login.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -login.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -login.o: ../core/textstream.h ../core/logmanipulators.h ../core/slog.h -login.o: ../core/cur.h ../core/request.h ../core/error.h ../core/config.h -login.o: ../core/htmlfilter.h ../templates/htmltextstream.h -login.o: ../../pikotools/space/spacetojson.h ../core/session.h ../core/user.h -login.o: ../core/plugindata.h ../core/rebus.h ipban.h mount.h -login.o: ../templates/locale.h ../core/request.h ../core/config.h -login.o: ../core/system.h ../core/job.h ../core/basethread.h -login.o: ../core/synchro.h ../core/dirs.h ../core/dircontainer.h -login.o: ../notify/notify.h ../notify/notifypool.h ../templates/patterns.h -login.o: locale.h ../templates/localefilter.h ../../ezc/src/ezc.h +login.o: ../../winix/core/error.h ../../pikotools/space/spaceparser.h +login.o: ../../pikotools/space/space.h ../../winix/db/dbitemquery.h +login.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +login.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +login.o: ../../winix/core/ugcontainer.h ../../winix/core/log.h +login.o: ../../winix/core/textstream.h ../../winix/core/logmanipulators.h +login.o: ../../winix/core/slog.h ../../winix/core/cur.h +login.o: ../../winix/core/request.h ../../winix/core/error.h +login.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h +login.o: ../../winix/templates/htmltextstream.h +login.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +login.o: ../../winix/core/user.h ../../winix/core/plugindata.h +login.o: ../../winix/core/rebus.h ipban.h mount.h +login.o: ../../winix/templates/locale.h ../../winix/core/request.h +login.o: ../../winix/core/config.h ../../winix/core/system.h +login.o: ../../winix/core/job.h ../../winix/core/basethread.h +login.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +login.o: ../../winix/core/dircontainer.h ../../winix/notify/notify.h +login.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +login.o: locale.h ../../winix/templates/localefilter.h ../../ezc/src/ezc.h login.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h -login.o: functionparser.h ../core/cur.h account.h adduser.h cat.h chmod.h -login.o: privchanger.h chown.h ckeditor.h cp.h default.h download.h emacs.h -login.o: env.h imgcrop.h last.h logout.h ln.h ls.h man.h meta.h mkdir.h mv.h -login.o: nicedit.h node.h passwd.h priv.h pw.h reload.h rm.h rmuser.h run.h -login.o: sort.h specialdefault.h stat.h subject.h template.h timezone.h -login.o: tinymce.h uname.h upload.h uptime.h who.h vim.h ../core/htmlfilter.h -login.o: ../../ezc/src/stringconv.h ../notify/notifythread.h -login.o: ../core/basethread.h ../notify/templatesnotify.h ../core/users.h -login.o: ../core/ugcontainer.h ../core/lastcontainer.h ../core/mounts.h -login.o: ../core/mountparser.h ../core/crypt.h ../core/users.h -login.o: ../core/groups.h ../core/group.h ../core/loadavg.h ../core/image.h -login.o: ../core/threadmanager.h ../core/timezones.h ../core/synchro.h -logout.o: logout.h functionbase.h ../core/item.h +login.o: functionparser.h ../../winix/core/cur.h account.h adduser.h cat.h +login.o: chmod.h privchanger.h chown.h ckeditor.h cp.h default.h download.h +login.o: emacs.h env.h imgcrop.h last.h logout.h ln.h ls.h man.h meta.h +login.o: mkdir.h mv.h nicedit.h node.h passwd.h priv.h pw.h reload.h rm.h +login.o: rmuser.h run.h sort.h specialdefault.h stat.h subject.h template.h +login.o: timezone.h tinymce.h uname.h upload.h uptime.h who.h vim.h +login.o: ../../winix/core/htmlfilter.h ../../ezc/src/stringconv.h +login.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +login.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +login.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +login.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +login.o: ../../winix/core/crypt.h ../../winix/core/users.h +login.o: ../../winix/core/groups.h ../../winix/core/group.h +login.o: ../../winix/core/loadavg.h ../../winix/core/image.h +login.o: ../../winix/core/threadmanager.h ../../winix/core/timezones.h +login.o: ../../winix/core/synchro.h +logout.o: logout.h functionbase.h ../../winix/core/item.h logout.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h -logout.o: ../../pikotools/date/date.h ../db/db.h ../db/dbbase.h -logout.o: ../db/dbconn.h ../db/dbtextstream.h ../core/textstream.h -logout.o: ../core/misc.h ../core/item.h ../core/requesttypes.h +logout.o: ../../pikotools/date/date.h ../../winix/db/db.h +logout.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +logout.o: ../../winix/db/dbtextstream.h ../../winix/core/textstream.h +logout.o: ../../winix/core/misc.h ../../winix/core/item.h +logout.o: ../../winix/core/requesttypes.h logout.o: ../../pikotools/textstream/textstream.h logout.o: ../../pikotools/convert/convert.h logout.o: ../../pikotools/convert/inttostr.h logout.o: ../../pikotools/membuffer/membuffer.h logout.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -logout.o: ../core/error.h ../../pikotools/space/spaceparser.h -logout.o: ../../pikotools/space/space.h ../db/dbitemquery.h -logout.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -logout.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -logout.o: ../core/textstream.h ../core/logmanipulators.h ../core/slog.h -logout.o: ../core/cur.h ../core/request.h ../core/error.h ../core/config.h -logout.o: ../core/htmlfilter.h ../templates/htmltextstream.h -logout.o: ../../pikotools/space/spacetojson.h ../core/session.h -logout.o: ../core/user.h ../core/plugindata.h ../core/rebus.h ipban.h mount.h -logout.o: ../templates/locale.h ../core/request.h ../core/config.h -logout.o: ../core/system.h ../core/job.h ../core/basethread.h -logout.o: ../core/synchro.h ../core/dirs.h ../core/dircontainer.h -logout.o: ../notify/notify.h ../notify/notifypool.h ../templates/patterns.h -logout.o: locale.h ../templates/localefilter.h ../../ezc/src/ezc.h +logout.o: ../../winix/core/error.h ../../pikotools/space/spaceparser.h +logout.o: ../../pikotools/space/space.h ../../winix/db/dbitemquery.h +logout.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +logout.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +logout.o: ../../winix/core/ugcontainer.h ../../winix/core/log.h +logout.o: ../../winix/core/textstream.h ../../winix/core/logmanipulators.h +logout.o: ../../winix/core/slog.h ../../winix/core/cur.h +logout.o: ../../winix/core/request.h ../../winix/core/error.h +logout.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h +logout.o: ../../winix/templates/htmltextstream.h +logout.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +logout.o: ../../winix/core/user.h ../../winix/core/plugindata.h +logout.o: ../../winix/core/rebus.h ipban.h mount.h +logout.o: ../../winix/templates/locale.h ../../winix/core/request.h +logout.o: ../../winix/core/config.h ../../winix/core/system.h +logout.o: ../../winix/core/job.h ../../winix/core/basethread.h +logout.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +logout.o: ../../winix/core/dircontainer.h ../../winix/notify/notify.h +logout.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +logout.o: locale.h ../../winix/templates/localefilter.h ../../ezc/src/ezc.h logout.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h -logout.o: functionparser.h ../core/cur.h account.h adduser.h cat.h chmod.h -logout.o: privchanger.h chown.h ckeditor.h cp.h default.h download.h emacs.h -logout.o: env.h imgcrop.h last.h login.h ln.h ls.h man.h meta.h mkdir.h mv.h -logout.o: nicedit.h node.h passwd.h priv.h pw.h reload.h rm.h rmuser.h run.h -logout.o: sort.h specialdefault.h stat.h subject.h template.h timezone.h -logout.o: tinymce.h uname.h upload.h uptime.h who.h vim.h -logout.o: ../core/htmlfilter.h ../../ezc/src/stringconv.h -logout.o: ../notify/notifythread.h ../core/basethread.h -logout.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h -logout.o: ../core/lastcontainer.h ../core/mounts.h ../core/mountparser.h -logout.o: ../core/crypt.h ../core/users.h ../core/groups.h ../core/group.h -logout.o: ../core/loadavg.h ../core/image.h ../core/threadmanager.h -logout.o: ../core/timezones.h ../core/synchro.h -ls.o: ls.h functionbase.h ../core/item.h ../../pikotools/space/space.h -ls.o: ../../pikotools/textstream/types.h ../../pikotools/date/date.h -ls.o: ../db/db.h ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h -ls.o: ../core/textstream.h ../core/misc.h ../core/item.h -ls.o: ../core/requesttypes.h ../../pikotools/textstream/textstream.h +logout.o: functionparser.h ../../winix/core/cur.h account.h adduser.h cat.h +logout.o: chmod.h privchanger.h chown.h ckeditor.h cp.h default.h download.h +logout.o: emacs.h env.h imgcrop.h last.h login.h ln.h ls.h man.h meta.h +logout.o: mkdir.h mv.h nicedit.h node.h passwd.h priv.h pw.h reload.h rm.h +logout.o: rmuser.h run.h sort.h specialdefault.h stat.h subject.h template.h +logout.o: timezone.h tinymce.h uname.h upload.h uptime.h who.h vim.h +logout.o: ../../winix/core/htmlfilter.h ../../ezc/src/stringconv.h +logout.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +logout.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +logout.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +logout.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +logout.o: ../../winix/core/crypt.h ../../winix/core/users.h +logout.o: ../../winix/core/groups.h ../../winix/core/group.h +logout.o: ../../winix/core/loadavg.h ../../winix/core/image.h +logout.o: ../../winix/core/threadmanager.h ../../winix/core/timezones.h +logout.o: ../../winix/core/synchro.h +ls.o: ls.h functionbase.h ../../winix/core/item.h +ls.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h +ls.o: ../../pikotools/date/date.h ../../winix/db/db.h ../../winix/db/dbbase.h +ls.o: ../../winix/db/dbconn.h ../../winix/db/dbtextstream.h +ls.o: ../../winix/core/textstream.h ../../winix/core/misc.h +ls.o: ../../winix/core/item.h ../../winix/core/requesttypes.h +ls.o: ../../pikotools/textstream/textstream.h ls.o: ../../pikotools/convert/convert.h ../../pikotools/convert/inttostr.h ls.o: ../../pikotools/membuffer/membuffer.h ls.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -ls.o: ../core/error.h ../../pikotools/space/spaceparser.h -ls.o: ../../pikotools/space/space.h ../db/dbitemquery.h ../db/dbitemcolumns.h -ls.o: ../core/user.h ../core/group.h ../core/dircontainer.h -ls.o: ../core/ugcontainer.h ../core/log.h ../core/textstream.h -ls.o: ../core/logmanipulators.h ../core/slog.h ../core/cur.h -ls.o: ../core/request.h ../core/error.h ../core/config.h ../core/htmlfilter.h -ls.o: ../templates/htmltextstream.h ../../pikotools/space/spacetojson.h -ls.o: ../core/session.h ../core/user.h ../core/plugindata.h ../core/rebus.h -ls.o: ipban.h mount.h ../templates/locale.h ../core/request.h -ls.o: ../core/config.h ../core/system.h ../core/job.h ../core/basethread.h -ls.o: ../core/synchro.h ../core/dirs.h ../core/dircontainer.h -ls.o: ../notify/notify.h ../notify/notifypool.h ../templates/patterns.h -ls.o: locale.h ../templates/localefilter.h ../../ezc/src/ezc.h +ls.o: ../../winix/core/error.h ../../pikotools/space/spaceparser.h +ls.o: ../../pikotools/space/space.h ../../winix/db/dbitemquery.h +ls.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +ls.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +ls.o: ../../winix/core/ugcontainer.h ../../winix/core/log.h +ls.o: ../../winix/core/textstream.h ../../winix/core/logmanipulators.h +ls.o: ../../winix/core/slog.h ../../winix/core/cur.h +ls.o: ../../winix/core/request.h ../../winix/core/error.h +ls.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h +ls.o: ../../winix/templates/htmltextstream.h +ls.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +ls.o: ../../winix/core/user.h ../../winix/core/plugindata.h +ls.o: ../../winix/core/rebus.h ipban.h mount.h ../../winix/templates/locale.h +ls.o: ../../winix/core/request.h ../../winix/core/config.h +ls.o: ../../winix/core/system.h ../../winix/core/job.h +ls.o: ../../winix/core/basethread.h ../../winix/core/synchro.h +ls.o: ../../winix/core/dirs.h ../../winix/core/dircontainer.h +ls.o: ../../winix/notify/notify.h ../../winix/notify/notifypool.h +ls.o: ../../winix/templates/patterns.h locale.h +ls.o: ../../winix/templates/localefilter.h ../../ezc/src/ezc.h ls.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h -ls.o: functionparser.h ../core/cur.h account.h adduser.h cat.h chmod.h -ls.o: privchanger.h chown.h ckeditor.h cp.h default.h download.h emacs.h -ls.o: env.h imgcrop.h last.h login.h logout.h ln.h man.h meta.h mkdir.h mv.h -ls.o: nicedit.h node.h passwd.h priv.h pw.h reload.h rm.h rmuser.h run.h -ls.o: sort.h specialdefault.h stat.h subject.h template.h timezone.h -ls.o: tinymce.h uname.h upload.h uptime.h who.h vim.h ../core/htmlfilter.h -ls.o: ../../ezc/src/stringconv.h ../notify/notifythread.h -ls.o: ../core/basethread.h ../notify/templatesnotify.h ../core/users.h -ls.o: ../core/ugcontainer.h ../core/lastcontainer.h ../core/mounts.h -ls.o: ../core/mountparser.h ../core/crypt.h ../core/users.h ../core/groups.h -ls.o: ../core/group.h ../core/loadavg.h ../core/image.h -ls.o: ../core/threadmanager.h ../core/timezones.h ../core/synchro.h -man.o: man.h functionbase.h ../core/item.h ../../pikotools/space/space.h -man.o: ../../pikotools/textstream/types.h ../../pikotools/date/date.h -man.o: ../db/db.h ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h -man.o: ../core/textstream.h ../core/misc.h ../core/item.h -man.o: ../core/requesttypes.h ../../pikotools/textstream/textstream.h +ls.o: functionparser.h ../../winix/core/cur.h account.h adduser.h cat.h +ls.o: chmod.h privchanger.h chown.h ckeditor.h cp.h default.h download.h +ls.o: emacs.h env.h imgcrop.h last.h login.h logout.h ln.h man.h meta.h +ls.o: mkdir.h mv.h nicedit.h node.h passwd.h priv.h pw.h reload.h rm.h +ls.o: rmuser.h run.h sort.h specialdefault.h stat.h subject.h template.h +ls.o: timezone.h tinymce.h uname.h upload.h uptime.h who.h vim.h +ls.o: ../../winix/core/htmlfilter.h ../../ezc/src/stringconv.h +ls.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +ls.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +ls.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +ls.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +ls.o: ../../winix/core/crypt.h ../../winix/core/users.h +ls.o: ../../winix/core/groups.h ../../winix/core/group.h +ls.o: ../../winix/core/loadavg.h ../../winix/core/image.h +ls.o: ../../winix/core/threadmanager.h ../../winix/core/timezones.h +ls.o: ../../winix/core/synchro.h +man.o: man.h functionbase.h ../../winix/core/item.h +man.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h +man.o: ../../pikotools/date/date.h ../../winix/db/db.h +man.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +man.o: ../../winix/db/dbtextstream.h ../../winix/core/textstream.h +man.o: ../../winix/core/misc.h ../../winix/core/item.h +man.o: ../../winix/core/requesttypes.h +man.o: ../../pikotools/textstream/textstream.h man.o: ../../pikotools/convert/convert.h ../../pikotools/convert/inttostr.h man.o: ../../pikotools/membuffer/membuffer.h man.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -man.o: ../core/error.h ../../pikotools/space/spaceparser.h -man.o: ../../pikotools/space/space.h ../db/dbitemquery.h -man.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -man.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -man.o: ../core/textstream.h ../core/logmanipulators.h ../core/slog.h -man.o: ../core/cur.h ../core/request.h ../core/error.h ../core/config.h -man.o: ../core/htmlfilter.h ../templates/htmltextstream.h -man.o: ../../pikotools/space/spacetojson.h ../core/session.h ../core/user.h -man.o: ../core/plugindata.h ../core/rebus.h ipban.h mount.h -man.o: ../templates/locale.h ../core/request.h ../core/config.h -man.o: ../core/system.h ../core/job.h ../core/basethread.h ../core/synchro.h -man.o: ../core/dirs.h ../core/dircontainer.h ../notify/notify.h -man.o: ../notify/notifypool.h ../templates/patterns.h locale.h -man.o: ../templates/localefilter.h ../../ezc/src/ezc.h +man.o: ../../winix/core/error.h ../../pikotools/space/spaceparser.h +man.o: ../../pikotools/space/space.h ../../winix/db/dbitemquery.h +man.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +man.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +man.o: ../../winix/core/ugcontainer.h ../../winix/core/log.h +man.o: ../../winix/core/textstream.h ../../winix/core/logmanipulators.h +man.o: ../../winix/core/slog.h ../../winix/core/cur.h +man.o: ../../winix/core/request.h ../../winix/core/error.h +man.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h +man.o: ../../winix/templates/htmltextstream.h +man.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +man.o: ../../winix/core/user.h ../../winix/core/plugindata.h +man.o: ../../winix/core/rebus.h ipban.h mount.h +man.o: ../../winix/templates/locale.h ../../winix/core/request.h +man.o: ../../winix/core/config.h ../../winix/core/system.h +man.o: ../../winix/core/job.h ../../winix/core/basethread.h +man.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +man.o: ../../winix/core/dircontainer.h ../../winix/notify/notify.h +man.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +man.o: locale.h ../../winix/templates/localefilter.h ../../ezc/src/ezc.h man.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h -man.o: functionparser.h ../core/cur.h account.h adduser.h cat.h chmod.h -man.o: privchanger.h chown.h ckeditor.h cp.h default.h download.h emacs.h -man.o: env.h imgcrop.h last.h login.h logout.h ln.h ls.h meta.h mkdir.h mv.h -man.o: nicedit.h node.h passwd.h priv.h pw.h reload.h rm.h rmuser.h run.h -man.o: sort.h specialdefault.h stat.h subject.h template.h timezone.h -man.o: tinymce.h uname.h upload.h uptime.h who.h vim.h ../core/htmlfilter.h -man.o: ../../ezc/src/stringconv.h ../notify/notifythread.h -man.o: ../core/basethread.h ../notify/templatesnotify.h ../core/users.h -man.o: ../core/ugcontainer.h ../core/lastcontainer.h ../core/mounts.h -man.o: ../core/mountparser.h ../core/crypt.h ../core/users.h ../core/groups.h -man.o: ../core/group.h ../core/loadavg.h ../core/image.h -man.o: ../core/threadmanager.h ../core/timezones.h ../core/synchro.h -meta.o: meta.h functionbase.h ../core/item.h ../../pikotools/space/space.h -meta.o: ../../pikotools/textstream/types.h ../../pikotools/date/date.h -meta.o: ../db/db.h ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h -meta.o: ../core/textstream.h ../core/misc.h ../core/item.h -meta.o: ../core/requesttypes.h ../../pikotools/textstream/textstream.h +man.o: functionparser.h ../../winix/core/cur.h account.h adduser.h cat.h +man.o: chmod.h privchanger.h chown.h ckeditor.h cp.h default.h download.h +man.o: emacs.h env.h imgcrop.h last.h login.h logout.h ln.h ls.h meta.h +man.o: mkdir.h mv.h nicedit.h node.h passwd.h priv.h pw.h reload.h rm.h +man.o: rmuser.h run.h sort.h specialdefault.h stat.h subject.h template.h +man.o: timezone.h tinymce.h uname.h upload.h uptime.h who.h vim.h +man.o: ../../winix/core/htmlfilter.h ../../ezc/src/stringconv.h +man.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +man.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +man.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +man.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +man.o: ../../winix/core/crypt.h ../../winix/core/users.h +man.o: ../../winix/core/groups.h ../../winix/core/group.h +man.o: ../../winix/core/loadavg.h ../../winix/core/image.h +man.o: ../../winix/core/threadmanager.h ../../winix/core/timezones.h +man.o: ../../winix/core/synchro.h +meta.o: meta.h functionbase.h ../../winix/core/item.h +meta.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h +meta.o: ../../pikotools/date/date.h ../../winix/db/db.h +meta.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +meta.o: ../../winix/db/dbtextstream.h ../../winix/core/textstream.h +meta.o: ../../winix/core/misc.h ../../winix/core/item.h +meta.o: ../../winix/core/requesttypes.h +meta.o: ../../pikotools/textstream/textstream.h meta.o: ../../pikotools/convert/convert.h ../../pikotools/convert/inttostr.h meta.o: ../../pikotools/membuffer/membuffer.h meta.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -meta.o: ../core/error.h ../../pikotools/space/spaceparser.h -meta.o: ../../pikotools/space/space.h ../db/dbitemquery.h -meta.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -meta.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -meta.o: ../core/textstream.h ../core/logmanipulators.h ../core/slog.h -meta.o: ../core/cur.h ../core/request.h ../core/error.h ../core/config.h -meta.o: ../core/htmlfilter.h ../templates/htmltextstream.h -meta.o: ../../pikotools/space/spacetojson.h ../core/session.h ../core/user.h -meta.o: ../core/plugindata.h ../core/rebus.h ipban.h mount.h -meta.o: ../templates/locale.h ../core/request.h ../core/config.h -meta.o: ../core/system.h ../core/job.h ../core/basethread.h ../core/synchro.h -meta.o: ../core/dirs.h ../core/dircontainer.h ../notify/notify.h -meta.o: ../notify/notifypool.h ../templates/patterns.h locale.h -meta.o: ../templates/localefilter.h ../../ezc/src/ezc.h +meta.o: ../../winix/core/error.h ../../pikotools/space/spaceparser.h +meta.o: ../../pikotools/space/space.h ../../winix/db/dbitemquery.h +meta.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +meta.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +meta.o: ../../winix/core/ugcontainer.h ../../winix/core/log.h +meta.o: ../../winix/core/textstream.h ../../winix/core/logmanipulators.h +meta.o: ../../winix/core/slog.h ../../winix/core/cur.h +meta.o: ../../winix/core/request.h ../../winix/core/error.h +meta.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h +meta.o: ../../winix/templates/htmltextstream.h +meta.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +meta.o: ../../winix/core/user.h ../../winix/core/plugindata.h +meta.o: ../../winix/core/rebus.h ipban.h mount.h +meta.o: ../../winix/templates/locale.h ../../winix/core/request.h +meta.o: ../../winix/core/config.h ../../winix/core/system.h +meta.o: ../../winix/core/job.h ../../winix/core/basethread.h +meta.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +meta.o: ../../winix/core/dircontainer.h ../../winix/notify/notify.h +meta.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +meta.o: locale.h ../../winix/templates/localefilter.h ../../ezc/src/ezc.h meta.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h -meta.o: functionparser.h ../core/cur.h account.h adduser.h cat.h chmod.h -meta.o: privchanger.h chown.h ckeditor.h cp.h default.h download.h emacs.h -meta.o: env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h mkdir.h mv.h -meta.o: nicedit.h node.h passwd.h priv.h pw.h reload.h rm.h rmuser.h run.h -meta.o: sort.h specialdefault.h stat.h subject.h template.h timezone.h -meta.o: tinymce.h uname.h upload.h uptime.h who.h vim.h ../core/htmlfilter.h -meta.o: ../../ezc/src/stringconv.h ../notify/notifythread.h -meta.o: ../core/basethread.h ../notify/templatesnotify.h ../core/users.h -meta.o: ../core/ugcontainer.h ../core/lastcontainer.h ../core/mounts.h -meta.o: ../core/mountparser.h ../core/crypt.h ../core/users.h -meta.o: ../core/groups.h ../core/group.h ../core/loadavg.h ../core/image.h -meta.o: ../core/threadmanager.h ../core/timezones.h ../core/synchro.h -meta.o: ../core/log.h -mkdir.o: mkdir.h functionbase.h ../core/item.h ../../pikotools/space/space.h -mkdir.o: ../../pikotools/textstream/types.h ../../pikotools/date/date.h -mkdir.o: ../db/db.h ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h -mkdir.o: ../core/textstream.h ../core/misc.h ../core/item.h -mkdir.o: ../core/requesttypes.h ../../pikotools/textstream/textstream.h +meta.o: functionparser.h ../../winix/core/cur.h account.h adduser.h cat.h +meta.o: chmod.h privchanger.h chown.h ckeditor.h cp.h default.h download.h +meta.o: emacs.h env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h +meta.o: mkdir.h mv.h nicedit.h node.h passwd.h priv.h pw.h reload.h rm.h +meta.o: rmuser.h run.h sort.h specialdefault.h stat.h subject.h template.h +meta.o: timezone.h tinymce.h uname.h upload.h uptime.h who.h vim.h +meta.o: ../../winix/core/htmlfilter.h ../../ezc/src/stringconv.h +meta.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +meta.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +meta.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +meta.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +meta.o: ../../winix/core/crypt.h ../../winix/core/users.h +meta.o: ../../winix/core/groups.h ../../winix/core/group.h +meta.o: ../../winix/core/loadavg.h ../../winix/core/image.h +meta.o: ../../winix/core/threadmanager.h ../../winix/core/timezones.h +meta.o: ../../winix/core/synchro.h ../../winix/core/log.h +mkdir.o: mkdir.h functionbase.h ../../winix/core/item.h +mkdir.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h +mkdir.o: ../../pikotools/date/date.h ../../winix/db/db.h +mkdir.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +mkdir.o: ../../winix/db/dbtextstream.h ../../winix/core/textstream.h +mkdir.o: ../../winix/core/misc.h ../../winix/core/item.h +mkdir.o: ../../winix/core/requesttypes.h +mkdir.o: ../../pikotools/textstream/textstream.h mkdir.o: ../../pikotools/convert/convert.h ../../pikotools/convert/inttostr.h mkdir.o: ../../pikotools/membuffer/membuffer.h mkdir.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -mkdir.o: ../core/error.h ../../pikotools/space/spaceparser.h -mkdir.o: ../../pikotools/space/space.h ../db/dbitemquery.h -mkdir.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -mkdir.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -mkdir.o: ../core/textstream.h ../core/logmanipulators.h ../core/slog.h -mkdir.o: ../core/cur.h ../core/request.h ../core/error.h ../core/config.h -mkdir.o: ../core/htmlfilter.h ../templates/htmltextstream.h -mkdir.o: ../../pikotools/space/spacetojson.h ../core/session.h ../core/user.h -mkdir.o: ../core/plugindata.h ../core/rebus.h ipban.h mount.h -mkdir.o: ../templates/locale.h ../core/request.h ../core/config.h -mkdir.o: ../core/system.h ../core/job.h ../core/basethread.h -mkdir.o: ../core/synchro.h ../core/dirs.h ../core/dircontainer.h -mkdir.o: ../notify/notify.h ../notify/notifypool.h ../templates/patterns.h -mkdir.o: locale.h ../templates/localefilter.h ../../ezc/src/ezc.h +mkdir.o: ../../winix/core/error.h ../../pikotools/space/spaceparser.h +mkdir.o: ../../pikotools/space/space.h ../../winix/db/dbitemquery.h +mkdir.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +mkdir.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +mkdir.o: ../../winix/core/ugcontainer.h ../../winix/core/log.h +mkdir.o: ../../winix/core/textstream.h ../../winix/core/logmanipulators.h +mkdir.o: ../../winix/core/slog.h ../../winix/core/cur.h +mkdir.o: ../../winix/core/request.h ../../winix/core/error.h +mkdir.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h +mkdir.o: ../../winix/templates/htmltextstream.h +mkdir.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +mkdir.o: ../../winix/core/user.h ../../winix/core/plugindata.h +mkdir.o: ../../winix/core/rebus.h ipban.h mount.h +mkdir.o: ../../winix/templates/locale.h ../../winix/core/request.h +mkdir.o: ../../winix/core/config.h ../../winix/core/system.h +mkdir.o: ../../winix/core/job.h ../../winix/core/basethread.h +mkdir.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +mkdir.o: ../../winix/core/dircontainer.h ../../winix/notify/notify.h +mkdir.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +mkdir.o: locale.h ../../winix/templates/localefilter.h ../../ezc/src/ezc.h mkdir.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h -mkdir.o: functionparser.h ../core/cur.h account.h adduser.h cat.h chmod.h -mkdir.o: privchanger.h chown.h ckeditor.h cp.h default.h download.h emacs.h -mkdir.o: env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h meta.h mv.h -mkdir.o: nicedit.h node.h passwd.h priv.h pw.h reload.h rm.h rmuser.h run.h -mkdir.o: sort.h specialdefault.h stat.h subject.h template.h timezone.h -mkdir.o: tinymce.h uname.h upload.h uptime.h who.h vim.h ../core/htmlfilter.h -mkdir.o: ../../ezc/src/stringconv.h ../notify/notifythread.h -mkdir.o: ../core/basethread.h ../notify/templatesnotify.h ../core/users.h -mkdir.o: ../core/ugcontainer.h ../core/lastcontainer.h ../core/mounts.h -mkdir.o: ../core/mountparser.h ../core/crypt.h ../core/users.h -mkdir.o: ../core/groups.h ../core/group.h ../core/loadavg.h ../core/image.h -mkdir.o: ../core/threadmanager.h ../core/timezones.h ../core/synchro.h -mkdir.o: ../core/plugin.h ../core/pluginmsg.h ../core/system.h -mkdir.o: ../core/sessionmanager.h ../core/sessioncontainer.h -mkdir.o: ../core/ipbancontainer.h ../functions/functions.h -mkdir.o: ../templates/templates.h ../templates/patterncacher.h -mkdir.o: ../templates/indexpatterns.h ../templates/patterns.h -mkdir.o: ../templates/changepatterns.h ../templates/htmltextstream.h -mkdir.o: ../core/sessionmanager.h -mount.o: mount.h functionbase.h ../core/item.h ../../pikotools/space/space.h -mount.o: ../../pikotools/textstream/types.h ../../pikotools/date/date.h -mount.o: ../db/db.h ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h -mount.o: ../core/textstream.h ../core/misc.h ../core/item.h -mount.o: ../core/requesttypes.h ../../pikotools/textstream/textstream.h +mkdir.o: functionparser.h ../../winix/core/cur.h account.h adduser.h cat.h +mkdir.o: chmod.h privchanger.h chown.h ckeditor.h cp.h default.h download.h +mkdir.o: emacs.h env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h +mkdir.o: meta.h mv.h nicedit.h node.h passwd.h priv.h pw.h reload.h rm.h +mkdir.o: rmuser.h run.h sort.h specialdefault.h stat.h subject.h template.h +mkdir.o: timezone.h tinymce.h uname.h upload.h uptime.h who.h vim.h +mkdir.o: ../../winix/core/htmlfilter.h ../../ezc/src/stringconv.h +mkdir.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +mkdir.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +mkdir.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +mkdir.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +mkdir.o: ../../winix/core/crypt.h ../../winix/core/users.h +mkdir.o: ../../winix/core/groups.h ../../winix/core/group.h +mkdir.o: ../../winix/core/loadavg.h ../../winix/core/image.h +mkdir.o: ../../winix/core/threadmanager.h ../../winix/core/timezones.h +mkdir.o: ../../winix/core/synchro.h ../../winix/core/plugin.h +mkdir.o: ../../winix/core/pluginmsg.h ../../winix/core/system.h +mkdir.o: ../../winix/core/sessionmanager.h +mkdir.o: ../../winix/core/sessioncontainer.h +mkdir.o: ../../winix/core/ipbancontainer.h ../../winix/functions/functions.h +mkdir.o: ../../winix/templates/templates.h +mkdir.o: ../../winix/templates/patterncacher.h +mkdir.o: ../../winix/templates/indexpatterns.h +mkdir.o: ../../winix/templates/patterns.h +mkdir.o: ../../winix/templates/changepatterns.h +mkdir.o: ../../winix/templates/htmltextstream.h +mkdir.o: ../../winix/core/sessionmanager.h +mount.o: mount.h functionbase.h ../../winix/core/item.h +mount.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h +mount.o: ../../pikotools/date/date.h ../../winix/db/db.h +mount.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +mount.o: ../../winix/db/dbtextstream.h ../../winix/core/textstream.h +mount.o: ../../winix/core/misc.h ../../winix/core/item.h +mount.o: ../../winix/core/requesttypes.h +mount.o: ../../pikotools/textstream/textstream.h mount.o: ../../pikotools/convert/convert.h ../../pikotools/convert/inttostr.h mount.o: ../../pikotools/membuffer/membuffer.h mount.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -mount.o: ../core/error.h ../../pikotools/space/spaceparser.h -mount.o: ../../pikotools/space/space.h ../db/dbitemquery.h -mount.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -mount.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -mount.o: ../core/textstream.h ../core/logmanipulators.h ../core/slog.h -mount.o: ../core/cur.h ../core/request.h ../core/error.h ../core/config.h -mount.o: ../core/htmlfilter.h ../templates/htmltextstream.h -mount.o: ../../pikotools/space/spacetojson.h ../core/session.h ../core/user.h -mount.o: ../core/plugindata.h ../core/rebus.h ipban.h ../templates/locale.h -mount.o: ../core/request.h ../core/config.h ../core/system.h ../core/job.h -mount.o: ../core/basethread.h ../core/synchro.h ../core/dirs.h -mount.o: ../core/dircontainer.h ../notify/notify.h ../notify/notifypool.h -mount.o: ../templates/patterns.h locale.h ../templates/localefilter.h -mount.o: ../../ezc/src/ezc.h ../../ezc/src/generator.h -mount.o: ../../ezc/src/pattern.h functions.h functionparser.h ../core/cur.h -mount.o: account.h adduser.h cat.h chmod.h privchanger.h chown.h ckeditor.h -mount.o: cp.h default.h download.h emacs.h env.h imgcrop.h last.h login.h -mount.o: logout.h ln.h ls.h man.h meta.h mkdir.h mv.h nicedit.h node.h -mount.o: passwd.h priv.h pw.h reload.h rm.h rmuser.h run.h sort.h -mount.o: specialdefault.h stat.h subject.h template.h timezone.h tinymce.h -mount.o: uname.h upload.h uptime.h who.h vim.h ../core/htmlfilter.h -mount.o: ../../ezc/src/stringconv.h ../notify/notifythread.h -mount.o: ../core/basethread.h ../notify/templatesnotify.h ../core/users.h -mount.o: ../core/ugcontainer.h ../core/lastcontainer.h ../core/mounts.h -mount.o: ../core/mountparser.h ../core/crypt.h ../core/users.h -mount.o: ../core/groups.h ../core/group.h ../core/loadavg.h ../core/image.h -mount.o: ../core/threadmanager.h ../core/timezones.h ../core/synchro.h -mv.o: mv.h functionbase.h ../core/item.h ../../pikotools/space/space.h -mv.o: ../../pikotools/textstream/types.h ../../pikotools/date/date.h -mv.o: ../db/db.h ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h -mv.o: ../core/textstream.h ../core/misc.h ../core/item.h -mv.o: ../core/requesttypes.h ../../pikotools/textstream/textstream.h +mount.o: ../../winix/core/error.h ../../pikotools/space/spaceparser.h +mount.o: ../../pikotools/space/space.h ../../winix/db/dbitemquery.h +mount.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +mount.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +mount.o: ../../winix/core/ugcontainer.h ../../winix/core/log.h +mount.o: ../../winix/core/textstream.h ../../winix/core/logmanipulators.h +mount.o: ../../winix/core/slog.h ../../winix/core/cur.h +mount.o: ../../winix/core/request.h ../../winix/core/error.h +mount.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h +mount.o: ../../winix/templates/htmltextstream.h +mount.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +mount.o: ../../winix/core/user.h ../../winix/core/plugindata.h +mount.o: ../../winix/core/rebus.h ipban.h ../../winix/templates/locale.h +mount.o: ../../winix/core/request.h ../../winix/core/config.h +mount.o: ../../winix/core/system.h ../../winix/core/job.h +mount.o: ../../winix/core/basethread.h ../../winix/core/synchro.h +mount.o: ../../winix/core/dirs.h ../../winix/core/dircontainer.h +mount.o: ../../winix/notify/notify.h ../../winix/notify/notifypool.h +mount.o: ../../winix/templates/patterns.h locale.h +mount.o: ../../winix/templates/localefilter.h ../../ezc/src/ezc.h +mount.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h +mount.o: functionparser.h ../../winix/core/cur.h account.h adduser.h cat.h +mount.o: chmod.h privchanger.h chown.h ckeditor.h cp.h default.h download.h +mount.o: emacs.h env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h +mount.o: meta.h mkdir.h mv.h nicedit.h node.h passwd.h priv.h pw.h reload.h +mount.o: rm.h rmuser.h run.h sort.h specialdefault.h stat.h subject.h +mount.o: template.h timezone.h tinymce.h uname.h upload.h uptime.h who.h +mount.o: vim.h ../../winix/core/htmlfilter.h ../../ezc/src/stringconv.h +mount.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +mount.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +mount.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +mount.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +mount.o: ../../winix/core/crypt.h ../../winix/core/users.h +mount.o: ../../winix/core/groups.h ../../winix/core/group.h +mount.o: ../../winix/core/loadavg.h ../../winix/core/image.h +mount.o: ../../winix/core/threadmanager.h ../../winix/core/timezones.h +mount.o: ../../winix/core/synchro.h +mv.o: mv.h functionbase.h ../../winix/core/item.h +mv.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h +mv.o: ../../pikotools/date/date.h ../../winix/db/db.h ../../winix/db/dbbase.h +mv.o: ../../winix/db/dbconn.h ../../winix/db/dbtextstream.h +mv.o: ../../winix/core/textstream.h ../../winix/core/misc.h +mv.o: ../../winix/core/item.h ../../winix/core/requesttypes.h +mv.o: ../../pikotools/textstream/textstream.h mv.o: ../../pikotools/convert/convert.h ../../pikotools/convert/inttostr.h mv.o: ../../pikotools/membuffer/membuffer.h mv.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -mv.o: ../core/error.h ../../pikotools/space/spaceparser.h -mv.o: ../../pikotools/space/space.h ../db/dbitemquery.h ../db/dbitemcolumns.h -mv.o: ../core/user.h ../core/group.h ../core/dircontainer.h -mv.o: ../core/ugcontainer.h ../core/log.h ../core/textstream.h -mv.o: ../core/logmanipulators.h ../core/slog.h ../core/cur.h -mv.o: ../core/request.h ../core/error.h ../core/config.h ../core/htmlfilter.h -mv.o: ../templates/htmltextstream.h ../../pikotools/space/spacetojson.h -mv.o: ../core/session.h ../core/user.h ../core/plugindata.h ../core/rebus.h -mv.o: ipban.h mount.h ../templates/locale.h ../core/request.h -mv.o: ../core/config.h ../core/system.h ../core/job.h ../core/basethread.h -mv.o: ../core/synchro.h ../core/dirs.h ../core/dircontainer.h -mv.o: ../notify/notify.h ../notify/notifypool.h ../templates/patterns.h -mv.o: locale.h ../templates/localefilter.h ../../ezc/src/ezc.h +mv.o: ../../winix/core/error.h ../../pikotools/space/spaceparser.h +mv.o: ../../pikotools/space/space.h ../../winix/db/dbitemquery.h +mv.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +mv.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +mv.o: ../../winix/core/ugcontainer.h ../../winix/core/log.h +mv.o: ../../winix/core/textstream.h ../../winix/core/logmanipulators.h +mv.o: ../../winix/core/slog.h ../../winix/core/cur.h +mv.o: ../../winix/core/request.h ../../winix/core/error.h +mv.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h +mv.o: ../../winix/templates/htmltextstream.h +mv.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +mv.o: ../../winix/core/user.h ../../winix/core/plugindata.h +mv.o: ../../winix/core/rebus.h ipban.h mount.h ../../winix/templates/locale.h +mv.o: ../../winix/core/request.h ../../winix/core/config.h +mv.o: ../../winix/core/system.h ../../winix/core/job.h +mv.o: ../../winix/core/basethread.h ../../winix/core/synchro.h +mv.o: ../../winix/core/dirs.h ../../winix/core/dircontainer.h +mv.o: ../../winix/notify/notify.h ../../winix/notify/notifypool.h +mv.o: ../../winix/templates/patterns.h locale.h +mv.o: ../../winix/templates/localefilter.h ../../ezc/src/ezc.h mv.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h -mv.o: functionparser.h ../core/cur.h account.h adduser.h cat.h chmod.h -mv.o: privchanger.h chown.h ckeditor.h cp.h default.h download.h emacs.h -mv.o: env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h meta.h mkdir.h -mv.o: nicedit.h node.h passwd.h priv.h pw.h reload.h rm.h rmuser.h run.h -mv.o: sort.h specialdefault.h stat.h subject.h template.h timezone.h -mv.o: tinymce.h uname.h upload.h uptime.h who.h vim.h ../core/htmlfilter.h -mv.o: ../../ezc/src/stringconv.h ../notify/notifythread.h -mv.o: ../core/basethread.h ../notify/templatesnotify.h ../core/users.h -mv.o: ../core/ugcontainer.h ../core/lastcontainer.h ../core/mounts.h -mv.o: ../core/mountparser.h ../core/crypt.h ../core/users.h ../core/groups.h -mv.o: ../core/group.h ../core/loadavg.h ../core/image.h -mv.o: ../core/threadmanager.h ../core/timezones.h ../core/synchro.h -mv.o: ../core/plugin.h ../core/pluginmsg.h ../core/system.h -mv.o: ../core/sessionmanager.h ../core/sessioncontainer.h -mv.o: ../core/ipbancontainer.h ../functions/functions.h -mv.o: ../templates/templates.h ../templates/patterncacher.h -mv.o: ../templates/indexpatterns.h ../templates/patterns.h -mv.o: ../templates/changepatterns.h ../templates/htmltextstream.h -mv.o: ../core/sessionmanager.h -nicedit.o: nicedit.h functionbase.h ../core/item.h +mv.o: functionparser.h ../../winix/core/cur.h account.h adduser.h cat.h +mv.o: chmod.h privchanger.h chown.h ckeditor.h cp.h default.h download.h +mv.o: emacs.h env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h meta.h +mv.o: mkdir.h nicedit.h node.h passwd.h priv.h pw.h reload.h rm.h rmuser.h +mv.o: run.h sort.h specialdefault.h stat.h subject.h template.h timezone.h +mv.o: tinymce.h uname.h upload.h uptime.h who.h vim.h +mv.o: ../../winix/core/htmlfilter.h ../../ezc/src/stringconv.h +mv.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +mv.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +mv.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +mv.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +mv.o: ../../winix/core/crypt.h ../../winix/core/users.h +mv.o: ../../winix/core/groups.h ../../winix/core/group.h +mv.o: ../../winix/core/loadavg.h ../../winix/core/image.h +mv.o: ../../winix/core/threadmanager.h ../../winix/core/timezones.h +mv.o: ../../winix/core/synchro.h ../../winix/core/plugin.h +mv.o: ../../winix/core/pluginmsg.h ../../winix/core/system.h +mv.o: ../../winix/core/sessionmanager.h ../../winix/core/sessioncontainer.h +mv.o: ../../winix/core/ipbancontainer.h ../../winix/functions/functions.h +mv.o: ../../winix/templates/templates.h ../../winix/templates/patterncacher.h +mv.o: ../../winix/templates/indexpatterns.h ../../winix/templates/patterns.h +mv.o: ../../winix/templates/changepatterns.h +mv.o: ../../winix/templates/htmltextstream.h +mv.o: ../../winix/core/sessionmanager.h +nicedit.o: nicedit.h functionbase.h ../../winix/core/item.h nicedit.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h -nicedit.o: ../../pikotools/date/date.h ../db/db.h ../db/dbbase.h -nicedit.o: ../db/dbconn.h ../db/dbtextstream.h ../core/textstream.h -nicedit.o: ../core/misc.h ../core/item.h ../core/requesttypes.h +nicedit.o: ../../pikotools/date/date.h ../../winix/db/db.h +nicedit.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +nicedit.o: ../../winix/db/dbtextstream.h ../../winix/core/textstream.h +nicedit.o: ../../winix/core/misc.h ../../winix/core/item.h +nicedit.o: ../../winix/core/requesttypes.h nicedit.o: ../../pikotools/textstream/textstream.h nicedit.o: ../../pikotools/convert/convert.h nicedit.o: ../../pikotools/convert/inttostr.h nicedit.o: ../../pikotools/membuffer/membuffer.h nicedit.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -nicedit.o: ../core/error.h ../../pikotools/space/spaceparser.h -nicedit.o: ../../pikotools/space/space.h ../db/dbitemquery.h -nicedit.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -nicedit.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -nicedit.o: ../core/textstream.h ../core/logmanipulators.h ../core/slog.h -nicedit.o: ../core/cur.h ../core/request.h ../core/error.h ../core/config.h -nicedit.o: ../core/htmlfilter.h ../templates/htmltextstream.h -nicedit.o: ../../pikotools/space/spacetojson.h ../core/session.h -nicedit.o: ../core/user.h ../core/plugindata.h ../core/rebus.h ipban.h -nicedit.o: mount.h ../templates/locale.h ../core/request.h ../core/config.h -nicedit.o: ../core/system.h ../core/job.h ../core/basethread.h -nicedit.o: ../core/synchro.h ../core/dirs.h ../core/dircontainer.h -nicedit.o: ../notify/notify.h ../notify/notifypool.h ../templates/patterns.h -nicedit.o: locale.h ../templates/localefilter.h ../../ezc/src/ezc.h +nicedit.o: ../../winix/core/error.h ../../pikotools/space/spaceparser.h +nicedit.o: ../../pikotools/space/space.h ../../winix/db/dbitemquery.h +nicedit.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +nicedit.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +nicedit.o: ../../winix/core/ugcontainer.h ../../winix/core/log.h +nicedit.o: ../../winix/core/textstream.h ../../winix/core/logmanipulators.h +nicedit.o: ../../winix/core/slog.h ../../winix/core/cur.h +nicedit.o: ../../winix/core/request.h ../../winix/core/error.h +nicedit.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h +nicedit.o: ../../winix/templates/htmltextstream.h +nicedit.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +nicedit.o: ../../winix/core/user.h ../../winix/core/plugindata.h +nicedit.o: ../../winix/core/rebus.h ipban.h mount.h +nicedit.o: ../../winix/templates/locale.h ../../winix/core/request.h +nicedit.o: ../../winix/core/config.h ../../winix/core/system.h +nicedit.o: ../../winix/core/job.h ../../winix/core/basethread.h +nicedit.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +nicedit.o: ../../winix/core/dircontainer.h ../../winix/notify/notify.h +nicedit.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +nicedit.o: locale.h ../../winix/templates/localefilter.h ../../ezc/src/ezc.h nicedit.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h -nicedit.o: functionparser.h ../core/cur.h account.h adduser.h cat.h chmod.h -nicedit.o: privchanger.h chown.h ckeditor.h cp.h default.h download.h emacs.h -nicedit.o: env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h meta.h -nicedit.o: mkdir.h mv.h node.h passwd.h priv.h pw.h reload.h rm.h rmuser.h -nicedit.o: run.h sort.h specialdefault.h stat.h subject.h template.h +nicedit.o: functionparser.h ../../winix/core/cur.h account.h adduser.h cat.h +nicedit.o: chmod.h privchanger.h chown.h ckeditor.h cp.h default.h download.h +nicedit.o: emacs.h env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h +nicedit.o: meta.h mkdir.h mv.h node.h passwd.h priv.h pw.h reload.h rm.h +nicedit.o: rmuser.h run.h sort.h specialdefault.h stat.h subject.h template.h nicedit.o: timezone.h tinymce.h uname.h upload.h uptime.h who.h vim.h -nicedit.o: ../core/htmlfilter.h ../../ezc/src/stringconv.h -nicedit.o: ../notify/notifythread.h ../core/basethread.h -nicedit.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h -nicedit.o: ../core/lastcontainer.h ../core/mounts.h ../core/mountparser.h -nicedit.o: ../core/crypt.h ../core/users.h ../core/groups.h ../core/group.h -nicedit.o: ../core/loadavg.h ../core/image.h ../core/threadmanager.h -nicedit.o: ../core/timezones.h ../core/synchro.h -node.o: node.h functionbase.h ../core/item.h ../../pikotools/space/space.h -node.o: ../../pikotools/textstream/types.h ../../pikotools/date/date.h -node.o: ../db/db.h ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h -node.o: ../core/textstream.h ../core/misc.h ../core/item.h -node.o: ../core/requesttypes.h ../../pikotools/textstream/textstream.h +nicedit.o: ../../winix/core/htmlfilter.h ../../ezc/src/stringconv.h +nicedit.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +nicedit.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +nicedit.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +nicedit.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +nicedit.o: ../../winix/core/crypt.h ../../winix/core/users.h +nicedit.o: ../../winix/core/groups.h ../../winix/core/group.h +nicedit.o: ../../winix/core/loadavg.h ../../winix/core/image.h +nicedit.o: ../../winix/core/threadmanager.h ../../winix/core/timezones.h +nicedit.o: ../../winix/core/synchro.h +node.o: node.h functionbase.h ../../winix/core/item.h +node.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h +node.o: ../../pikotools/date/date.h ../../winix/db/db.h +node.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +node.o: ../../winix/db/dbtextstream.h ../../winix/core/textstream.h +node.o: ../../winix/core/misc.h ../../winix/core/item.h +node.o: ../../winix/core/requesttypes.h +node.o: ../../pikotools/textstream/textstream.h node.o: ../../pikotools/convert/convert.h ../../pikotools/convert/inttostr.h node.o: ../../pikotools/membuffer/membuffer.h node.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -node.o: ../core/error.h ../../pikotools/space/spaceparser.h -node.o: ../../pikotools/space/space.h ../db/dbitemquery.h -node.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -node.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -node.o: ../core/textstream.h ../core/logmanipulators.h ../core/slog.h -node.o: ../core/cur.h ../core/request.h ../core/error.h ../core/config.h -node.o: ../core/htmlfilter.h ../templates/htmltextstream.h -node.o: ../../pikotools/space/spacetojson.h ../core/session.h ../core/user.h -node.o: ../core/plugindata.h ../core/rebus.h ipban.h mount.h -node.o: ../templates/locale.h ../core/request.h ../core/config.h -node.o: ../core/system.h ../core/job.h ../core/basethread.h ../core/synchro.h -node.o: ../core/dirs.h ../core/dircontainer.h ../notify/notify.h -node.o: ../notify/notifypool.h ../templates/patterns.h locale.h -node.o: ../templates/localefilter.h ../../ezc/src/ezc.h +node.o: ../../winix/core/error.h ../../pikotools/space/spaceparser.h +node.o: ../../pikotools/space/space.h ../../winix/db/dbitemquery.h +node.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +node.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +node.o: ../../winix/core/ugcontainer.h ../../winix/core/log.h +node.o: ../../winix/core/textstream.h ../../winix/core/logmanipulators.h +node.o: ../../winix/core/slog.h ../../winix/core/cur.h +node.o: ../../winix/core/request.h ../../winix/core/error.h +node.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h +node.o: ../../winix/templates/htmltextstream.h +node.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +node.o: ../../winix/core/user.h ../../winix/core/plugindata.h +node.o: ../../winix/core/rebus.h ipban.h mount.h +node.o: ../../winix/templates/locale.h ../../winix/core/request.h +node.o: ../../winix/core/config.h ../../winix/core/system.h +node.o: ../../winix/core/job.h ../../winix/core/basethread.h +node.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +node.o: ../../winix/core/dircontainer.h ../../winix/notify/notify.h +node.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +node.o: locale.h ../../winix/templates/localefilter.h ../../ezc/src/ezc.h node.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h -node.o: functionparser.h ../core/cur.h account.h adduser.h cat.h chmod.h -node.o: privchanger.h chown.h ckeditor.h cp.h default.h download.h emacs.h -node.o: env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h meta.h -node.o: mkdir.h mv.h nicedit.h passwd.h priv.h pw.h reload.h rm.h rmuser.h -node.o: run.h sort.h specialdefault.h stat.h subject.h template.h timezone.h -node.o: tinymce.h uname.h upload.h uptime.h who.h vim.h ../core/htmlfilter.h -node.o: ../../ezc/src/stringconv.h ../notify/notifythread.h -node.o: ../core/basethread.h ../notify/templatesnotify.h ../core/users.h -node.o: ../core/ugcontainer.h ../core/lastcontainer.h ../core/mounts.h -node.o: ../core/mountparser.h ../core/crypt.h ../core/users.h -node.o: ../core/groups.h ../core/group.h ../core/loadavg.h ../core/image.h -node.o: ../core/threadmanager.h ../core/timezones.h ../core/synchro.h -passwd.o: passwd.h functionbase.h ../core/item.h +node.o: functionparser.h ../../winix/core/cur.h account.h adduser.h cat.h +node.o: chmod.h privchanger.h chown.h ckeditor.h cp.h default.h download.h +node.o: emacs.h env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h +node.o: meta.h mkdir.h mv.h nicedit.h passwd.h priv.h pw.h reload.h rm.h +node.o: rmuser.h run.h sort.h specialdefault.h stat.h subject.h template.h +node.o: timezone.h tinymce.h uname.h upload.h uptime.h who.h vim.h +node.o: ../../winix/core/htmlfilter.h ../../ezc/src/stringconv.h +node.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +node.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +node.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +node.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +node.o: ../../winix/core/crypt.h ../../winix/core/users.h +node.o: ../../winix/core/groups.h ../../winix/core/group.h +node.o: ../../winix/core/loadavg.h ../../winix/core/image.h +node.o: ../../winix/core/threadmanager.h ../../winix/core/timezones.h +node.o: ../../winix/core/synchro.h +passwd.o: passwd.h functionbase.h ../../winix/core/item.h passwd.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h -passwd.o: ../../pikotools/date/date.h ../db/db.h ../db/dbbase.h -passwd.o: ../db/dbconn.h ../db/dbtextstream.h ../core/textstream.h -passwd.o: ../core/misc.h ../core/item.h ../core/requesttypes.h +passwd.o: ../../pikotools/date/date.h ../../winix/db/db.h +passwd.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +passwd.o: ../../winix/db/dbtextstream.h ../../winix/core/textstream.h +passwd.o: ../../winix/core/misc.h ../../winix/core/item.h +passwd.o: ../../winix/core/requesttypes.h passwd.o: ../../pikotools/textstream/textstream.h passwd.o: ../../pikotools/convert/convert.h passwd.o: ../../pikotools/convert/inttostr.h passwd.o: ../../pikotools/membuffer/membuffer.h passwd.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -passwd.o: ../core/error.h ../../pikotools/space/spaceparser.h -passwd.o: ../../pikotools/space/space.h ../db/dbitemquery.h -passwd.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -passwd.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -passwd.o: ../core/textstream.h ../core/logmanipulators.h ../core/slog.h -passwd.o: ../core/cur.h ../core/request.h ../core/error.h ../core/config.h -passwd.o: ../core/htmlfilter.h ../templates/htmltextstream.h -passwd.o: ../../pikotools/space/spacetojson.h ../core/session.h -passwd.o: ../core/user.h ../core/plugindata.h ../core/rebus.h ipban.h mount.h -passwd.o: ../templates/locale.h ../core/request.h ../core/config.h -passwd.o: ../core/system.h ../core/job.h ../core/basethread.h -passwd.o: ../core/synchro.h ../core/dirs.h ../core/dircontainer.h -passwd.o: ../notify/notify.h ../notify/notifypool.h ../templates/patterns.h -passwd.o: locale.h ../templates/localefilter.h ../../ezc/src/ezc.h +passwd.o: ../../winix/core/error.h ../../pikotools/space/spaceparser.h +passwd.o: ../../pikotools/space/space.h ../../winix/db/dbitemquery.h +passwd.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +passwd.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +passwd.o: ../../winix/core/ugcontainer.h ../../winix/core/log.h +passwd.o: ../../winix/core/textstream.h ../../winix/core/logmanipulators.h +passwd.o: ../../winix/core/slog.h ../../winix/core/cur.h +passwd.o: ../../winix/core/request.h ../../winix/core/error.h +passwd.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h +passwd.o: ../../winix/templates/htmltextstream.h +passwd.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +passwd.o: ../../winix/core/user.h ../../winix/core/plugindata.h +passwd.o: ../../winix/core/rebus.h ipban.h mount.h +passwd.o: ../../winix/templates/locale.h ../../winix/core/request.h +passwd.o: ../../winix/core/config.h ../../winix/core/system.h +passwd.o: ../../winix/core/job.h ../../winix/core/basethread.h +passwd.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +passwd.o: ../../winix/core/dircontainer.h ../../winix/notify/notify.h +passwd.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +passwd.o: locale.h ../../winix/templates/localefilter.h ../../ezc/src/ezc.h passwd.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h -passwd.o: functionparser.h ../core/cur.h account.h adduser.h cat.h chmod.h -passwd.o: privchanger.h chown.h ckeditor.h cp.h default.h download.h emacs.h -passwd.o: env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h meta.h -passwd.o: mkdir.h mv.h nicedit.h node.h priv.h pw.h reload.h rm.h rmuser.h -passwd.o: run.h sort.h specialdefault.h stat.h subject.h template.h +passwd.o: functionparser.h ../../winix/core/cur.h account.h adduser.h cat.h +passwd.o: chmod.h privchanger.h chown.h ckeditor.h cp.h default.h download.h +passwd.o: emacs.h env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h +passwd.o: meta.h mkdir.h mv.h nicedit.h node.h priv.h pw.h reload.h rm.h +passwd.o: rmuser.h run.h sort.h specialdefault.h stat.h subject.h template.h passwd.o: timezone.h tinymce.h uname.h upload.h uptime.h who.h vim.h -passwd.o: ../core/htmlfilter.h ../../ezc/src/stringconv.h -passwd.o: ../notify/notifythread.h ../core/basethread.h -passwd.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h -passwd.o: ../core/lastcontainer.h ../core/mounts.h ../core/mountparser.h -passwd.o: ../core/crypt.h ../core/users.h ../core/groups.h ../core/group.h -passwd.o: ../core/loadavg.h ../core/image.h ../core/threadmanager.h -passwd.o: ../core/timezones.h ../core/synchro.h ../core/slog.h -passwd.o: ../functions/functions.h -priv.o: priv.h functionbase.h ../core/item.h ../../pikotools/space/space.h -priv.o: ../../pikotools/textstream/types.h ../../pikotools/date/date.h -priv.o: ../db/db.h ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h -priv.o: ../core/textstream.h ../core/misc.h ../core/item.h -priv.o: ../core/requesttypes.h ../../pikotools/textstream/textstream.h +passwd.o: ../../winix/core/htmlfilter.h ../../ezc/src/stringconv.h +passwd.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +passwd.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +passwd.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +passwd.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +passwd.o: ../../winix/core/crypt.h ../../winix/core/users.h +passwd.o: ../../winix/core/groups.h ../../winix/core/group.h +passwd.o: ../../winix/core/loadavg.h ../../winix/core/image.h +passwd.o: ../../winix/core/threadmanager.h ../../winix/core/timezones.h +passwd.o: ../../winix/core/synchro.h ../../winix/core/slog.h +passwd.o: ../../winix/functions/functions.h +priv.o: priv.h functionbase.h ../../winix/core/item.h +priv.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h +priv.o: ../../pikotools/date/date.h ../../winix/db/db.h +priv.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +priv.o: ../../winix/db/dbtextstream.h ../../winix/core/textstream.h +priv.o: ../../winix/core/misc.h ../../winix/core/item.h +priv.o: ../../winix/core/requesttypes.h +priv.o: ../../pikotools/textstream/textstream.h priv.o: ../../pikotools/convert/convert.h ../../pikotools/convert/inttostr.h priv.o: ../../pikotools/membuffer/membuffer.h priv.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -priv.o: ../core/error.h ../../pikotools/space/spaceparser.h -priv.o: ../../pikotools/space/space.h ../db/dbitemquery.h -priv.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -priv.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -priv.o: ../core/textstream.h ../core/logmanipulators.h ../core/slog.h -priv.o: ../core/cur.h ../core/request.h ../core/error.h ../core/config.h -priv.o: ../core/htmlfilter.h ../templates/htmltextstream.h -priv.o: ../../pikotools/space/spacetojson.h ../core/session.h ../core/user.h -priv.o: ../core/plugindata.h ../core/rebus.h ipban.h mount.h -priv.o: ../templates/locale.h ../core/request.h ../core/config.h -priv.o: ../core/system.h ../core/job.h ../core/basethread.h ../core/synchro.h -priv.o: ../core/dirs.h ../core/dircontainer.h ../notify/notify.h -priv.o: ../notify/notifypool.h ../templates/patterns.h locale.h -priv.o: ../templates/localefilter.h ../../ezc/src/ezc.h +priv.o: ../../winix/core/error.h ../../pikotools/space/spaceparser.h +priv.o: ../../pikotools/space/space.h ../../winix/db/dbitemquery.h +priv.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +priv.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +priv.o: ../../winix/core/ugcontainer.h ../../winix/core/log.h +priv.o: ../../winix/core/textstream.h ../../winix/core/logmanipulators.h +priv.o: ../../winix/core/slog.h ../../winix/core/cur.h +priv.o: ../../winix/core/request.h ../../winix/core/error.h +priv.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h +priv.o: ../../winix/templates/htmltextstream.h +priv.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +priv.o: ../../winix/core/user.h ../../winix/core/plugindata.h +priv.o: ../../winix/core/rebus.h ipban.h mount.h +priv.o: ../../winix/templates/locale.h ../../winix/core/request.h +priv.o: ../../winix/core/config.h ../../winix/core/system.h +priv.o: ../../winix/core/job.h ../../winix/core/basethread.h +priv.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +priv.o: ../../winix/core/dircontainer.h ../../winix/notify/notify.h +priv.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +priv.o: locale.h ../../winix/templates/localefilter.h ../../ezc/src/ezc.h priv.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h -priv.o: functionparser.h ../core/cur.h account.h adduser.h cat.h chmod.h -priv.o: privchanger.h chown.h ckeditor.h cp.h default.h download.h emacs.h -priv.o: env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h meta.h -priv.o: mkdir.h mv.h nicedit.h node.h passwd.h pw.h reload.h rm.h rmuser.h -priv.o: run.h sort.h specialdefault.h stat.h subject.h template.h timezone.h -priv.o: tinymce.h uname.h upload.h uptime.h who.h vim.h ../core/htmlfilter.h -priv.o: ../../ezc/src/stringconv.h ../notify/notifythread.h -priv.o: ../core/basethread.h ../notify/templatesnotify.h ../core/users.h -priv.o: ../core/ugcontainer.h ../core/lastcontainer.h ../core/mounts.h -priv.o: ../core/mountparser.h ../core/crypt.h ../core/users.h -priv.o: ../core/groups.h ../core/group.h ../core/loadavg.h ../core/image.h -priv.o: ../core/threadmanager.h ../core/timezones.h ../core/synchro.h -privchanger.o: privchanger.h ../core/request.h ../core/system.h ../core/job.h -privchanger.o: ../core/basethread.h ../core/synchro.h +priv.o: functionparser.h ../../winix/core/cur.h account.h adduser.h cat.h +priv.o: chmod.h privchanger.h chown.h ckeditor.h cp.h default.h download.h +priv.o: emacs.h env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h +priv.o: meta.h mkdir.h mv.h nicedit.h node.h passwd.h pw.h reload.h rm.h +priv.o: rmuser.h run.h sort.h specialdefault.h stat.h subject.h template.h +priv.o: timezone.h tinymce.h uname.h upload.h uptime.h who.h vim.h +priv.o: ../../winix/core/htmlfilter.h ../../ezc/src/stringconv.h +priv.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +priv.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +priv.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +priv.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +priv.o: ../../winix/core/crypt.h ../../winix/core/users.h +priv.o: ../../winix/core/groups.h ../../winix/core/group.h +priv.o: ../../winix/core/loadavg.h ../../winix/core/image.h +priv.o: ../../winix/core/threadmanager.h ../../winix/core/timezones.h +priv.o: ../../winix/core/synchro.h +privchanger.o: privchanger.h ../../winix/core/request.h +privchanger.o: ../../winix/core/system.h ../../winix/core/job.h +privchanger.o: ../../winix/core/basethread.h ../../winix/core/synchro.h privchanger.o: ../../pikotools/space/space.h -privchanger.o: ../../pikotools/textstream/types.h ../core/dirs.h -privchanger.o: ../core/item.h ../core/dircontainer.h ../db/db.h -privchanger.o: ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h -privchanger.o: ../core/textstream.h ../core/misc.h ../core/requesttypes.h +privchanger.o: ../../pikotools/textstream/types.h ../../winix/core/dirs.h +privchanger.o: ../../winix/core/item.h ../../winix/core/dircontainer.h +privchanger.o: ../../winix/db/db.h ../../winix/db/dbbase.h +privchanger.o: ../../winix/db/dbconn.h ../../winix/db/dbtextstream.h +privchanger.o: ../../winix/core/textstream.h ../../winix/core/misc.h +privchanger.o: ../../winix/core/requesttypes.h privchanger.o: ../../pikotools/textstream/textstream.h privchanger.o: ../../pikotools/date/date.h ../../pikotools/convert/convert.h privchanger.o: ../../pikotools/convert/inttostr.h privchanger.o: ../../pikotools/membuffer/membuffer.h privchanger.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -privchanger.o: ../core/error.h ../../pikotools/space/spaceparser.h -privchanger.o: ../../pikotools/space/space.h ../db/dbitemquery.h -privchanger.o: ../core/item.h ../db/dbitemcolumns.h ../core/user.h -privchanger.o: ../core/group.h ../core/dircontainer.h ../core/ugcontainer.h -privchanger.o: ../core/log.h ../core/textstream.h ../core/logmanipulators.h -privchanger.o: ../core/slog.h ../core/cur.h ../core/request.h ../core/error.h -privchanger.o: ../core/config.h ../core/htmlfilter.h -privchanger.o: ../templates/htmltextstream.h -privchanger.o: ../../pikotools/space/spacetojson.h ../core/session.h -privchanger.o: ../core/user.h ../core/plugindata.h ../core/rebus.h ipban.h -privchanger.o: functionbase.h ../core/config.h ../core/synchro.h -privchanger.o: ../notify/notify.h ../notify/notifypool.h -privchanger.o: ../templates/locale.h ../templates/patterns.h locale.h -privchanger.o: ../templates/localefilter.h ../../ezc/src/ezc.h +privchanger.o: ../../winix/core/error.h ../../pikotools/space/spaceparser.h +privchanger.o: ../../pikotools/space/space.h ../../winix/db/dbitemquery.h +privchanger.o: ../../winix/core/item.h ../../winix/db/dbitemcolumns.h +privchanger.o: ../../winix/core/user.h ../../winix/core/group.h +privchanger.o: ../../winix/core/dircontainer.h ../../winix/core/ugcontainer.h +privchanger.o: ../../winix/core/log.h ../../winix/core/textstream.h +privchanger.o: ../../winix/core/logmanipulators.h ../../winix/core/slog.h +privchanger.o: ../../winix/core/cur.h ../../winix/core/request.h +privchanger.o: ../../winix/core/error.h ../../winix/core/config.h +privchanger.o: ../../winix/core/htmlfilter.h +privchanger.o: ../../winix/templates/htmltextstream.h +privchanger.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +privchanger.o: ../../winix/core/user.h ../../winix/core/plugindata.h +privchanger.o: ../../winix/core/rebus.h ipban.h functionbase.h +privchanger.o: ../../winix/core/config.h ../../winix/core/synchro.h +privchanger.o: ../../winix/notify/notify.h ../../winix/notify/notifypool.h +privchanger.o: ../../winix/templates/locale.h +privchanger.o: ../../winix/templates/patterns.h locale.h +privchanger.o: ../../winix/templates/localefilter.h ../../ezc/src/ezc.h privchanger.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h -privchanger.o: functionparser.h ../core/cur.h account.h adduser.h cat.h -privchanger.o: chmod.h chown.h ckeditor.h cp.h default.h download.h emacs.h -privchanger.o: env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h meta.h -privchanger.o: mkdir.h mount.h mv.h nicedit.h node.h passwd.h priv.h pw.h -privchanger.o: reload.h rm.h rmuser.h run.h sort.h specialdefault.h stat.h -privchanger.o: subject.h template.h timezone.h tinymce.h uname.h upload.h -privchanger.o: uptime.h who.h vim.h ../core/htmlfilter.h -privchanger.o: ../../ezc/src/stringconv.h ../notify/notifythread.h -privchanger.o: ../core/basethread.h ../notify/templatesnotify.h -privchanger.o: ../core/users.h ../core/ugcontainer.h ../core/lastcontainer.h -privchanger.o: ../core/mounts.h ../core/mountparser.h ../core/crypt.h -privchanger.o: ../core/users.h ../core/groups.h ../core/group.h -privchanger.o: ../core/loadavg.h ../core/image.h ../core/threadmanager.h -privchanger.o: ../core/timezones.h -pw.o: pw.h functionbase.h ../core/item.h ../../pikotools/space/space.h -pw.o: ../../pikotools/textstream/types.h ../../pikotools/date/date.h -pw.o: ../db/db.h ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h -pw.o: ../core/textstream.h ../core/misc.h ../core/item.h -pw.o: ../core/requesttypes.h ../../pikotools/textstream/textstream.h +privchanger.o: functionparser.h ../../winix/core/cur.h account.h adduser.h +privchanger.o: cat.h chmod.h chown.h ckeditor.h cp.h default.h download.h +privchanger.o: emacs.h env.h imgcrop.h last.h login.h logout.h ln.h ls.h +privchanger.o: man.h meta.h mkdir.h mount.h mv.h nicedit.h node.h passwd.h +privchanger.o: priv.h pw.h reload.h rm.h rmuser.h run.h sort.h +privchanger.o: specialdefault.h stat.h subject.h template.h timezone.h +privchanger.o: tinymce.h uname.h upload.h uptime.h who.h vim.h +privchanger.o: ../../winix/core/htmlfilter.h ../../ezc/src/stringconv.h +privchanger.o: ../../winix/notify/notifythread.h +privchanger.o: ../../winix/core/basethread.h +privchanger.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +privchanger.o: ../../winix/core/ugcontainer.h +privchanger.o: ../../winix/core/lastcontainer.h ../../winix/core/mounts.h +privchanger.o: ../../winix/core/mountparser.h ../../winix/core/crypt.h +privchanger.o: ../../winix/core/users.h ../../winix/core/groups.h +privchanger.o: ../../winix/core/group.h ../../winix/core/loadavg.h +privchanger.o: ../../winix/core/image.h ../../winix/core/threadmanager.h +privchanger.o: ../../winix/core/timezones.h +pw.o: pw.h functionbase.h ../../winix/core/item.h +pw.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h +pw.o: ../../pikotools/date/date.h ../../winix/db/db.h ../../winix/db/dbbase.h +pw.o: ../../winix/db/dbconn.h ../../winix/db/dbtextstream.h +pw.o: ../../winix/core/textstream.h ../../winix/core/misc.h +pw.o: ../../winix/core/item.h ../../winix/core/requesttypes.h +pw.o: ../../pikotools/textstream/textstream.h pw.o: ../../pikotools/convert/convert.h ../../pikotools/convert/inttostr.h pw.o: ../../pikotools/membuffer/membuffer.h pw.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -pw.o: ../core/error.h ../../pikotools/space/spaceparser.h -pw.o: ../../pikotools/space/space.h ../db/dbitemquery.h ../db/dbitemcolumns.h -pw.o: ../core/user.h ../core/group.h ../core/dircontainer.h -pw.o: ../core/ugcontainer.h ../core/log.h ../core/textstream.h -pw.o: ../core/logmanipulators.h ../core/slog.h ../core/cur.h -pw.o: ../core/request.h ../core/error.h ../core/config.h ../core/htmlfilter.h -pw.o: ../templates/htmltextstream.h ../../pikotools/space/spacetojson.h -pw.o: ../core/session.h ../core/user.h ../core/plugindata.h ../core/rebus.h -pw.o: ipban.h mount.h ../templates/locale.h ../core/request.h -pw.o: ../core/config.h ../core/system.h ../core/job.h ../core/basethread.h -pw.o: ../core/synchro.h ../core/dirs.h ../core/dircontainer.h -pw.o: ../notify/notify.h ../notify/notifypool.h ../templates/patterns.h -pw.o: locale.h ../templates/localefilter.h ../../ezc/src/ezc.h +pw.o: ../../winix/core/error.h ../../pikotools/space/spaceparser.h +pw.o: ../../pikotools/space/space.h ../../winix/db/dbitemquery.h +pw.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +pw.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +pw.o: ../../winix/core/ugcontainer.h ../../winix/core/log.h +pw.o: ../../winix/core/textstream.h ../../winix/core/logmanipulators.h +pw.o: ../../winix/core/slog.h ../../winix/core/cur.h +pw.o: ../../winix/core/request.h ../../winix/core/error.h +pw.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h +pw.o: ../../winix/templates/htmltextstream.h +pw.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +pw.o: ../../winix/core/user.h ../../winix/core/plugindata.h +pw.o: ../../winix/core/rebus.h ipban.h mount.h ../../winix/templates/locale.h +pw.o: ../../winix/core/request.h ../../winix/core/config.h +pw.o: ../../winix/core/system.h ../../winix/core/job.h +pw.o: ../../winix/core/basethread.h ../../winix/core/synchro.h +pw.o: ../../winix/core/dirs.h ../../winix/core/dircontainer.h +pw.o: ../../winix/notify/notify.h ../../winix/notify/notifypool.h +pw.o: ../../winix/templates/patterns.h locale.h +pw.o: ../../winix/templates/localefilter.h ../../ezc/src/ezc.h pw.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h -pw.o: functionparser.h ../core/cur.h account.h adduser.h cat.h chmod.h -pw.o: privchanger.h chown.h ckeditor.h cp.h default.h download.h emacs.h -pw.o: env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h meta.h mkdir.h -pw.o: mv.h nicedit.h node.h passwd.h priv.h reload.h rm.h rmuser.h run.h -pw.o: sort.h specialdefault.h stat.h subject.h template.h timezone.h -pw.o: tinymce.h uname.h upload.h uptime.h who.h vim.h ../core/htmlfilter.h -pw.o: ../../ezc/src/stringconv.h ../notify/notifythread.h -pw.o: ../core/basethread.h ../notify/templatesnotify.h ../core/users.h -pw.o: ../core/ugcontainer.h ../core/lastcontainer.h ../core/mounts.h -pw.o: ../core/mountparser.h ../core/crypt.h ../core/users.h ../core/groups.h -pw.o: ../core/group.h ../core/loadavg.h ../core/image.h -pw.o: ../core/threadmanager.h ../core/timezones.h ../core/synchro.h -pw.o: ../core/log.h ../core/misc.h -reload.o: reload.h functionbase.h ../core/item.h +pw.o: functionparser.h ../../winix/core/cur.h account.h adduser.h cat.h +pw.o: chmod.h privchanger.h chown.h ckeditor.h cp.h default.h download.h +pw.o: emacs.h env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h meta.h +pw.o: mkdir.h mv.h nicedit.h node.h passwd.h priv.h reload.h rm.h rmuser.h +pw.o: run.h sort.h specialdefault.h stat.h subject.h template.h timezone.h +pw.o: tinymce.h uname.h upload.h uptime.h who.h vim.h +pw.o: ../../winix/core/htmlfilter.h ../../ezc/src/stringconv.h +pw.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +pw.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +pw.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +pw.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +pw.o: ../../winix/core/crypt.h ../../winix/core/users.h +pw.o: ../../winix/core/groups.h ../../winix/core/group.h +pw.o: ../../winix/core/loadavg.h ../../winix/core/image.h +pw.o: ../../winix/core/threadmanager.h ../../winix/core/timezones.h +pw.o: ../../winix/core/synchro.h ../../winix/core/log.h +pw.o: ../../winix/core/misc.h +reload.o: reload.h functionbase.h ../../winix/core/item.h reload.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h -reload.o: ../../pikotools/date/date.h ../db/db.h ../db/dbbase.h -reload.o: ../db/dbconn.h ../db/dbtextstream.h ../core/textstream.h -reload.o: ../core/misc.h ../core/item.h ../core/requesttypes.h +reload.o: ../../pikotools/date/date.h ../../winix/db/db.h +reload.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +reload.o: ../../winix/db/dbtextstream.h ../../winix/core/textstream.h +reload.o: ../../winix/core/misc.h ../../winix/core/item.h +reload.o: ../../winix/core/requesttypes.h reload.o: ../../pikotools/textstream/textstream.h reload.o: ../../pikotools/convert/convert.h reload.o: ../../pikotools/convert/inttostr.h reload.o: ../../pikotools/membuffer/membuffer.h reload.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -reload.o: ../core/error.h ../../pikotools/space/spaceparser.h -reload.o: ../../pikotools/space/space.h ../db/dbitemquery.h -reload.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -reload.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -reload.o: ../core/textstream.h ../core/logmanipulators.h ../core/slog.h -reload.o: ../core/cur.h ../core/request.h ../core/error.h ../core/config.h -reload.o: ../core/htmlfilter.h ../templates/htmltextstream.h -reload.o: ../../pikotools/space/spacetojson.h ../core/session.h -reload.o: ../core/user.h ../core/plugindata.h ../core/rebus.h ipban.h mount.h -reload.o: ../templates/locale.h ../core/request.h ../core/config.h -reload.o: ../core/system.h ../core/job.h ../core/basethread.h -reload.o: ../core/synchro.h ../core/dirs.h ../core/dircontainer.h -reload.o: ../notify/notify.h ../notify/notifypool.h ../templates/patterns.h -reload.o: locale.h ../templates/localefilter.h ../../ezc/src/ezc.h +reload.o: ../../winix/core/error.h ../../pikotools/space/spaceparser.h +reload.o: ../../pikotools/space/space.h ../../winix/db/dbitemquery.h +reload.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +reload.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +reload.o: ../../winix/core/ugcontainer.h ../../winix/core/log.h +reload.o: ../../winix/core/textstream.h ../../winix/core/logmanipulators.h +reload.o: ../../winix/core/slog.h ../../winix/core/cur.h +reload.o: ../../winix/core/request.h ../../winix/core/error.h +reload.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h +reload.o: ../../winix/templates/htmltextstream.h +reload.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +reload.o: ../../winix/core/user.h ../../winix/core/plugindata.h +reload.o: ../../winix/core/rebus.h ipban.h mount.h +reload.o: ../../winix/templates/locale.h ../../winix/core/request.h +reload.o: ../../winix/core/config.h ../../winix/core/system.h +reload.o: ../../winix/core/job.h ../../winix/core/basethread.h +reload.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +reload.o: ../../winix/core/dircontainer.h ../../winix/notify/notify.h +reload.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +reload.o: locale.h ../../winix/templates/localefilter.h ../../ezc/src/ezc.h reload.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h -reload.o: functionparser.h ../core/cur.h account.h adduser.h cat.h chmod.h -reload.o: privchanger.h chown.h ckeditor.h cp.h default.h download.h emacs.h -reload.o: env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h meta.h -reload.o: mkdir.h mv.h nicedit.h node.h passwd.h priv.h pw.h rm.h rmuser.h -reload.o: run.h sort.h specialdefault.h stat.h subject.h template.h +reload.o: functionparser.h ../../winix/core/cur.h account.h adduser.h cat.h +reload.o: chmod.h privchanger.h chown.h ckeditor.h cp.h default.h download.h +reload.o: emacs.h env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h +reload.o: meta.h mkdir.h mv.h nicedit.h node.h passwd.h priv.h pw.h rm.h +reload.o: rmuser.h run.h sort.h specialdefault.h stat.h subject.h template.h reload.o: timezone.h tinymce.h uname.h upload.h uptime.h who.h vim.h -reload.o: ../core/htmlfilter.h ../../ezc/src/stringconv.h -reload.o: ../notify/notifythread.h ../core/basethread.h -reload.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h -reload.o: ../core/lastcontainer.h ../core/mounts.h ../core/mountparser.h -reload.o: ../core/crypt.h ../core/users.h ../core/groups.h ../core/group.h -reload.o: ../core/loadavg.h ../core/image.h ../core/threadmanager.h -reload.o: ../core/timezones.h ../core/synchro.h ../templates/templates.h -reload.o: ../templates/patterncacher.h ../templates/indexpatterns.h -reload.o: ../templates/patterns.h ../templates/changepatterns.h -reload.o: ../templates/htmltextstream.h ../core/sessionmanager.h -rm.o: rm.h functionbase.h ../core/item.h ../../pikotools/space/space.h -rm.o: ../../pikotools/textstream/types.h ../../pikotools/date/date.h -rm.o: ../db/db.h ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h -rm.o: ../core/textstream.h ../core/misc.h ../core/item.h -rm.o: ../core/requesttypes.h ../../pikotools/textstream/textstream.h +reload.o: ../../winix/core/htmlfilter.h ../../ezc/src/stringconv.h +reload.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +reload.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +reload.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +reload.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +reload.o: ../../winix/core/crypt.h ../../winix/core/users.h +reload.o: ../../winix/core/groups.h ../../winix/core/group.h +reload.o: ../../winix/core/loadavg.h ../../winix/core/image.h +reload.o: ../../winix/core/threadmanager.h ../../winix/core/timezones.h +reload.o: ../../winix/core/synchro.h ../../winix/templates/templates.h +reload.o: ../../winix/templates/patterncacher.h +reload.o: ../../winix/templates/indexpatterns.h +reload.o: ../../winix/templates/patterns.h +reload.o: ../../winix/templates/changepatterns.h +reload.o: ../../winix/templates/htmltextstream.h +reload.o: ../../winix/core/sessionmanager.h +rm.o: rm.h functionbase.h ../../winix/core/item.h +rm.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h +rm.o: ../../pikotools/date/date.h ../../winix/db/db.h ../../winix/db/dbbase.h +rm.o: ../../winix/db/dbconn.h ../../winix/db/dbtextstream.h +rm.o: ../../winix/core/textstream.h ../../winix/core/misc.h +rm.o: ../../winix/core/item.h ../../winix/core/requesttypes.h +rm.o: ../../pikotools/textstream/textstream.h rm.o: ../../pikotools/convert/convert.h ../../pikotools/convert/inttostr.h rm.o: ../../pikotools/membuffer/membuffer.h rm.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -rm.o: ../core/error.h ../../pikotools/space/spaceparser.h -rm.o: ../../pikotools/space/space.h ../db/dbitemquery.h ../db/dbitemcolumns.h -rm.o: ../core/user.h ../core/group.h ../core/dircontainer.h -rm.o: ../core/ugcontainer.h ../core/log.h ../core/textstream.h -rm.o: ../core/logmanipulators.h ../core/slog.h ../core/cur.h -rm.o: ../core/request.h ../core/error.h ../core/config.h ../core/htmlfilter.h -rm.o: ../templates/htmltextstream.h ../../pikotools/space/spacetojson.h -rm.o: ../core/session.h ../core/user.h ../core/plugindata.h ../core/rebus.h -rm.o: ipban.h mount.h ../templates/locale.h ../core/request.h -rm.o: ../core/config.h ../core/system.h ../core/job.h ../core/basethread.h -rm.o: ../core/synchro.h ../core/dirs.h ../core/dircontainer.h -rm.o: ../notify/notify.h ../notify/notifypool.h ../templates/patterns.h -rm.o: locale.h ../templates/localefilter.h ../../ezc/src/ezc.h +rm.o: ../../winix/core/error.h ../../pikotools/space/spaceparser.h +rm.o: ../../pikotools/space/space.h ../../winix/db/dbitemquery.h +rm.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +rm.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +rm.o: ../../winix/core/ugcontainer.h ../../winix/core/log.h +rm.o: ../../winix/core/textstream.h ../../winix/core/logmanipulators.h +rm.o: ../../winix/core/slog.h ../../winix/core/cur.h +rm.o: ../../winix/core/request.h ../../winix/core/error.h +rm.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h +rm.o: ../../winix/templates/htmltextstream.h +rm.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +rm.o: ../../winix/core/user.h ../../winix/core/plugindata.h +rm.o: ../../winix/core/rebus.h ipban.h mount.h ../../winix/templates/locale.h +rm.o: ../../winix/core/request.h ../../winix/core/config.h +rm.o: ../../winix/core/system.h ../../winix/core/job.h +rm.o: ../../winix/core/basethread.h ../../winix/core/synchro.h +rm.o: ../../winix/core/dirs.h ../../winix/core/dircontainer.h +rm.o: ../../winix/notify/notify.h ../../winix/notify/notifypool.h +rm.o: ../../winix/templates/patterns.h locale.h +rm.o: ../../winix/templates/localefilter.h ../../ezc/src/ezc.h rm.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h -rm.o: functionparser.h ../core/cur.h account.h adduser.h cat.h chmod.h -rm.o: privchanger.h chown.h ckeditor.h cp.h default.h download.h emacs.h -rm.o: env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h meta.h mkdir.h -rm.o: mv.h nicedit.h node.h passwd.h priv.h pw.h reload.h rmuser.h run.h -rm.o: sort.h specialdefault.h stat.h subject.h template.h timezone.h -rm.o: tinymce.h uname.h upload.h uptime.h who.h vim.h ../core/htmlfilter.h -rm.o: ../../ezc/src/stringconv.h ../notify/notifythread.h -rm.o: ../core/basethread.h ../notify/templatesnotify.h ../core/users.h -rm.o: ../core/ugcontainer.h ../core/lastcontainer.h ../core/mounts.h -rm.o: ../core/mountparser.h ../core/crypt.h ../core/users.h ../core/groups.h -rm.o: ../core/group.h ../core/loadavg.h ../core/image.h -rm.o: ../core/threadmanager.h ../core/timezones.h ../core/synchro.h -rm.o: ../core/plugin.h ../core/pluginmsg.h ../core/system.h -rm.o: ../core/sessionmanager.h ../core/sessioncontainer.h -rm.o: ../core/ipbancontainer.h ../functions/functions.h -rm.o: ../templates/templates.h ../templates/patterncacher.h -rm.o: ../templates/indexpatterns.h ../templates/patterns.h -rm.o: ../templates/changepatterns.h ../templates/htmltextstream.h -rm.o: ../core/sessionmanager.h ../core/misc.h -rmuser.o: rmuser.h functionbase.h ../core/item.h +rm.o: functionparser.h ../../winix/core/cur.h account.h adduser.h cat.h +rm.o: chmod.h privchanger.h chown.h ckeditor.h cp.h default.h download.h +rm.o: emacs.h env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h meta.h +rm.o: mkdir.h mv.h nicedit.h node.h passwd.h priv.h pw.h reload.h rmuser.h +rm.o: run.h sort.h specialdefault.h stat.h subject.h template.h timezone.h +rm.o: tinymce.h uname.h upload.h uptime.h who.h vim.h +rm.o: ../../winix/core/htmlfilter.h ../../ezc/src/stringconv.h +rm.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +rm.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +rm.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +rm.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +rm.o: ../../winix/core/crypt.h ../../winix/core/users.h +rm.o: ../../winix/core/groups.h ../../winix/core/group.h +rm.o: ../../winix/core/loadavg.h ../../winix/core/image.h +rm.o: ../../winix/core/threadmanager.h ../../winix/core/timezones.h +rm.o: ../../winix/core/synchro.h ../../winix/core/plugin.h +rm.o: ../../winix/core/pluginmsg.h ../../winix/core/system.h +rm.o: ../../winix/core/sessionmanager.h ../../winix/core/sessioncontainer.h +rm.o: ../../winix/core/ipbancontainer.h ../../winix/functions/functions.h +rm.o: ../../winix/templates/templates.h ../../winix/templates/patterncacher.h +rm.o: ../../winix/templates/indexpatterns.h ../../winix/templates/patterns.h +rm.o: ../../winix/templates/changepatterns.h +rm.o: ../../winix/templates/htmltextstream.h +rm.o: ../../winix/core/sessionmanager.h ../../winix/core/misc.h +rmuser.o: rmuser.h functionbase.h ../../winix/core/item.h rmuser.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h -rmuser.o: ../../pikotools/date/date.h ../db/db.h ../db/dbbase.h -rmuser.o: ../db/dbconn.h ../db/dbtextstream.h ../core/textstream.h -rmuser.o: ../core/misc.h ../core/item.h ../core/requesttypes.h +rmuser.o: ../../pikotools/date/date.h ../../winix/db/db.h +rmuser.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +rmuser.o: ../../winix/db/dbtextstream.h ../../winix/core/textstream.h +rmuser.o: ../../winix/core/misc.h ../../winix/core/item.h +rmuser.o: ../../winix/core/requesttypes.h rmuser.o: ../../pikotools/textstream/textstream.h rmuser.o: ../../pikotools/convert/convert.h rmuser.o: ../../pikotools/convert/inttostr.h rmuser.o: ../../pikotools/membuffer/membuffer.h rmuser.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -rmuser.o: ../core/error.h ../../pikotools/space/spaceparser.h -rmuser.o: ../../pikotools/space/space.h ../db/dbitemquery.h -rmuser.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -rmuser.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -rmuser.o: ../core/textstream.h ../core/logmanipulators.h ../core/slog.h -rmuser.o: ../core/cur.h ../core/request.h ../core/error.h ../core/config.h -rmuser.o: ../core/htmlfilter.h ../templates/htmltextstream.h -rmuser.o: ../../pikotools/space/spacetojson.h ../core/session.h -rmuser.o: ../core/user.h ../core/plugindata.h ../core/rebus.h ipban.h mount.h -rmuser.o: ../templates/locale.h ../core/request.h ../core/config.h -rmuser.o: ../core/system.h ../core/job.h ../core/basethread.h -rmuser.o: ../core/synchro.h ../core/dirs.h ../core/dircontainer.h -rmuser.o: ../notify/notify.h ../notify/notifypool.h ../templates/patterns.h -rmuser.o: locale.h ../templates/localefilter.h ../../ezc/src/ezc.h +rmuser.o: ../../winix/core/error.h ../../pikotools/space/spaceparser.h +rmuser.o: ../../pikotools/space/space.h ../../winix/db/dbitemquery.h +rmuser.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +rmuser.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +rmuser.o: ../../winix/core/ugcontainer.h ../../winix/core/log.h +rmuser.o: ../../winix/core/textstream.h ../../winix/core/logmanipulators.h +rmuser.o: ../../winix/core/slog.h ../../winix/core/cur.h +rmuser.o: ../../winix/core/request.h ../../winix/core/error.h +rmuser.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h +rmuser.o: ../../winix/templates/htmltextstream.h +rmuser.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +rmuser.o: ../../winix/core/user.h ../../winix/core/plugindata.h +rmuser.o: ../../winix/core/rebus.h ipban.h mount.h +rmuser.o: ../../winix/templates/locale.h ../../winix/core/request.h +rmuser.o: ../../winix/core/config.h ../../winix/core/system.h +rmuser.o: ../../winix/core/job.h ../../winix/core/basethread.h +rmuser.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +rmuser.o: ../../winix/core/dircontainer.h ../../winix/notify/notify.h +rmuser.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +rmuser.o: locale.h ../../winix/templates/localefilter.h ../../ezc/src/ezc.h rmuser.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h -rmuser.o: functionparser.h ../core/cur.h account.h adduser.h cat.h chmod.h -rmuser.o: privchanger.h chown.h ckeditor.h cp.h default.h download.h emacs.h -rmuser.o: env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h meta.h -rmuser.o: mkdir.h mv.h nicedit.h node.h passwd.h priv.h pw.h reload.h rm.h -rmuser.o: run.h sort.h specialdefault.h stat.h subject.h template.h +rmuser.o: functionparser.h ../../winix/core/cur.h account.h adduser.h cat.h +rmuser.o: chmod.h privchanger.h chown.h ckeditor.h cp.h default.h download.h +rmuser.o: emacs.h env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h +rmuser.o: meta.h mkdir.h mv.h nicedit.h node.h passwd.h priv.h pw.h reload.h +rmuser.o: rm.h run.h sort.h specialdefault.h stat.h subject.h template.h rmuser.o: timezone.h tinymce.h uname.h upload.h uptime.h who.h vim.h -rmuser.o: ../core/htmlfilter.h ../../ezc/src/stringconv.h -rmuser.o: ../notify/notifythread.h ../core/basethread.h -rmuser.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h -rmuser.o: ../core/lastcontainer.h ../core/mounts.h ../core/mountparser.h -rmuser.o: ../core/crypt.h ../core/users.h ../core/groups.h ../core/group.h -rmuser.o: ../core/loadavg.h ../core/image.h ../core/threadmanager.h -rmuser.o: ../core/timezones.h ../core/synchro.h ../core/log.h ../core/misc.h -rmuser.o: ../core/plugin.h ../core/pluginmsg.h ../core/system.h -rmuser.o: ../core/sessionmanager.h ../core/sessioncontainer.h -rmuser.o: ../core/ipbancontainer.h ../functions/functions.h -rmuser.o: ../templates/templates.h ../templates/patterncacher.h -rmuser.o: ../templates/indexpatterns.h ../templates/patterns.h -rmuser.o: ../templates/changepatterns.h ../templates/htmltextstream.h -rmuser.o: ../core/sessionmanager.h -run.o: run.h functionbase.h ../core/item.h ../../pikotools/space/space.h -run.o: ../../pikotools/textstream/types.h ../../pikotools/date/date.h -run.o: ../db/db.h ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h -run.o: ../core/textstream.h ../core/misc.h ../core/item.h -run.o: ../core/requesttypes.h ../../pikotools/textstream/textstream.h +rmuser.o: ../../winix/core/htmlfilter.h ../../ezc/src/stringconv.h +rmuser.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +rmuser.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +rmuser.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +rmuser.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +rmuser.o: ../../winix/core/crypt.h ../../winix/core/users.h +rmuser.o: ../../winix/core/groups.h ../../winix/core/group.h +rmuser.o: ../../winix/core/loadavg.h ../../winix/core/image.h +rmuser.o: ../../winix/core/threadmanager.h ../../winix/core/timezones.h +rmuser.o: ../../winix/core/synchro.h ../../winix/core/log.h +rmuser.o: ../../winix/core/misc.h ../../winix/core/plugin.h +rmuser.o: ../../winix/core/pluginmsg.h ../../winix/core/system.h +rmuser.o: ../../winix/core/sessionmanager.h +rmuser.o: ../../winix/core/sessioncontainer.h +rmuser.o: ../../winix/core/ipbancontainer.h ../../winix/functions/functions.h +rmuser.o: ../../winix/templates/templates.h +rmuser.o: ../../winix/templates/patterncacher.h +rmuser.o: ../../winix/templates/indexpatterns.h +rmuser.o: ../../winix/templates/patterns.h +rmuser.o: ../../winix/templates/changepatterns.h +rmuser.o: ../../winix/templates/htmltextstream.h +rmuser.o: ../../winix/core/sessionmanager.h +run.o: run.h functionbase.h ../../winix/core/item.h +run.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h +run.o: ../../pikotools/date/date.h ../../winix/db/db.h +run.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +run.o: ../../winix/db/dbtextstream.h ../../winix/core/textstream.h +run.o: ../../winix/core/misc.h ../../winix/core/item.h +run.o: ../../winix/core/requesttypes.h +run.o: ../../pikotools/textstream/textstream.h run.o: ../../pikotools/convert/convert.h ../../pikotools/convert/inttostr.h run.o: ../../pikotools/membuffer/membuffer.h run.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -run.o: ../core/error.h ../../pikotools/space/spaceparser.h -run.o: ../../pikotools/space/space.h ../db/dbitemquery.h -run.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -run.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -run.o: ../core/textstream.h ../core/logmanipulators.h ../core/slog.h -run.o: ../core/cur.h ../core/request.h ../core/error.h ../core/config.h -run.o: ../core/htmlfilter.h ../templates/htmltextstream.h -run.o: ../../pikotools/space/spacetojson.h ../core/session.h ../core/user.h -run.o: ../core/plugindata.h ../core/rebus.h ipban.h mount.h -run.o: ../templates/locale.h ../core/request.h ../core/config.h -run.o: ../core/system.h ../core/job.h ../core/basethread.h ../core/synchro.h -run.o: ../core/dirs.h ../core/dircontainer.h ../notify/notify.h -run.o: ../notify/notifypool.h ../templates/patterns.h locale.h -run.o: ../templates/localefilter.h ../../ezc/src/ezc.h +run.o: ../../winix/core/error.h ../../pikotools/space/spaceparser.h +run.o: ../../pikotools/space/space.h ../../winix/db/dbitemquery.h +run.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +run.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +run.o: ../../winix/core/ugcontainer.h ../../winix/core/log.h +run.o: ../../winix/core/textstream.h ../../winix/core/logmanipulators.h +run.o: ../../winix/core/slog.h ../../winix/core/cur.h +run.o: ../../winix/core/request.h ../../winix/core/error.h +run.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h +run.o: ../../winix/templates/htmltextstream.h +run.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +run.o: ../../winix/core/user.h ../../winix/core/plugindata.h +run.o: ../../winix/core/rebus.h ipban.h mount.h +run.o: ../../winix/templates/locale.h ../../winix/core/request.h +run.o: ../../winix/core/config.h ../../winix/core/system.h +run.o: ../../winix/core/job.h ../../winix/core/basethread.h +run.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +run.o: ../../winix/core/dircontainer.h ../../winix/notify/notify.h +run.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +run.o: locale.h ../../winix/templates/localefilter.h ../../ezc/src/ezc.h run.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h -run.o: functionparser.h ../core/cur.h account.h adduser.h cat.h chmod.h -run.o: privchanger.h chown.h ckeditor.h cp.h default.h download.h emacs.h -run.o: env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h meta.h mkdir.h -run.o: mv.h nicedit.h node.h passwd.h priv.h pw.h reload.h rm.h rmuser.h -run.o: sort.h specialdefault.h stat.h subject.h template.h timezone.h -run.o: tinymce.h uname.h upload.h uptime.h who.h vim.h ../core/htmlfilter.h -run.o: ../../ezc/src/stringconv.h ../notify/notifythread.h -run.o: ../core/basethread.h ../notify/templatesnotify.h ../core/users.h -run.o: ../core/ugcontainer.h ../core/lastcontainer.h ../core/mounts.h -run.o: ../core/mountparser.h ../core/crypt.h ../core/users.h ../core/groups.h -run.o: ../core/group.h ../core/loadavg.h ../core/image.h -run.o: ../core/threadmanager.h ../core/timezones.h ../core/synchro.h -sort.o: sort.h functionbase.h ../core/item.h ../../pikotools/space/space.h -sort.o: ../../pikotools/textstream/types.h ../../pikotools/date/date.h -sort.o: ../db/db.h ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h -sort.o: ../core/textstream.h ../core/misc.h ../core/item.h -sort.o: ../core/requesttypes.h ../../pikotools/textstream/textstream.h +run.o: functionparser.h ../../winix/core/cur.h account.h adduser.h cat.h +run.o: chmod.h privchanger.h chown.h ckeditor.h cp.h default.h download.h +run.o: emacs.h env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h meta.h +run.o: mkdir.h mv.h nicedit.h node.h passwd.h priv.h pw.h reload.h rm.h +run.o: rmuser.h sort.h specialdefault.h stat.h subject.h template.h +run.o: timezone.h tinymce.h uname.h upload.h uptime.h who.h vim.h +run.o: ../../winix/core/htmlfilter.h ../../ezc/src/stringconv.h +run.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +run.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +run.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +run.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +run.o: ../../winix/core/crypt.h ../../winix/core/users.h +run.o: ../../winix/core/groups.h ../../winix/core/group.h +run.o: ../../winix/core/loadavg.h ../../winix/core/image.h +run.o: ../../winix/core/threadmanager.h ../../winix/core/timezones.h +run.o: ../../winix/core/synchro.h +sort.o: sort.h functionbase.h ../../winix/core/item.h +sort.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h +sort.o: ../../pikotools/date/date.h ../../winix/db/db.h +sort.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +sort.o: ../../winix/db/dbtextstream.h ../../winix/core/textstream.h +sort.o: ../../winix/core/misc.h ../../winix/core/item.h +sort.o: ../../winix/core/requesttypes.h +sort.o: ../../pikotools/textstream/textstream.h sort.o: ../../pikotools/convert/convert.h ../../pikotools/convert/inttostr.h sort.o: ../../pikotools/membuffer/membuffer.h sort.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -sort.o: ../core/error.h ../../pikotools/space/spaceparser.h -sort.o: ../../pikotools/space/space.h ../db/dbitemquery.h -sort.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -sort.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -sort.o: ../core/textstream.h ../core/logmanipulators.h ../core/slog.h -sort.o: ../core/cur.h ../core/request.h ../core/error.h ../core/config.h -sort.o: ../core/htmlfilter.h ../templates/htmltextstream.h -sort.o: ../../pikotools/space/spacetojson.h ../core/session.h ../core/user.h -sort.o: ../core/plugindata.h ../core/rebus.h ipban.h mount.h -sort.o: ../templates/locale.h ../core/request.h ../core/config.h -sort.o: ../core/system.h ../core/job.h ../core/basethread.h ../core/synchro.h -sort.o: ../core/dirs.h ../core/dircontainer.h ../notify/notify.h -sort.o: ../notify/notifypool.h ../templates/patterns.h locale.h -sort.o: ../templates/localefilter.h ../../ezc/src/ezc.h +sort.o: ../../winix/core/error.h ../../pikotools/space/spaceparser.h +sort.o: ../../pikotools/space/space.h ../../winix/db/dbitemquery.h +sort.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +sort.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +sort.o: ../../winix/core/ugcontainer.h ../../winix/core/log.h +sort.o: ../../winix/core/textstream.h ../../winix/core/logmanipulators.h +sort.o: ../../winix/core/slog.h ../../winix/core/cur.h +sort.o: ../../winix/core/request.h ../../winix/core/error.h +sort.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h +sort.o: ../../winix/templates/htmltextstream.h +sort.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +sort.o: ../../winix/core/user.h ../../winix/core/plugindata.h +sort.o: ../../winix/core/rebus.h ipban.h mount.h +sort.o: ../../winix/templates/locale.h ../../winix/core/request.h +sort.o: ../../winix/core/config.h ../../winix/core/system.h +sort.o: ../../winix/core/job.h ../../winix/core/basethread.h +sort.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +sort.o: ../../winix/core/dircontainer.h ../../winix/notify/notify.h +sort.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +sort.o: locale.h ../../winix/templates/localefilter.h ../../ezc/src/ezc.h sort.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h -sort.o: functionparser.h ../core/cur.h account.h adduser.h cat.h chmod.h -sort.o: privchanger.h chown.h ckeditor.h cp.h default.h download.h emacs.h -sort.o: env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h meta.h -sort.o: mkdir.h mv.h nicedit.h node.h passwd.h priv.h pw.h reload.h rm.h -sort.o: rmuser.h run.h specialdefault.h stat.h subject.h template.h +sort.o: functionparser.h ../../winix/core/cur.h account.h adduser.h cat.h +sort.o: chmod.h privchanger.h chown.h ckeditor.h cp.h default.h download.h +sort.o: emacs.h env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h +sort.o: meta.h mkdir.h mv.h nicedit.h node.h passwd.h priv.h pw.h reload.h +sort.o: rm.h rmuser.h run.h specialdefault.h stat.h subject.h template.h sort.o: timezone.h tinymce.h uname.h upload.h uptime.h who.h vim.h -sort.o: ../core/htmlfilter.h ../../ezc/src/stringconv.h -sort.o: ../notify/notifythread.h ../core/basethread.h -sort.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h -sort.o: ../core/lastcontainer.h ../core/mounts.h ../core/mountparser.h -sort.o: ../core/crypt.h ../core/users.h ../core/groups.h ../core/group.h -sort.o: ../core/loadavg.h ../core/image.h ../core/threadmanager.h -sort.o: ../core/timezones.h ../core/synchro.h ../core/plugin.h -sort.o: ../core/pluginmsg.h ../core/system.h ../core/sessionmanager.h -sort.o: ../core/sessioncontainer.h ../core/ipbancontainer.h -sort.o: ../functions/functions.h ../templates/templates.h -sort.o: ../templates/patterncacher.h ../templates/indexpatterns.h -sort.o: ../templates/patterns.h ../templates/changepatterns.h -sort.o: ../templates/htmltextstream.h ../core/sessionmanager.h -specialdefault.o: specialdefault.h functionbase.h ../core/item.h +sort.o: ../../winix/core/htmlfilter.h ../../ezc/src/stringconv.h +sort.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +sort.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +sort.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +sort.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +sort.o: ../../winix/core/crypt.h ../../winix/core/users.h +sort.o: ../../winix/core/groups.h ../../winix/core/group.h +sort.o: ../../winix/core/loadavg.h ../../winix/core/image.h +sort.o: ../../winix/core/threadmanager.h ../../winix/core/timezones.h +sort.o: ../../winix/core/synchro.h ../../winix/core/plugin.h +sort.o: ../../winix/core/pluginmsg.h ../../winix/core/system.h +sort.o: ../../winix/core/sessionmanager.h ../../winix/core/sessioncontainer.h +sort.o: ../../winix/core/ipbancontainer.h ../../winix/functions/functions.h +sort.o: ../../winix/templates/templates.h +sort.o: ../../winix/templates/patterncacher.h +sort.o: ../../winix/templates/indexpatterns.h +sort.o: ../../winix/templates/patterns.h +sort.o: ../../winix/templates/changepatterns.h +sort.o: ../../winix/templates/htmltextstream.h +sort.o: ../../winix/core/sessionmanager.h +specialdefault.o: specialdefault.h functionbase.h ../../winix/core/item.h specialdefault.o: ../../pikotools/space/space.h specialdefault.o: ../../pikotools/textstream/types.h -specialdefault.o: ../../pikotools/date/date.h ../db/db.h ../db/dbbase.h -specialdefault.o: ../db/dbconn.h ../db/dbtextstream.h ../core/textstream.h -specialdefault.o: ../core/misc.h ../core/item.h ../core/requesttypes.h +specialdefault.o: ../../pikotools/date/date.h ../../winix/db/db.h +specialdefault.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +specialdefault.o: ../../winix/db/dbtextstream.h ../../winix/core/textstream.h +specialdefault.o: ../../winix/core/misc.h ../../winix/core/item.h +specialdefault.o: ../../winix/core/requesttypes.h specialdefault.o: ../../pikotools/textstream/textstream.h specialdefault.o: ../../pikotools/convert/convert.h specialdefault.o: ../../pikotools/convert/inttostr.h specialdefault.o: ../../pikotools/membuffer/membuffer.h specialdefault.o: ../../pikotools/textstream/types.h -specialdefault.o: ../../pikotools/utf8/utf8.h ../core/error.h +specialdefault.o: ../../pikotools/utf8/utf8.h ../../winix/core/error.h specialdefault.o: ../../pikotools/space/spaceparser.h -specialdefault.o: ../../pikotools/space/space.h ../db/dbitemquery.h -specialdefault.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -specialdefault.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -specialdefault.o: ../core/textstream.h ../core/logmanipulators.h -specialdefault.o: ../core/slog.h ../core/cur.h ../core/request.h -specialdefault.o: ../core/error.h ../core/config.h ../core/htmlfilter.h -specialdefault.o: ../templates/htmltextstream.h -specialdefault.o: ../../pikotools/space/spacetojson.h ../core/session.h -specialdefault.o: ../core/user.h ../core/plugindata.h ../core/rebus.h ipban.h -specialdefault.o: mount.h ../templates/locale.h ../core/request.h -specialdefault.o: ../core/config.h ../core/system.h ../core/job.h -specialdefault.o: ../core/basethread.h ../core/synchro.h ../core/dirs.h -specialdefault.o: ../core/dircontainer.h ../notify/notify.h -specialdefault.o: ../notify/notifypool.h ../templates/patterns.h locale.h -specialdefault.o: ../templates/localefilter.h ../../ezc/src/ezc.h +specialdefault.o: ../../pikotools/space/space.h ../../winix/db/dbitemquery.h +specialdefault.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +specialdefault.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +specialdefault.o: ../../winix/core/ugcontainer.h ../../winix/core/log.h +specialdefault.o: ../../winix/core/textstream.h +specialdefault.o: ../../winix/core/logmanipulators.h ../../winix/core/slog.h +specialdefault.o: ../../winix/core/cur.h ../../winix/core/request.h +specialdefault.o: ../../winix/core/error.h ../../winix/core/config.h +specialdefault.o: ../../winix/core/htmlfilter.h +specialdefault.o: ../../winix/templates/htmltextstream.h +specialdefault.o: ../../pikotools/space/spacetojson.h +specialdefault.o: ../../winix/core/session.h ../../winix/core/user.h +specialdefault.o: ../../winix/core/plugindata.h ../../winix/core/rebus.h +specialdefault.o: ipban.h mount.h ../../winix/templates/locale.h +specialdefault.o: ../../winix/core/request.h ../../winix/core/config.h +specialdefault.o: ../../winix/core/system.h ../../winix/core/job.h +specialdefault.o: ../../winix/core/basethread.h ../../winix/core/synchro.h +specialdefault.o: ../../winix/core/dirs.h ../../winix/core/dircontainer.h +specialdefault.o: ../../winix/notify/notify.h ../../winix/notify/notifypool.h +specialdefault.o: ../../winix/templates/patterns.h locale.h +specialdefault.o: ../../winix/templates/localefilter.h ../../ezc/src/ezc.h specialdefault.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h -specialdefault.o: functions.h functionparser.h ../core/cur.h account.h -specialdefault.o: adduser.h cat.h chmod.h privchanger.h chown.h ckeditor.h -specialdefault.o: cp.h default.h download.h emacs.h env.h imgcrop.h last.h -specialdefault.o: login.h logout.h ln.h ls.h man.h meta.h mkdir.h mv.h -specialdefault.o: nicedit.h node.h passwd.h priv.h pw.h reload.h rm.h -specialdefault.o: rmuser.h run.h sort.h stat.h subject.h template.h +specialdefault.o: functions.h functionparser.h ../../winix/core/cur.h +specialdefault.o: account.h adduser.h cat.h chmod.h privchanger.h chown.h +specialdefault.o: ckeditor.h cp.h default.h download.h emacs.h env.h +specialdefault.o: imgcrop.h last.h login.h logout.h ln.h ls.h man.h meta.h +specialdefault.o: mkdir.h mv.h nicedit.h node.h passwd.h priv.h pw.h reload.h +specialdefault.o: rm.h rmuser.h run.h sort.h stat.h subject.h template.h specialdefault.o: timezone.h tinymce.h uname.h upload.h uptime.h who.h vim.h -specialdefault.o: ../core/htmlfilter.h ../../ezc/src/stringconv.h -specialdefault.o: ../notify/notifythread.h ../core/basethread.h -specialdefault.o: ../notify/templatesnotify.h ../core/users.h -specialdefault.o: ../core/ugcontainer.h ../core/lastcontainer.h -specialdefault.o: ../core/mounts.h ../core/mountparser.h ../core/crypt.h -specialdefault.o: ../core/users.h ../core/groups.h ../core/group.h -specialdefault.o: ../core/loadavg.h ../core/image.h ../core/threadmanager.h -specialdefault.o: ../core/timezones.h ../core/synchro.h -stat.o: stat.h functionbase.h ../core/item.h ../../pikotools/space/space.h -stat.o: ../../pikotools/textstream/types.h ../../pikotools/date/date.h -stat.o: ../db/db.h ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h -stat.o: ../core/textstream.h ../core/misc.h ../core/item.h -stat.o: ../core/requesttypes.h ../../pikotools/textstream/textstream.h +specialdefault.o: ../../winix/core/htmlfilter.h ../../ezc/src/stringconv.h +specialdefault.o: ../../winix/notify/notifythread.h +specialdefault.o: ../../winix/core/basethread.h +specialdefault.o: ../../winix/notify/templatesnotify.h +specialdefault.o: ../../winix/core/users.h ../../winix/core/ugcontainer.h +specialdefault.o: ../../winix/core/lastcontainer.h ../../winix/core/mounts.h +specialdefault.o: ../../winix/core/mountparser.h ../../winix/core/crypt.h +specialdefault.o: ../../winix/core/users.h ../../winix/core/groups.h +specialdefault.o: ../../winix/core/group.h ../../winix/core/loadavg.h +specialdefault.o: ../../winix/core/image.h ../../winix/core/threadmanager.h +specialdefault.o: ../../winix/core/timezones.h ../../winix/core/synchro.h +stat.o: stat.h functionbase.h ../../winix/core/item.h +stat.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h +stat.o: ../../pikotools/date/date.h ../../winix/db/db.h +stat.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +stat.o: ../../winix/db/dbtextstream.h ../../winix/core/textstream.h +stat.o: ../../winix/core/misc.h ../../winix/core/item.h +stat.o: ../../winix/core/requesttypes.h +stat.o: ../../pikotools/textstream/textstream.h stat.o: ../../pikotools/convert/convert.h ../../pikotools/convert/inttostr.h stat.o: ../../pikotools/membuffer/membuffer.h stat.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -stat.o: ../core/error.h ../../pikotools/space/spaceparser.h -stat.o: ../../pikotools/space/space.h ../db/dbitemquery.h -stat.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -stat.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -stat.o: ../core/textstream.h ../core/logmanipulators.h ../core/slog.h -stat.o: ../core/cur.h ../core/request.h ../core/error.h ../core/config.h -stat.o: ../core/htmlfilter.h ../templates/htmltextstream.h -stat.o: ../../pikotools/space/spacetojson.h ../core/session.h ../core/user.h -stat.o: ../core/plugindata.h ../core/rebus.h ipban.h mount.h -stat.o: ../templates/locale.h ../core/request.h ../core/config.h -stat.o: ../core/system.h ../core/job.h ../core/basethread.h ../core/synchro.h -stat.o: ../core/dirs.h ../core/dircontainer.h ../notify/notify.h -stat.o: ../notify/notifypool.h ../templates/patterns.h locale.h -stat.o: ../templates/localefilter.h ../../ezc/src/ezc.h +stat.o: ../../winix/core/error.h ../../pikotools/space/spaceparser.h +stat.o: ../../pikotools/space/space.h ../../winix/db/dbitemquery.h +stat.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +stat.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +stat.o: ../../winix/core/ugcontainer.h ../../winix/core/log.h +stat.o: ../../winix/core/textstream.h ../../winix/core/logmanipulators.h +stat.o: ../../winix/core/slog.h ../../winix/core/cur.h +stat.o: ../../winix/core/request.h ../../winix/core/error.h +stat.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h +stat.o: ../../winix/templates/htmltextstream.h +stat.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +stat.o: ../../winix/core/user.h ../../winix/core/plugindata.h +stat.o: ../../winix/core/rebus.h ipban.h mount.h +stat.o: ../../winix/templates/locale.h ../../winix/core/request.h +stat.o: ../../winix/core/config.h ../../winix/core/system.h +stat.o: ../../winix/core/job.h ../../winix/core/basethread.h +stat.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +stat.o: ../../winix/core/dircontainer.h ../../winix/notify/notify.h +stat.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +stat.o: locale.h ../../winix/templates/localefilter.h ../../ezc/src/ezc.h stat.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h -stat.o: functionparser.h ../core/cur.h account.h adduser.h cat.h chmod.h -stat.o: privchanger.h chown.h ckeditor.h cp.h default.h download.h emacs.h -stat.o: env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h meta.h -stat.o: mkdir.h mv.h nicedit.h node.h passwd.h priv.h pw.h reload.h rm.h -stat.o: rmuser.h run.h sort.h specialdefault.h subject.h template.h +stat.o: functionparser.h ../../winix/core/cur.h account.h adduser.h cat.h +stat.o: chmod.h privchanger.h chown.h ckeditor.h cp.h default.h download.h +stat.o: emacs.h env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h +stat.o: meta.h mkdir.h mv.h nicedit.h node.h passwd.h priv.h pw.h reload.h +stat.o: rm.h rmuser.h run.h sort.h specialdefault.h subject.h template.h stat.o: timezone.h tinymce.h uname.h upload.h uptime.h who.h vim.h -stat.o: ../core/htmlfilter.h ../../ezc/src/stringconv.h -stat.o: ../notify/notifythread.h ../core/basethread.h -stat.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h -stat.o: ../core/lastcontainer.h ../core/mounts.h ../core/mountparser.h -stat.o: ../core/crypt.h ../core/users.h ../core/groups.h ../core/group.h -stat.o: ../core/loadavg.h ../core/image.h ../core/threadmanager.h -stat.o: ../core/timezones.h ../core/synchro.h -subject.o: subject.h functionbase.h ../core/item.h +stat.o: ../../winix/core/htmlfilter.h ../../ezc/src/stringconv.h +stat.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +stat.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +stat.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +stat.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +stat.o: ../../winix/core/crypt.h ../../winix/core/users.h +stat.o: ../../winix/core/groups.h ../../winix/core/group.h +stat.o: ../../winix/core/loadavg.h ../../winix/core/image.h +stat.o: ../../winix/core/threadmanager.h ../../winix/core/timezones.h +stat.o: ../../winix/core/synchro.h +subject.o: subject.h functionbase.h ../../winix/core/item.h subject.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h -subject.o: ../../pikotools/date/date.h ../db/db.h ../db/dbbase.h -subject.o: ../db/dbconn.h ../db/dbtextstream.h ../core/textstream.h -subject.o: ../core/misc.h ../core/item.h ../core/requesttypes.h +subject.o: ../../pikotools/date/date.h ../../winix/db/db.h +subject.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +subject.o: ../../winix/db/dbtextstream.h ../../winix/core/textstream.h +subject.o: ../../winix/core/misc.h ../../winix/core/item.h +subject.o: ../../winix/core/requesttypes.h subject.o: ../../pikotools/textstream/textstream.h subject.o: ../../pikotools/convert/convert.h subject.o: ../../pikotools/convert/inttostr.h subject.o: ../../pikotools/membuffer/membuffer.h subject.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -subject.o: ../core/error.h ../../pikotools/space/spaceparser.h -subject.o: ../../pikotools/space/space.h ../db/dbitemquery.h -subject.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -subject.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -subject.o: ../core/textstream.h ../core/logmanipulators.h ../core/slog.h -subject.o: ../core/cur.h ../core/request.h ../core/error.h ../core/config.h -subject.o: ../core/htmlfilter.h ../templates/htmltextstream.h -subject.o: ../../pikotools/space/spacetojson.h ../core/session.h -subject.o: ../core/user.h ../core/plugindata.h ../core/rebus.h ipban.h -subject.o: mount.h ../templates/locale.h ../core/request.h ../core/config.h -subject.o: ../core/system.h ../core/job.h ../core/basethread.h -subject.o: ../core/synchro.h ../core/dirs.h ../core/dircontainer.h -subject.o: ../notify/notify.h ../notify/notifypool.h ../templates/patterns.h -subject.o: locale.h ../templates/localefilter.h ../../ezc/src/ezc.h +subject.o: ../../winix/core/error.h ../../pikotools/space/spaceparser.h +subject.o: ../../pikotools/space/space.h ../../winix/db/dbitemquery.h +subject.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +subject.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +subject.o: ../../winix/core/ugcontainer.h ../../winix/core/log.h +subject.o: ../../winix/core/textstream.h ../../winix/core/logmanipulators.h +subject.o: ../../winix/core/slog.h ../../winix/core/cur.h +subject.o: ../../winix/core/request.h ../../winix/core/error.h +subject.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h +subject.o: ../../winix/templates/htmltextstream.h +subject.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +subject.o: ../../winix/core/user.h ../../winix/core/plugindata.h +subject.o: ../../winix/core/rebus.h ipban.h mount.h +subject.o: ../../winix/templates/locale.h ../../winix/core/request.h +subject.o: ../../winix/core/config.h ../../winix/core/system.h +subject.o: ../../winix/core/job.h ../../winix/core/basethread.h +subject.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +subject.o: ../../winix/core/dircontainer.h ../../winix/notify/notify.h +subject.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +subject.o: locale.h ../../winix/templates/localefilter.h ../../ezc/src/ezc.h subject.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h -subject.o: functionparser.h ../core/cur.h account.h adduser.h cat.h chmod.h -subject.o: privchanger.h chown.h ckeditor.h cp.h default.h download.h emacs.h -subject.o: env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h meta.h -subject.o: mkdir.h mv.h nicedit.h node.h passwd.h priv.h pw.h reload.h rm.h -subject.o: rmuser.h run.h sort.h specialdefault.h stat.h template.h +subject.o: functionparser.h ../../winix/core/cur.h account.h adduser.h cat.h +subject.o: chmod.h privchanger.h chown.h ckeditor.h cp.h default.h download.h +subject.o: emacs.h env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h +subject.o: meta.h mkdir.h mv.h nicedit.h node.h passwd.h priv.h pw.h reload.h +subject.o: rm.h rmuser.h run.h sort.h specialdefault.h stat.h template.h subject.o: timezone.h tinymce.h uname.h upload.h uptime.h who.h vim.h -subject.o: ../core/htmlfilter.h ../../ezc/src/stringconv.h -subject.o: ../notify/notifythread.h ../core/basethread.h -subject.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h -subject.o: ../core/lastcontainer.h ../core/mounts.h ../core/mountparser.h -subject.o: ../core/crypt.h ../core/users.h ../core/groups.h ../core/group.h -subject.o: ../core/loadavg.h ../core/image.h ../core/threadmanager.h -subject.o: ../core/timezones.h ../core/synchro.h ../core/plugin.h -subject.o: ../core/pluginmsg.h ../core/system.h ../core/sessionmanager.h -subject.o: ../core/sessioncontainer.h ../core/ipbancontainer.h -subject.o: ../functions/functions.h ../templates/templates.h -subject.o: ../templates/patterncacher.h ../templates/indexpatterns.h -subject.o: ../templates/patterns.h ../templates/changepatterns.h -subject.o: ../templates/htmltextstream.h ../core/sessionmanager.h -template.o: template.h functionbase.h ../core/item.h +subject.o: ../../winix/core/htmlfilter.h ../../ezc/src/stringconv.h +subject.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +subject.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +subject.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +subject.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +subject.o: ../../winix/core/crypt.h ../../winix/core/users.h +subject.o: ../../winix/core/groups.h ../../winix/core/group.h +subject.o: ../../winix/core/loadavg.h ../../winix/core/image.h +subject.o: ../../winix/core/threadmanager.h ../../winix/core/timezones.h +subject.o: ../../winix/core/synchro.h ../../winix/core/plugin.h +subject.o: ../../winix/core/pluginmsg.h ../../winix/core/system.h +subject.o: ../../winix/core/sessionmanager.h +subject.o: ../../winix/core/sessioncontainer.h +subject.o: ../../winix/core/ipbancontainer.h +subject.o: ../../winix/functions/functions.h +subject.o: ../../winix/templates/templates.h +subject.o: ../../winix/templates/patterncacher.h +subject.o: ../../winix/templates/indexpatterns.h +subject.o: ../../winix/templates/patterns.h +subject.o: ../../winix/templates/changepatterns.h +subject.o: ../../winix/templates/htmltextstream.h +subject.o: ../../winix/core/sessionmanager.h +template.o: template.h functionbase.h ../../winix/core/item.h template.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h -template.o: ../../pikotools/date/date.h ../db/db.h ../db/dbbase.h -template.o: ../db/dbconn.h ../db/dbtextstream.h ../core/textstream.h -template.o: ../core/misc.h ../core/item.h ../core/requesttypes.h +template.o: ../../pikotools/date/date.h ../../winix/db/db.h +template.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +template.o: ../../winix/db/dbtextstream.h ../../winix/core/textstream.h +template.o: ../../winix/core/misc.h ../../winix/core/item.h +template.o: ../../winix/core/requesttypes.h template.o: ../../pikotools/textstream/textstream.h template.o: ../../pikotools/convert/convert.h template.o: ../../pikotools/convert/inttostr.h template.o: ../../pikotools/membuffer/membuffer.h template.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -template.o: ../core/error.h ../../pikotools/space/spaceparser.h -template.o: ../../pikotools/space/space.h ../db/dbitemquery.h -template.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -template.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -template.o: ../core/textstream.h ../core/logmanipulators.h ../core/slog.h -template.o: ../core/cur.h ../core/request.h ../core/error.h ../core/config.h -template.o: ../core/htmlfilter.h ../templates/htmltextstream.h -template.o: ../../pikotools/space/spacetojson.h ../core/session.h -template.o: ../core/user.h ../core/plugindata.h ../core/rebus.h ipban.h -template.o: mount.h ../templates/locale.h ../core/request.h ../core/config.h -template.o: ../core/system.h ../core/job.h ../core/basethread.h -template.o: ../core/synchro.h ../core/dirs.h ../core/dircontainer.h -template.o: ../notify/notify.h ../notify/notifypool.h ../templates/patterns.h -template.o: locale.h ../templates/localefilter.h ../../ezc/src/ezc.h +template.o: ../../winix/core/error.h ../../pikotools/space/spaceparser.h +template.o: ../../pikotools/space/space.h ../../winix/db/dbitemquery.h +template.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +template.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +template.o: ../../winix/core/ugcontainer.h ../../winix/core/log.h +template.o: ../../winix/core/textstream.h ../../winix/core/logmanipulators.h +template.o: ../../winix/core/slog.h ../../winix/core/cur.h +template.o: ../../winix/core/request.h ../../winix/core/error.h +template.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h +template.o: ../../winix/templates/htmltextstream.h +template.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +template.o: ../../winix/core/user.h ../../winix/core/plugindata.h +template.o: ../../winix/core/rebus.h ipban.h mount.h +template.o: ../../winix/templates/locale.h ../../winix/core/request.h +template.o: ../../winix/core/config.h ../../winix/core/system.h +template.o: ../../winix/core/job.h ../../winix/core/basethread.h +template.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +template.o: ../../winix/core/dircontainer.h ../../winix/notify/notify.h +template.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +template.o: locale.h ../../winix/templates/localefilter.h ../../ezc/src/ezc.h template.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h -template.o: functionparser.h ../core/cur.h account.h adduser.h cat.h chmod.h -template.o: privchanger.h chown.h ckeditor.h cp.h default.h download.h -template.o: emacs.h env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h -template.o: meta.h mkdir.h mv.h nicedit.h node.h passwd.h priv.h pw.h -template.o: reload.h rm.h rmuser.h run.h sort.h specialdefault.h stat.h +template.o: functionparser.h ../../winix/core/cur.h account.h adduser.h cat.h +template.o: chmod.h privchanger.h chown.h ckeditor.h cp.h default.h +template.o: download.h emacs.h env.h imgcrop.h last.h login.h logout.h ln.h +template.o: ls.h man.h meta.h mkdir.h mv.h nicedit.h node.h passwd.h priv.h +template.o: pw.h reload.h rm.h rmuser.h run.h sort.h specialdefault.h stat.h template.o: subject.h timezone.h tinymce.h uname.h upload.h uptime.h who.h -template.o: vim.h ../core/htmlfilter.h ../../ezc/src/stringconv.h -template.o: ../notify/notifythread.h ../core/basethread.h -template.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h -template.o: ../core/lastcontainer.h ../core/mounts.h ../core/mountparser.h -template.o: ../core/crypt.h ../core/users.h ../core/groups.h ../core/group.h -template.o: ../core/loadavg.h ../core/image.h ../core/threadmanager.h -template.o: ../core/timezones.h ../core/synchro.h ../core/misc.h -timezone.o: timezone.h functionbase.h ../core/item.h +template.o: vim.h ../../winix/core/htmlfilter.h ../../ezc/src/stringconv.h +template.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +template.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +template.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +template.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +template.o: ../../winix/core/crypt.h ../../winix/core/users.h +template.o: ../../winix/core/groups.h ../../winix/core/group.h +template.o: ../../winix/core/loadavg.h ../../winix/core/image.h +template.o: ../../winix/core/threadmanager.h ../../winix/core/timezones.h +template.o: ../../winix/core/synchro.h ../../winix/core/misc.h +timezone.o: timezone.h functionbase.h ../../winix/core/item.h timezone.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h -timezone.o: ../../pikotools/date/date.h ../db/db.h ../db/dbbase.h -timezone.o: ../db/dbconn.h ../db/dbtextstream.h ../core/textstream.h -timezone.o: ../core/misc.h ../core/item.h ../core/requesttypes.h +timezone.o: ../../pikotools/date/date.h ../../winix/db/db.h +timezone.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +timezone.o: ../../winix/db/dbtextstream.h ../../winix/core/textstream.h +timezone.o: ../../winix/core/misc.h ../../winix/core/item.h +timezone.o: ../../winix/core/requesttypes.h timezone.o: ../../pikotools/textstream/textstream.h timezone.o: ../../pikotools/convert/convert.h timezone.o: ../../pikotools/convert/inttostr.h timezone.o: ../../pikotools/membuffer/membuffer.h timezone.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -timezone.o: ../core/error.h ../../pikotools/space/spaceparser.h -timezone.o: ../../pikotools/space/space.h ../db/dbitemquery.h -timezone.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -timezone.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -timezone.o: ../core/textstream.h ../core/logmanipulators.h ../core/slog.h -timezone.o: ../core/cur.h ../core/request.h ../core/error.h ../core/config.h -timezone.o: ../core/htmlfilter.h ../templates/htmltextstream.h -timezone.o: ../../pikotools/space/spacetojson.h ../core/session.h -timezone.o: ../core/user.h ../core/plugindata.h ../core/rebus.h ipban.h -timezone.o: mount.h ../templates/locale.h ../core/request.h ../core/config.h -timezone.o: ../core/system.h ../core/job.h ../core/basethread.h -timezone.o: ../core/synchro.h ../core/dirs.h ../core/dircontainer.h -timezone.o: ../notify/notify.h ../notify/notifypool.h ../templates/patterns.h -timezone.o: locale.h ../templates/localefilter.h ../../ezc/src/ezc.h +timezone.o: ../../winix/core/error.h ../../pikotools/space/spaceparser.h +timezone.o: ../../pikotools/space/space.h ../../winix/db/dbitemquery.h +timezone.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +timezone.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +timezone.o: ../../winix/core/ugcontainer.h ../../winix/core/log.h +timezone.o: ../../winix/core/textstream.h ../../winix/core/logmanipulators.h +timezone.o: ../../winix/core/slog.h ../../winix/core/cur.h +timezone.o: ../../winix/core/request.h ../../winix/core/error.h +timezone.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h +timezone.o: ../../winix/templates/htmltextstream.h +timezone.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +timezone.o: ../../winix/core/user.h ../../winix/core/plugindata.h +timezone.o: ../../winix/core/rebus.h ipban.h mount.h +timezone.o: ../../winix/templates/locale.h ../../winix/core/request.h +timezone.o: ../../winix/core/config.h ../../winix/core/system.h +timezone.o: ../../winix/core/job.h ../../winix/core/basethread.h +timezone.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +timezone.o: ../../winix/core/dircontainer.h ../../winix/notify/notify.h +timezone.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +timezone.o: locale.h ../../winix/templates/localefilter.h ../../ezc/src/ezc.h timezone.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h -timezone.o: functionparser.h ../core/cur.h account.h adduser.h cat.h chmod.h -timezone.o: privchanger.h chown.h ckeditor.h cp.h default.h download.h -timezone.o: emacs.h env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h -timezone.o: meta.h mkdir.h mv.h nicedit.h node.h passwd.h priv.h pw.h -timezone.o: reload.h rm.h rmuser.h run.h sort.h specialdefault.h stat.h +timezone.o: functionparser.h ../../winix/core/cur.h account.h adduser.h cat.h +timezone.o: chmod.h privchanger.h chown.h ckeditor.h cp.h default.h +timezone.o: download.h emacs.h env.h imgcrop.h last.h login.h logout.h ln.h +timezone.o: ls.h man.h meta.h mkdir.h mv.h nicedit.h node.h passwd.h priv.h +timezone.o: pw.h reload.h rm.h rmuser.h run.h sort.h specialdefault.h stat.h timezone.o: subject.h template.h tinymce.h uname.h upload.h uptime.h who.h -timezone.o: vim.h ../core/htmlfilter.h ../../ezc/src/stringconv.h -timezone.o: ../notify/notifythread.h ../core/basethread.h -timezone.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h -timezone.o: ../core/lastcontainer.h ../core/mounts.h ../core/mountparser.h -timezone.o: ../core/crypt.h ../core/users.h ../core/groups.h ../core/group.h -timezone.o: ../core/loadavg.h ../core/image.h ../core/threadmanager.h -timezone.o: ../core/timezones.h ../core/synchro.h -tinymce.o: tinymce.h functionbase.h ../core/item.h +timezone.o: vim.h ../../winix/core/htmlfilter.h ../../ezc/src/stringconv.h +timezone.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +timezone.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +timezone.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +timezone.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +timezone.o: ../../winix/core/crypt.h ../../winix/core/users.h +timezone.o: ../../winix/core/groups.h ../../winix/core/group.h +timezone.o: ../../winix/core/loadavg.h ../../winix/core/image.h +timezone.o: ../../winix/core/threadmanager.h ../../winix/core/timezones.h +timezone.o: ../../winix/core/synchro.h +tinymce.o: tinymce.h functionbase.h ../../winix/core/item.h tinymce.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h -tinymce.o: ../../pikotools/date/date.h ../db/db.h ../db/dbbase.h -tinymce.o: ../db/dbconn.h ../db/dbtextstream.h ../core/textstream.h -tinymce.o: ../core/misc.h ../core/item.h ../core/requesttypes.h +tinymce.o: ../../pikotools/date/date.h ../../winix/db/db.h +tinymce.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +tinymce.o: ../../winix/db/dbtextstream.h ../../winix/core/textstream.h +tinymce.o: ../../winix/core/misc.h ../../winix/core/item.h +tinymce.o: ../../winix/core/requesttypes.h tinymce.o: ../../pikotools/textstream/textstream.h tinymce.o: ../../pikotools/convert/convert.h tinymce.o: ../../pikotools/convert/inttostr.h tinymce.o: ../../pikotools/membuffer/membuffer.h tinymce.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -tinymce.o: ../core/error.h ../../pikotools/space/spaceparser.h -tinymce.o: ../../pikotools/space/space.h ../db/dbitemquery.h -tinymce.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -tinymce.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -tinymce.o: ../core/textstream.h ../core/logmanipulators.h ../core/slog.h -tinymce.o: ../core/cur.h ../core/request.h ../core/error.h ../core/config.h -tinymce.o: ../core/htmlfilter.h ../templates/htmltextstream.h -tinymce.o: ../../pikotools/space/spacetojson.h ../core/session.h -tinymce.o: ../core/user.h ../core/plugindata.h ../core/rebus.h ipban.h -tinymce.o: mount.h ../templates/locale.h ../core/request.h ../core/config.h -tinymce.o: ../core/system.h ../core/job.h ../core/basethread.h -tinymce.o: ../core/synchro.h ../core/dirs.h ../core/dircontainer.h -tinymce.o: ../notify/notify.h ../notify/notifypool.h ../templates/patterns.h -tinymce.o: locale.h ../templates/localefilter.h ../../ezc/src/ezc.h +tinymce.o: ../../winix/core/error.h ../../pikotools/space/spaceparser.h +tinymce.o: ../../pikotools/space/space.h ../../winix/db/dbitemquery.h +tinymce.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +tinymce.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +tinymce.o: ../../winix/core/ugcontainer.h ../../winix/core/log.h +tinymce.o: ../../winix/core/textstream.h ../../winix/core/logmanipulators.h +tinymce.o: ../../winix/core/slog.h ../../winix/core/cur.h +tinymce.o: ../../winix/core/request.h ../../winix/core/error.h +tinymce.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h +tinymce.o: ../../winix/templates/htmltextstream.h +tinymce.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +tinymce.o: ../../winix/core/user.h ../../winix/core/plugindata.h +tinymce.o: ../../winix/core/rebus.h ipban.h mount.h +tinymce.o: ../../winix/templates/locale.h ../../winix/core/request.h +tinymce.o: ../../winix/core/config.h ../../winix/core/system.h +tinymce.o: ../../winix/core/job.h ../../winix/core/basethread.h +tinymce.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +tinymce.o: ../../winix/core/dircontainer.h ../../winix/notify/notify.h +tinymce.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +tinymce.o: locale.h ../../winix/templates/localefilter.h ../../ezc/src/ezc.h tinymce.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h -tinymce.o: functionparser.h ../core/cur.h account.h adduser.h cat.h chmod.h -tinymce.o: privchanger.h chown.h ckeditor.h cp.h default.h download.h emacs.h -tinymce.o: env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h meta.h -tinymce.o: mkdir.h mv.h nicedit.h node.h passwd.h priv.h pw.h reload.h rm.h -tinymce.o: rmuser.h run.h sort.h specialdefault.h stat.h subject.h template.h -tinymce.o: timezone.h uname.h upload.h uptime.h who.h vim.h -tinymce.o: ../core/htmlfilter.h ../../ezc/src/stringconv.h -tinymce.o: ../notify/notifythread.h ../core/basethread.h -tinymce.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h -tinymce.o: ../core/lastcontainer.h ../core/mounts.h ../core/mountparser.h -tinymce.o: ../core/crypt.h ../core/users.h ../core/groups.h ../core/group.h -tinymce.o: ../core/loadavg.h ../core/image.h ../core/threadmanager.h -tinymce.o: ../core/timezones.h ../core/synchro.h -uname.o: uname.h functionbase.h ../core/item.h ../../pikotools/space/space.h -uname.o: ../../pikotools/textstream/types.h ../../pikotools/date/date.h -uname.o: ../db/db.h ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h -uname.o: ../core/textstream.h ../core/misc.h ../core/item.h -uname.o: ../core/requesttypes.h ../../pikotools/textstream/textstream.h +tinymce.o: functionparser.h ../../winix/core/cur.h account.h adduser.h cat.h +tinymce.o: chmod.h privchanger.h chown.h ckeditor.h cp.h default.h download.h +tinymce.o: emacs.h env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h +tinymce.o: meta.h mkdir.h mv.h nicedit.h node.h passwd.h priv.h pw.h reload.h +tinymce.o: rm.h rmuser.h run.h sort.h specialdefault.h stat.h subject.h +tinymce.o: template.h timezone.h uname.h upload.h uptime.h who.h vim.h +tinymce.o: ../../winix/core/htmlfilter.h ../../ezc/src/stringconv.h +tinymce.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +tinymce.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +tinymce.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +tinymce.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +tinymce.o: ../../winix/core/crypt.h ../../winix/core/users.h +tinymce.o: ../../winix/core/groups.h ../../winix/core/group.h +tinymce.o: ../../winix/core/loadavg.h ../../winix/core/image.h +tinymce.o: ../../winix/core/threadmanager.h ../../winix/core/timezones.h +tinymce.o: ../../winix/core/synchro.h +uname.o: uname.h functionbase.h ../../winix/core/item.h +uname.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h +uname.o: ../../pikotools/date/date.h ../../winix/db/db.h +uname.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +uname.o: ../../winix/db/dbtextstream.h ../../winix/core/textstream.h +uname.o: ../../winix/core/misc.h ../../winix/core/item.h +uname.o: ../../winix/core/requesttypes.h +uname.o: ../../pikotools/textstream/textstream.h uname.o: ../../pikotools/convert/convert.h ../../pikotools/convert/inttostr.h uname.o: ../../pikotools/membuffer/membuffer.h uname.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -uname.o: ../core/error.h ../../pikotools/space/spaceparser.h -uname.o: ../../pikotools/space/space.h ../db/dbitemquery.h -uname.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -uname.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -uname.o: ../core/textstream.h ../core/logmanipulators.h ../core/slog.h -uname.o: ../core/cur.h ../core/request.h ../core/error.h ../core/config.h -uname.o: ../core/htmlfilter.h ../templates/htmltextstream.h -uname.o: ../../pikotools/space/spacetojson.h ../core/session.h ../core/user.h -uname.o: ../core/plugindata.h ../core/rebus.h ipban.h mount.h -uname.o: ../templates/locale.h ../core/request.h ../core/config.h -uname.o: ../core/system.h ../core/job.h ../core/basethread.h -uname.o: ../core/synchro.h ../core/dirs.h ../core/dircontainer.h -uname.o: ../notify/notify.h ../notify/notifypool.h ../templates/patterns.h -uname.o: locale.h ../templates/localefilter.h ../../ezc/src/ezc.h +uname.o: ../../winix/core/error.h ../../pikotools/space/spaceparser.h +uname.o: ../../pikotools/space/space.h ../../winix/db/dbitemquery.h +uname.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +uname.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +uname.o: ../../winix/core/ugcontainer.h ../../winix/core/log.h +uname.o: ../../winix/core/textstream.h ../../winix/core/logmanipulators.h +uname.o: ../../winix/core/slog.h ../../winix/core/cur.h +uname.o: ../../winix/core/request.h ../../winix/core/error.h +uname.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h +uname.o: ../../winix/templates/htmltextstream.h +uname.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +uname.o: ../../winix/core/user.h ../../winix/core/plugindata.h +uname.o: ../../winix/core/rebus.h ipban.h mount.h +uname.o: ../../winix/templates/locale.h ../../winix/core/request.h +uname.o: ../../winix/core/config.h ../../winix/core/system.h +uname.o: ../../winix/core/job.h ../../winix/core/basethread.h +uname.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +uname.o: ../../winix/core/dircontainer.h ../../winix/notify/notify.h +uname.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +uname.o: locale.h ../../winix/templates/localefilter.h ../../ezc/src/ezc.h uname.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h -uname.o: functionparser.h ../core/cur.h account.h adduser.h cat.h chmod.h -uname.o: privchanger.h chown.h ckeditor.h cp.h default.h download.h emacs.h -uname.o: env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h meta.h -uname.o: mkdir.h mv.h nicedit.h node.h passwd.h priv.h pw.h reload.h rm.h -uname.o: rmuser.h run.h sort.h specialdefault.h stat.h subject.h template.h -uname.o: timezone.h tinymce.h upload.h uptime.h who.h vim.h -uname.o: ../core/htmlfilter.h ../../ezc/src/stringconv.h -uname.o: ../notify/notifythread.h ../core/basethread.h -uname.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h -uname.o: ../core/lastcontainer.h ../core/mounts.h ../core/mountparser.h -uname.o: ../core/crypt.h ../core/users.h ../core/groups.h ../core/group.h -uname.o: ../core/loadavg.h ../core/image.h ../core/threadmanager.h -uname.o: ../core/timezones.h ../core/synchro.h -upload.o: upload.h functionbase.h ../core/item.h +uname.o: functionparser.h ../../winix/core/cur.h account.h adduser.h cat.h +uname.o: chmod.h privchanger.h chown.h ckeditor.h cp.h default.h download.h +uname.o: emacs.h env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h +uname.o: meta.h mkdir.h mv.h nicedit.h node.h passwd.h priv.h pw.h reload.h +uname.o: rm.h rmuser.h run.h sort.h specialdefault.h stat.h subject.h +uname.o: template.h timezone.h tinymce.h upload.h uptime.h who.h vim.h +uname.o: ../../winix/core/htmlfilter.h ../../ezc/src/stringconv.h +uname.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +uname.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +uname.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +uname.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +uname.o: ../../winix/core/crypt.h ../../winix/core/users.h +uname.o: ../../winix/core/groups.h ../../winix/core/group.h +uname.o: ../../winix/core/loadavg.h ../../winix/core/image.h +uname.o: ../../winix/core/threadmanager.h ../../winix/core/timezones.h +uname.o: ../../winix/core/synchro.h +upload.o: upload.h functionbase.h ../../winix/core/item.h upload.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h -upload.o: ../../pikotools/date/date.h ../db/db.h ../db/dbbase.h -upload.o: ../db/dbconn.h ../db/dbtextstream.h ../core/textstream.h -upload.o: ../core/misc.h ../core/item.h ../core/requesttypes.h +upload.o: ../../pikotools/date/date.h ../../winix/db/db.h +upload.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +upload.o: ../../winix/db/dbtextstream.h ../../winix/core/textstream.h +upload.o: ../../winix/core/misc.h ../../winix/core/item.h +upload.o: ../../winix/core/requesttypes.h upload.o: ../../pikotools/textstream/textstream.h upload.o: ../../pikotools/convert/convert.h upload.o: ../../pikotools/convert/inttostr.h upload.o: ../../pikotools/membuffer/membuffer.h upload.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -upload.o: ../core/error.h ../../pikotools/space/spaceparser.h -upload.o: ../../pikotools/space/space.h ../db/dbitemquery.h -upload.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -upload.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -upload.o: ../core/textstream.h ../core/logmanipulators.h ../core/slog.h -upload.o: ../core/cur.h ../core/request.h ../core/error.h ../core/config.h -upload.o: ../core/htmlfilter.h ../templates/htmltextstream.h -upload.o: ../../pikotools/space/spacetojson.h ../core/session.h -upload.o: ../core/user.h ../core/plugindata.h ../core/rebus.h ipban.h mount.h -upload.o: ../templates/locale.h ../core/request.h ../core/config.h -upload.o: ../core/system.h ../core/job.h ../core/basethread.h -upload.o: ../core/synchro.h ../core/dirs.h ../core/dircontainer.h -upload.o: ../notify/notify.h ../notify/notifypool.h ../templates/patterns.h -upload.o: locale.h ../templates/localefilter.h ../../ezc/src/ezc.h +upload.o: ../../winix/core/error.h ../../pikotools/space/spaceparser.h +upload.o: ../../pikotools/space/space.h ../../winix/db/dbitemquery.h +upload.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +upload.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +upload.o: ../../winix/core/ugcontainer.h ../../winix/core/log.h +upload.o: ../../winix/core/textstream.h ../../winix/core/logmanipulators.h +upload.o: ../../winix/core/slog.h ../../winix/core/cur.h +upload.o: ../../winix/core/request.h ../../winix/core/error.h +upload.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h +upload.o: ../../winix/templates/htmltextstream.h +upload.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +upload.o: ../../winix/core/user.h ../../winix/core/plugindata.h +upload.o: ../../winix/core/rebus.h ipban.h mount.h +upload.o: ../../winix/templates/locale.h ../../winix/core/request.h +upload.o: ../../winix/core/config.h ../../winix/core/system.h +upload.o: ../../winix/core/job.h ../../winix/core/basethread.h +upload.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +upload.o: ../../winix/core/dircontainer.h ../../winix/notify/notify.h +upload.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +upload.o: locale.h ../../winix/templates/localefilter.h ../../ezc/src/ezc.h upload.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h -upload.o: functionparser.h ../core/cur.h account.h adduser.h cat.h chmod.h -upload.o: privchanger.h chown.h ckeditor.h cp.h default.h download.h emacs.h -upload.o: env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h meta.h -upload.o: mkdir.h mv.h nicedit.h node.h passwd.h priv.h pw.h reload.h rm.h -upload.o: rmuser.h run.h sort.h specialdefault.h stat.h subject.h template.h -upload.o: timezone.h tinymce.h uname.h uptime.h who.h vim.h -upload.o: ../core/htmlfilter.h ../../ezc/src/stringconv.h -upload.o: ../notify/notifythread.h ../core/basethread.h -upload.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h -upload.o: ../core/lastcontainer.h ../core/mounts.h ../core/mountparser.h -upload.o: ../core/crypt.h ../core/users.h ../core/groups.h ../core/group.h -upload.o: ../core/loadavg.h ../core/image.h ../core/threadmanager.h -upload.o: ../core/timezones.h ../core/synchro.h ../core/misc.h -upload.o: ../core/plugin.h ../core/pluginmsg.h ../core/system.h -upload.o: ../core/sessionmanager.h ../core/sessioncontainer.h -upload.o: ../core/ipbancontainer.h ../functions/functions.h -upload.o: ../templates/templates.h ../templates/patterncacher.h -upload.o: ../templates/indexpatterns.h ../templates/patterns.h -upload.o: ../templates/changepatterns.h ../templates/htmltextstream.h -upload.o: ../core/sessionmanager.h -uptime.o: uptime.h functionbase.h ../core/item.h +upload.o: functionparser.h ../../winix/core/cur.h account.h adduser.h cat.h +upload.o: chmod.h privchanger.h chown.h ckeditor.h cp.h default.h download.h +upload.o: emacs.h env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h +upload.o: meta.h mkdir.h mv.h nicedit.h node.h passwd.h priv.h pw.h reload.h +upload.o: rm.h rmuser.h run.h sort.h specialdefault.h stat.h subject.h +upload.o: template.h timezone.h tinymce.h uname.h uptime.h who.h vim.h +upload.o: ../../winix/core/htmlfilter.h ../../ezc/src/stringconv.h +upload.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +upload.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +upload.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +upload.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +upload.o: ../../winix/core/crypt.h ../../winix/core/users.h +upload.o: ../../winix/core/groups.h ../../winix/core/group.h +upload.o: ../../winix/core/loadavg.h ../../winix/core/image.h +upload.o: ../../winix/core/threadmanager.h ../../winix/core/timezones.h +upload.o: ../../winix/core/synchro.h ../../winix/core/misc.h +upload.o: ../../winix/core/plugin.h ../../winix/core/pluginmsg.h +upload.o: ../../winix/core/system.h ../../winix/core/sessionmanager.h +upload.o: ../../winix/core/sessioncontainer.h +upload.o: ../../winix/core/ipbancontainer.h ../../winix/functions/functions.h +upload.o: ../../winix/templates/templates.h +upload.o: ../../winix/templates/patterncacher.h +upload.o: ../../winix/templates/indexpatterns.h +upload.o: ../../winix/templates/patterns.h +upload.o: ../../winix/templates/changepatterns.h +upload.o: ../../winix/templates/htmltextstream.h +upload.o: ../../winix/core/sessionmanager.h +uptime.o: uptime.h functionbase.h ../../winix/core/item.h uptime.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h -uptime.o: ../../pikotools/date/date.h ../db/db.h ../db/dbbase.h -uptime.o: ../db/dbconn.h ../db/dbtextstream.h ../core/textstream.h -uptime.o: ../core/misc.h ../core/item.h ../core/requesttypes.h +uptime.o: ../../pikotools/date/date.h ../../winix/db/db.h +uptime.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +uptime.o: ../../winix/db/dbtextstream.h ../../winix/core/textstream.h +uptime.o: ../../winix/core/misc.h ../../winix/core/item.h +uptime.o: ../../winix/core/requesttypes.h uptime.o: ../../pikotools/textstream/textstream.h uptime.o: ../../pikotools/convert/convert.h uptime.o: ../../pikotools/convert/inttostr.h uptime.o: ../../pikotools/membuffer/membuffer.h uptime.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -uptime.o: ../core/error.h ../../pikotools/space/spaceparser.h -uptime.o: ../../pikotools/space/space.h ../db/dbitemquery.h -uptime.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -uptime.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -uptime.o: ../core/textstream.h ../core/logmanipulators.h ../core/slog.h -uptime.o: ../core/cur.h ../core/request.h ../core/error.h ../core/config.h -uptime.o: ../core/htmlfilter.h ../templates/htmltextstream.h -uptime.o: ../../pikotools/space/spacetojson.h ../core/session.h -uptime.o: ../core/user.h ../core/plugindata.h ../core/rebus.h ipban.h mount.h -uptime.o: ../templates/locale.h ../core/request.h ../core/config.h -uptime.o: ../core/system.h ../core/job.h ../core/basethread.h -uptime.o: ../core/synchro.h ../core/dirs.h ../core/dircontainer.h -uptime.o: ../notify/notify.h ../notify/notifypool.h ../templates/patterns.h -uptime.o: locale.h ../templates/localefilter.h ../../ezc/src/ezc.h +uptime.o: ../../winix/core/error.h ../../pikotools/space/spaceparser.h +uptime.o: ../../pikotools/space/space.h ../../winix/db/dbitemquery.h +uptime.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +uptime.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +uptime.o: ../../winix/core/ugcontainer.h ../../winix/core/log.h +uptime.o: ../../winix/core/textstream.h ../../winix/core/logmanipulators.h +uptime.o: ../../winix/core/slog.h ../../winix/core/cur.h +uptime.o: ../../winix/core/request.h ../../winix/core/error.h +uptime.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h +uptime.o: ../../winix/templates/htmltextstream.h +uptime.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +uptime.o: ../../winix/core/user.h ../../winix/core/plugindata.h +uptime.o: ../../winix/core/rebus.h ipban.h mount.h +uptime.o: ../../winix/templates/locale.h ../../winix/core/request.h +uptime.o: ../../winix/core/config.h ../../winix/core/system.h +uptime.o: ../../winix/core/job.h ../../winix/core/basethread.h +uptime.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +uptime.o: ../../winix/core/dircontainer.h ../../winix/notify/notify.h +uptime.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +uptime.o: locale.h ../../winix/templates/localefilter.h ../../ezc/src/ezc.h uptime.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h -uptime.o: functionparser.h ../core/cur.h account.h adduser.h cat.h chmod.h -uptime.o: privchanger.h chown.h ckeditor.h cp.h default.h download.h emacs.h -uptime.o: env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h meta.h -uptime.o: mkdir.h mv.h nicedit.h node.h passwd.h priv.h pw.h reload.h rm.h -uptime.o: rmuser.h run.h sort.h specialdefault.h stat.h subject.h template.h -uptime.o: timezone.h tinymce.h uname.h upload.h who.h vim.h -uptime.o: ../core/htmlfilter.h ../../ezc/src/stringconv.h -uptime.o: ../notify/notifythread.h ../core/basethread.h -uptime.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h -uptime.o: ../core/lastcontainer.h ../core/mounts.h ../core/mountparser.h -uptime.o: ../core/crypt.h ../core/users.h ../core/groups.h ../core/group.h -uptime.o: ../core/loadavg.h ../core/image.h ../core/threadmanager.h -uptime.o: ../core/timezones.h ../core/synchro.h -vim.o: vim.h functionbase.h ../core/item.h ../../pikotools/space/space.h -vim.o: ../../pikotools/textstream/types.h ../../pikotools/date/date.h -vim.o: ../db/db.h ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h -vim.o: ../core/textstream.h ../core/misc.h ../core/item.h -vim.o: ../core/requesttypes.h ../../pikotools/textstream/textstream.h +uptime.o: functionparser.h ../../winix/core/cur.h account.h adduser.h cat.h +uptime.o: chmod.h privchanger.h chown.h ckeditor.h cp.h default.h download.h +uptime.o: emacs.h env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h +uptime.o: meta.h mkdir.h mv.h nicedit.h node.h passwd.h priv.h pw.h reload.h +uptime.o: rm.h rmuser.h run.h sort.h specialdefault.h stat.h subject.h +uptime.o: template.h timezone.h tinymce.h uname.h upload.h who.h vim.h +uptime.o: ../../winix/core/htmlfilter.h ../../ezc/src/stringconv.h +uptime.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +uptime.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +uptime.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +uptime.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +uptime.o: ../../winix/core/crypt.h ../../winix/core/users.h +uptime.o: ../../winix/core/groups.h ../../winix/core/group.h +uptime.o: ../../winix/core/loadavg.h ../../winix/core/image.h +uptime.o: ../../winix/core/threadmanager.h ../../winix/core/timezones.h +uptime.o: ../../winix/core/synchro.h +vim.o: vim.h functionbase.h ../../winix/core/item.h +vim.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h +vim.o: ../../pikotools/date/date.h ../../winix/db/db.h +vim.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +vim.o: ../../winix/db/dbtextstream.h ../../winix/core/textstream.h +vim.o: ../../winix/core/misc.h ../../winix/core/item.h +vim.o: ../../winix/core/requesttypes.h +vim.o: ../../pikotools/textstream/textstream.h vim.o: ../../pikotools/convert/convert.h ../../pikotools/convert/inttostr.h vim.o: ../../pikotools/membuffer/membuffer.h vim.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -vim.o: ../core/error.h ../../pikotools/space/spaceparser.h -vim.o: ../../pikotools/space/space.h ../db/dbitemquery.h -vim.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -vim.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -vim.o: ../core/textstream.h ../core/logmanipulators.h ../core/slog.h -vim.o: ../core/cur.h ../core/request.h ../core/error.h ../core/config.h -vim.o: ../core/htmlfilter.h ../templates/htmltextstream.h -vim.o: ../../pikotools/space/spacetojson.h ../core/session.h ../core/user.h -vim.o: ../core/plugindata.h ../core/rebus.h ipban.h mount.h -vim.o: ../templates/locale.h ../core/request.h ../core/config.h -vim.o: ../core/system.h ../core/job.h ../core/basethread.h ../core/synchro.h -vim.o: ../core/dirs.h ../core/dircontainer.h ../notify/notify.h -vim.o: ../notify/notifypool.h ../templates/patterns.h locale.h -vim.o: ../templates/localefilter.h ../../ezc/src/ezc.h +vim.o: ../../winix/core/error.h ../../pikotools/space/spaceparser.h +vim.o: ../../pikotools/space/space.h ../../winix/db/dbitemquery.h +vim.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +vim.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +vim.o: ../../winix/core/ugcontainer.h ../../winix/core/log.h +vim.o: ../../winix/core/textstream.h ../../winix/core/logmanipulators.h +vim.o: ../../winix/core/slog.h ../../winix/core/cur.h +vim.o: ../../winix/core/request.h ../../winix/core/error.h +vim.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h +vim.o: ../../winix/templates/htmltextstream.h +vim.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +vim.o: ../../winix/core/user.h ../../winix/core/plugindata.h +vim.o: ../../winix/core/rebus.h ipban.h mount.h +vim.o: ../../winix/templates/locale.h ../../winix/core/request.h +vim.o: ../../winix/core/config.h ../../winix/core/system.h +vim.o: ../../winix/core/job.h ../../winix/core/basethread.h +vim.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +vim.o: ../../winix/core/dircontainer.h ../../winix/notify/notify.h +vim.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +vim.o: locale.h ../../winix/templates/localefilter.h ../../ezc/src/ezc.h vim.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h -vim.o: functionparser.h ../core/cur.h account.h adduser.h cat.h chmod.h -vim.o: privchanger.h chown.h ckeditor.h cp.h default.h download.h emacs.h -vim.o: env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h meta.h mkdir.h -vim.o: mv.h nicedit.h node.h passwd.h priv.h pw.h reload.h rm.h rmuser.h -vim.o: run.h sort.h specialdefault.h stat.h subject.h template.h timezone.h -vim.o: tinymce.h uname.h upload.h uptime.h who.h ../core/htmlfilter.h -vim.o: ../../ezc/src/stringconv.h ../notify/notifythread.h -vim.o: ../core/basethread.h ../notify/templatesnotify.h ../core/users.h -vim.o: ../core/ugcontainer.h ../core/lastcontainer.h ../core/mounts.h -vim.o: ../core/mountparser.h ../core/crypt.h ../core/users.h ../core/groups.h -vim.o: ../core/group.h ../core/loadavg.h ../core/image.h -vim.o: ../core/threadmanager.h ../core/timezones.h ../core/synchro.h -who.o: who.h functionbase.h ../core/item.h ../../pikotools/space/space.h -who.o: ../../pikotools/textstream/types.h ../../pikotools/date/date.h -who.o: ../db/db.h ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h -who.o: ../core/textstream.h ../core/misc.h ../core/item.h -who.o: ../core/requesttypes.h ../../pikotools/textstream/textstream.h +vim.o: functionparser.h ../../winix/core/cur.h account.h adduser.h cat.h +vim.o: chmod.h privchanger.h chown.h ckeditor.h cp.h default.h download.h +vim.o: emacs.h env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h meta.h +vim.o: mkdir.h mv.h nicedit.h node.h passwd.h priv.h pw.h reload.h rm.h +vim.o: rmuser.h run.h sort.h specialdefault.h stat.h subject.h template.h +vim.o: timezone.h tinymce.h uname.h upload.h uptime.h who.h +vim.o: ../../winix/core/htmlfilter.h ../../ezc/src/stringconv.h +vim.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +vim.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +vim.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +vim.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +vim.o: ../../winix/core/crypt.h ../../winix/core/users.h +vim.o: ../../winix/core/groups.h ../../winix/core/group.h +vim.o: ../../winix/core/loadavg.h ../../winix/core/image.h +vim.o: ../../winix/core/threadmanager.h ../../winix/core/timezones.h +vim.o: ../../winix/core/synchro.h +who.o: who.h functionbase.h ../../winix/core/item.h +who.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h +who.o: ../../pikotools/date/date.h ../../winix/db/db.h +who.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +who.o: ../../winix/db/dbtextstream.h ../../winix/core/textstream.h +who.o: ../../winix/core/misc.h ../../winix/core/item.h +who.o: ../../winix/core/requesttypes.h +who.o: ../../pikotools/textstream/textstream.h who.o: ../../pikotools/convert/convert.h ../../pikotools/convert/inttostr.h who.o: ../../pikotools/membuffer/membuffer.h who.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -who.o: ../core/error.h ../../pikotools/space/spaceparser.h -who.o: ../../pikotools/space/space.h ../db/dbitemquery.h -who.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -who.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -who.o: ../core/textstream.h ../core/logmanipulators.h ../core/slog.h -who.o: ../core/cur.h ../core/request.h ../core/error.h ../core/config.h -who.o: ../core/htmlfilter.h ../templates/htmltextstream.h -who.o: ../../pikotools/space/spacetojson.h ../core/session.h ../core/user.h -who.o: ../core/plugindata.h ../core/rebus.h ipban.h mount.h -who.o: ../templates/locale.h ../core/request.h ../core/config.h -who.o: ../core/system.h ../core/job.h ../core/basethread.h ../core/synchro.h -who.o: ../core/dirs.h ../core/dircontainer.h ../notify/notify.h -who.o: ../notify/notifypool.h ../templates/patterns.h locale.h -who.o: ../templates/localefilter.h ../../ezc/src/ezc.h +who.o: ../../winix/core/error.h ../../pikotools/space/spaceparser.h +who.o: ../../pikotools/space/space.h ../../winix/db/dbitemquery.h +who.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +who.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +who.o: ../../winix/core/ugcontainer.h ../../winix/core/log.h +who.o: ../../winix/core/textstream.h ../../winix/core/logmanipulators.h +who.o: ../../winix/core/slog.h ../../winix/core/cur.h +who.o: ../../winix/core/request.h ../../winix/core/error.h +who.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h +who.o: ../../winix/templates/htmltextstream.h +who.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +who.o: ../../winix/core/user.h ../../winix/core/plugindata.h +who.o: ../../winix/core/rebus.h ipban.h mount.h +who.o: ../../winix/templates/locale.h ../../winix/core/request.h +who.o: ../../winix/core/config.h ../../winix/core/system.h +who.o: ../../winix/core/job.h ../../winix/core/basethread.h +who.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +who.o: ../../winix/core/dircontainer.h ../../winix/notify/notify.h +who.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +who.o: locale.h ../../winix/templates/localefilter.h ../../ezc/src/ezc.h who.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h functions.h -who.o: functionparser.h ../core/cur.h account.h adduser.h cat.h chmod.h -who.o: privchanger.h chown.h ckeditor.h cp.h default.h download.h emacs.h -who.o: env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h meta.h mkdir.h -who.o: mv.h nicedit.h node.h passwd.h priv.h pw.h reload.h rm.h rmuser.h -who.o: run.h sort.h specialdefault.h stat.h subject.h template.h timezone.h -who.o: tinymce.h uname.h upload.h uptime.h vim.h ../core/htmlfilter.h -who.o: ../../ezc/src/stringconv.h ../notify/notifythread.h -who.o: ../core/basethread.h ../notify/templatesnotify.h ../core/users.h -who.o: ../core/ugcontainer.h ../core/lastcontainer.h ../core/mounts.h -who.o: ../core/mountparser.h ../core/crypt.h ../core/users.h ../core/groups.h -who.o: ../core/group.h ../core/loadavg.h ../core/image.h -who.o: ../core/threadmanager.h ../core/timezones.h ../core/synchro.h +who.o: functionparser.h ../../winix/core/cur.h account.h adduser.h cat.h +who.o: chmod.h privchanger.h chown.h ckeditor.h cp.h default.h download.h +who.o: emacs.h env.h imgcrop.h last.h login.h logout.h ln.h ls.h man.h meta.h +who.o: mkdir.h mv.h nicedit.h node.h passwd.h priv.h pw.h reload.h rm.h +who.o: rmuser.h run.h sort.h specialdefault.h stat.h subject.h template.h +who.o: timezone.h tinymce.h uname.h upload.h uptime.h vim.h +who.o: ../../winix/core/htmlfilter.h ../../ezc/src/stringconv.h +who.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +who.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +who.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +who.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +who.o: ../../winix/core/crypt.h ../../winix/core/users.h +who.o: ../../winix/core/groups.h ../../winix/core/group.h +who.o: ../../winix/core/loadavg.h ../../winix/core/image.h +who.o: ../../winix/core/threadmanager.h ../../winix/core/timezones.h +who.o: ../../winix/core/synchro.h diff --git a/main/Makefile b/main/Makefile index 14f7631..f25e1fc 100755 --- a/main/Makefile +++ b/main/Makefile @@ -5,11 +5,11 @@ all: $(o) %.o: %.cpp - $(CXX) -c $(CXXFLAGS) $< + $(CXX) -c $(CXXFLAGS) $(CXXWINIXINCLUDEFLAGS) $< depend: - makedepend -Y. -I.. -I../../ezc/src -I../../pikotools -I../../tito/src -f- *.cpp > Makefile.dep + makedepend -Y. $(CXXWINIXINCLUDEFLAGS) -f- *.cpp > Makefile.dep echo -n "o = " > Makefile.o.dep ls -1 *.cpp | xargs -I foo echo -n foo " " | sed -E "s/([^\.]*)\.cpp[ ]/\1\.o/g" >> Makefile.o.dep diff --git a/main/Makefile.dep b/main/Makefile.dep index 5eea92d..c0424f4 100755 --- a/main/Makefile.dep +++ b/main/Makefile.dep @@ -1,59 +1,84 @@ # DO NOT DELETE -main.o: ../core/log.h ../core/textstream.h ../core/misc.h ../core/item.h +main.o: ../../winix/core/log.h ../../winix/core/textstream.h +main.o: ../../winix/core/misc.h ../../winix/core/item.h main.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h -main.o: ../../pikotools/date/date.h ../core/requesttypes.h +main.o: ../../pikotools/date/date.h ../../winix/core/requesttypes.h main.o: ../../pikotools/textstream/textstream.h main.o: ../../pikotools/convert/convert.h ../../pikotools/convert/inttostr.h main.o: ../../pikotools/membuffer/membuffer.h main.o: ../../pikotools/textstream/types.h ../../pikotools/utf8/utf8.h -main.o: ../core/logmanipulators.h ../core/slog.h ../core/cur.h -main.o: ../core/request.h ../core/error.h ../core/config.h +main.o: ../../winix/core/logmanipulators.h ../../winix/core/slog.h +main.o: ../../winix/core/cur.h ../../winix/core/request.h +main.o: ../../winix/core/error.h ../../winix/core/config.h main.o: ../../pikotools/space/spaceparser.h ../../pikotools/space/space.h -main.o: ../core/htmlfilter.h ../templates/htmltextstream.h -main.o: ../core/textstream.h ../../pikotools/space/spacetojson.h -main.o: ../core/session.h ../core/user.h ../core/plugindata.h ../core/rebus.h -main.o: ../core/ipban.h ../core/mount.h ../templates/locale.h ../core/slog.h -main.o: ../core/app.h ../core/system.h ../core/job.h ../core/basethread.h -main.o: ../core/synchro.h ../core/dirs.h ../core/dircontainer.h ../db/db.h -main.o: ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h ../core/error.h -main.o: ../db/dbitemquery.h ../core/item.h ../db/dbitemcolumns.h -main.o: ../core/user.h ../core/group.h ../core/dircontainer.h -main.o: ../core/ugcontainer.h ../core/log.h ../notify/notify.h -main.o: ../notify/notifypool.h ../templates/patterns.h ../templates/locale.h -main.o: ../templates/localefilter.h ../../ezc/src/ezc.h +main.o: ../../winix/core/htmlfilter.h ../../winix/templates/htmltextstream.h +main.o: ../../winix/core/textstream.h ../../pikotools/space/spacetojson.h +main.o: ../../winix/core/session.h ../../winix/core/user.h +main.o: ../../winix/core/plugindata.h ../../winix/core/rebus.h +main.o: ../../winix/core/ipban.h ../../winix/core/mount.h +main.o: ../../winix/templates/locale.h ../../winix/core/slog.h +main.o: ../../winix/core/app.h ../../winix/core/system.h +main.o: ../../winix/core/job.h ../../winix/core/basethread.h +main.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +main.o: ../../winix/core/dircontainer.h ../../winix/db/db.h +main.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +main.o: ../../winix/db/dbtextstream.h ../../winix/core/error.h +main.o: ../../winix/db/dbitemquery.h ../../winix/core/item.h +main.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +main.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +main.o: ../../winix/core/ugcontainer.h ../../winix/core/log.h +main.o: ../../winix/notify/notify.h ../../winix/notify/notifypool.h +main.o: ../../winix/templates/patterns.h ../../winix/templates/locale.h +main.o: ../../winix/templates/localefilter.h ../../ezc/src/ezc.h main.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h main.o: ../../ezc/src/functions.h ../../ezc/src/funinfo.h -main.o: ../../ezc/src/stringconv.h ../notify/notifythread.h -main.o: ../core/basethread.h ../notify/templatesnotify.h ../core/config.h -main.o: ../core/users.h ../core/ugcontainer.h ../core/lastcontainer.h -main.o: ../core/mounts.h ../core/mountparser.h ../core/crypt.h ../core/run.h -main.o: ../core/users.h ../core/groups.h ../core/group.h ../core/loadavg.h -main.o: ../core/image.h ../core/threadmanager.h ../core/timezones.h -main.o: ../core/timezone.h ../core/sessionmanager.h -main.o: ../core/sessioncontainer.h ../core/ipbancontainer.h -main.o: ../functions/functions.h ../functions/functionbase.h -main.o: ../core/request.h ../core/system.h ../core/synchro.h -main.o: ../functions/functionparser.h ../core/cur.h ../functions/account.h -main.o: ../functions/adduser.h ../functions/cat.h ../functions/chmod.h -main.o: ../functions/privchanger.h ../functions/chown.h -main.o: ../functions/ckeditor.h ../functions/cp.h ../functions/default.h -main.o: ../functions/download.h ../functions/emacs.h ../functions/env.h -main.o: ../functions/imgcrop.h ../functions/last.h ../functions/login.h -main.o: ../functions/logout.h ../functions/ln.h ../functions/ls.h -main.o: ../functions/man.h ../functions/meta.h ../functions/mkdir.h -main.o: ../functions/mv.h ../functions/nicedit.h ../functions/node.h -main.o: ../functions/passwd.h ../functions/priv.h ../functions/pw.h -main.o: ../functions/reload.h ../functions/rm.h ../functions/rmuser.h -main.o: ../functions/sort.h ../functions/specialdefault.h ../functions/stat.h -main.o: ../functions/subject.h ../functions/template.h ../functions/tinymce.h -main.o: ../functions/uname.h ../functions/upload.h ../functions/uptime.h -main.o: ../functions/who.h ../functions/vim.h ../core/htmlfilter.h -main.o: ../templates/templates.h ../templates/patterncacher.h -main.o: ../templates/indexpatterns.h ../templates/patterns.h -main.o: ../templates/changepatterns.h ../templates/htmltextstream.h -main.o: ../core/sessionmanager.h ../core/compress.h ../core/postparser.h -main.o: ../core/httpsimpleparser.h ../core/plugin.h ../core/pluginmsg.h -main.o: ../core/cookieparser.h ../core/postmultiparser.h -main.o: ../core/acceptencodingparser.h ../core/acceptbaseparser.h -main.o: ../core/plugin.h ../core/version.h +main.o: ../../ezc/src/stringconv.h ../../winix/notify/notifythread.h +main.o: ../../winix/core/basethread.h ../../winix/notify/templatesnotify.h +main.o: ../../winix/core/config.h ../../winix/core/users.h +main.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +main.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +main.o: ../../winix/core/crypt.h ../../winix/core/run.h +main.o: ../../winix/core/users.h ../../winix/core/groups.h +main.o: ../../winix/core/group.h ../../winix/core/loadavg.h +main.o: ../../winix/core/image.h ../../winix/core/threadmanager.h +main.o: ../../winix/core/timezones.h ../../winix/core/timezone.h +main.o: ../../winix/core/sessionmanager.h ../../winix/core/sessioncontainer.h +main.o: ../../winix/core/ipbancontainer.h ../../winix/functions/functions.h +main.o: ../../winix/functions/functionbase.h ../../winix/core/request.h +main.o: ../../winix/core/system.h ../../winix/core/synchro.h +main.o: ../../winix/functions/functionparser.h ../../winix/core/cur.h +main.o: ../../winix/functions/account.h ../../winix/functions/adduser.h +main.o: ../../winix/functions/cat.h ../../winix/functions/chmod.h +main.o: ../../winix/functions/privchanger.h ../../winix/functions/chown.h +main.o: ../../winix/functions/ckeditor.h ../../winix/functions/cp.h +main.o: ../../winix/functions/default.h ../../winix/functions/download.h +main.o: ../../winix/functions/emacs.h ../../winix/functions/env.h +main.o: ../../winix/functions/imgcrop.h ../../winix/functions/last.h +main.o: ../../winix/functions/login.h ../../winix/functions/logout.h +main.o: ../../winix/functions/ln.h ../../winix/functions/ls.h +main.o: ../../winix/functions/man.h ../../winix/functions/meta.h +main.o: ../../winix/functions/mkdir.h ../../winix/functions/mv.h +main.o: ../../winix/functions/nicedit.h ../../winix/functions/node.h +main.o: ../../winix/functions/passwd.h ../../winix/functions/priv.h +main.o: ../../winix/functions/pw.h ../../winix/functions/reload.h +main.o: ../../winix/functions/rm.h ../../winix/functions/rmuser.h +main.o: ../../winix/functions/sort.h ../../winix/functions/specialdefault.h +main.o: ../../winix/functions/stat.h ../../winix/functions/subject.h +main.o: ../../winix/functions/template.h ../../winix/functions/tinymce.h +main.o: ../../winix/functions/uname.h ../../winix/functions/upload.h +main.o: ../../winix/functions/uptime.h ../../winix/functions/who.h +main.o: ../../winix/functions/vim.h ../../winix/core/htmlfilter.h +main.o: ../../winix/templates/templates.h +main.o: ../../winix/templates/patterncacher.h +main.o: ../../winix/templates/indexpatterns.h +main.o: ../../winix/templates/patterns.h +main.o: ../../winix/templates/changepatterns.h +main.o: ../../winix/templates/htmltextstream.h +main.o: ../../winix/core/sessionmanager.h ../../winix/core/compress.h +main.o: ../../winix/core/postparser.h ../../winix/core/httpsimpleparser.h +main.o: ../../winix/core/plugin.h ../../winix/core/pluginmsg.h +main.o: ../../winix/core/cookieparser.h ../../winix/core/postmultiparser.h +main.o: ../../winix/core/acceptencodingparser.h +main.o: ../../winix/core/acceptbaseparser.h ../../winix/core/plugin.h +main.o: ../../winix/core/version.h diff --git a/notify/Makefile b/notify/Makefile index 14f7631..f25e1fc 100755 --- a/notify/Makefile +++ b/notify/Makefile @@ -5,11 +5,11 @@ all: $(o) %.o: %.cpp - $(CXX) -c $(CXXFLAGS) $< + $(CXX) -c $(CXXFLAGS) $(CXXWINIXINCLUDEFLAGS) $< depend: - makedepend -Y. -I.. -I../../ezc/src -I../../pikotools -I../../tito/src -f- *.cpp > Makefile.dep + makedepend -Y. $(CXXWINIXINCLUDEFLAGS) -f- *.cpp > Makefile.dep echo -n "o = " > Makefile.o.dep ls -1 *.cpp | xargs -I foo echo -n foo " " | sed -E "s/([^\.]*)\.cpp[ ]/\1\.o/g" >> Makefile.o.dep diff --git a/notify/Makefile.dep b/notify/Makefile.dep index 9f9f749..1950be8 100755 --- a/notify/Makefile.dep +++ b/notify/Makefile.dep @@ -1,6 +1,6 @@ # DO NOT DELETE -notify.o: notify.h notifypool.h ../templates/locale.h +notify.o: notify.h notifypool.h ../../winix/templates/locale.h notify.o: ../../pikotools/space/spaceparser.h ../../pikotools/space/space.h notify.o: ../../pikotools/textstream/types.h notify.o: ../../pikotools/textstream/textstream.h @@ -8,56 +8,77 @@ notify.o: ../../pikotools/space/space.h ../../pikotools/date/date.h notify.o: ../../pikotools/convert/convert.h notify.o: ../../pikotools/convert/inttostr.h notify.o: ../../pikotools/membuffer/membuffer.h -notify.o: ../../pikotools/textstream/types.h ../templates/patterns.h -notify.o: ../templates/locale.h ../templates/localefilter.h +notify.o: ../../pikotools/textstream/types.h ../../winix/templates/patterns.h +notify.o: ../../winix/templates/locale.h ../../winix/templates/localefilter.h notify.o: ../../ezc/src/ezc.h ../../ezc/src/generator.h notify.o: ../../ezc/src/pattern.h ../../ezc/src/item.h notify.o: ../../ezc/src/funinfo.h ../../ezc/src/functions.h notify.o: ../../ezc/src/stringconv.h ../../pikotools/utf8/utf8.h -notify.o: ../templates/misc.h ../templates/htmltextstream.h -notify.o: ../core/textstream.h notifythread.h ../core/basethread.h -notify.o: ../core/synchro.h templatesnotify.h ../core/config.h -notify.o: ../core/htmlfilter.h ../core/users.h ../core/user.h -notify.o: ../core/ugcontainer.h ../core/log.h ../core/textstream.h -notify.o: ../core/logmanipulators.h ../core/slog.h ../core/cur.h -notify.o: ../core/request.h ../core/requesttypes.h ../core/error.h -notify.o: ../core/config.h ../templates/htmltextstream.h -notify.o: ../../pikotools/space/spacetojson.h ../core/session.h -notify.o: ../core/plugindata.h ../core/rebus.h ../core/ipban.h -notify.o: ../core/mount.h ../core/lastcontainer.h ../db/db.h ../db/dbbase.h -notify.o: ../db/dbconn.h ../db/dbtextstream.h ../core/error.h -notify.o: ../db/dbitemquery.h ../core/item.h ../db/dbitemcolumns.h -notify.o: ../core/user.h ../core/group.h ../core/dircontainer.h -notify.o: ../core/ugcontainer.h ../templates/templates.h -notify.o: ../templates/patterncacher.h ../templates/indexpatterns.h -notify.o: ../templates/patterns.h ../templates/changepatterns.h ../core/cur.h -notify.o: ../core/system.h ../core/job.h ../core/basethread.h ../core/dirs.h -notify.o: ../core/dircontainer.h ../notify/notify.h ../core/mounts.h -notify.o: ../core/mountparser.h ../core/crypt.h ../core/run.h ../core/users.h -notify.o: ../core/groups.h ../core/group.h ../core/loadavg.h ../core/image.h -notify.o: ../core/threadmanager.h ../core/timezones.h ../core/timezone.h -notify.o: ../core/sessionmanager.h ../core/sessioncontainer.h -notify.o: ../core/ipbancontainer.h ../core/system.h ../core/htmlfilter.h -notify.o: ../core/request.h ../core/dirs.h ../core/plugin.h -notify.o: ../core/pluginmsg.h ../core/sessionmanager.h -notify.o: ../functions/functions.h ../functions/functionbase.h -notify.o: ../core/synchro.h ../functions/functionparser.h -notify.o: ../functions/account.h ../functions/adduser.h ../functions/cat.h -notify.o: ../functions/chmod.h ../functions/privchanger.h -notify.o: ../functions/chown.h ../functions/ckeditor.h ../functions/cp.h -notify.o: ../functions/default.h ../functions/download.h ../functions/emacs.h -notify.o: ../functions/env.h ../functions/imgcrop.h ../functions/last.h -notify.o: ../functions/login.h ../functions/logout.h ../functions/ln.h -notify.o: ../functions/ls.h ../functions/man.h ../functions/meta.h -notify.o: ../functions/mkdir.h ../functions/mv.h ../functions/nicedit.h -notify.o: ../functions/node.h ../functions/passwd.h ../functions/priv.h -notify.o: ../functions/pw.h ../functions/reload.h ../functions/rm.h -notify.o: ../functions/rmuser.h ../functions/sort.h -notify.o: ../functions/specialdefault.h ../functions/stat.h -notify.o: ../functions/subject.h ../functions/template.h -notify.o: ../functions/tinymce.h ../functions/uname.h ../functions/upload.h -notify.o: ../functions/uptime.h ../functions/who.h ../functions/vim.h -notifypool.o: notifypool.h ../templates/locale.h +notify.o: ../../winix/templates/misc.h ../../winix/templates/htmltextstream.h +notify.o: ../../winix/core/textstream.h notifythread.h +notify.o: ../../winix/core/basethread.h ../../winix/core/synchro.h +notify.o: templatesnotify.h ../../winix/core/config.h +notify.o: ../../winix/core/htmlfilter.h ../../winix/core/users.h +notify.o: ../../winix/core/user.h ../../winix/core/ugcontainer.h +notify.o: ../../winix/core/log.h ../../winix/core/textstream.h +notify.o: ../../winix/core/logmanipulators.h ../../winix/core/slog.h +notify.o: ../../winix/core/cur.h ../../winix/core/request.h +notify.o: ../../winix/core/requesttypes.h ../../winix/core/error.h +notify.o: ../../winix/core/config.h ../../winix/templates/htmltextstream.h +notify.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +notify.o: ../../winix/core/plugindata.h ../../winix/core/rebus.h +notify.o: ../../winix/core/ipban.h ../../winix/core/mount.h +notify.o: ../../winix/core/lastcontainer.h ../../winix/db/db.h +notify.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +notify.o: ../../winix/db/dbtextstream.h ../../winix/core/error.h +notify.o: ../../winix/db/dbitemquery.h ../../winix/core/item.h +notify.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +notify.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +notify.o: ../../winix/core/ugcontainer.h ../../winix/templates/templates.h +notify.o: ../../winix/templates/patterncacher.h +notify.o: ../../winix/templates/indexpatterns.h +notify.o: ../../winix/templates/patterns.h +notify.o: ../../winix/templates/changepatterns.h ../../winix/core/cur.h +notify.o: ../../winix/core/system.h ../../winix/core/job.h +notify.o: ../../winix/core/basethread.h ../../winix/core/dirs.h +notify.o: ../../winix/core/dircontainer.h ../../winix/notify/notify.h +notify.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +notify.o: ../../winix/core/crypt.h ../../winix/core/run.h +notify.o: ../../winix/core/users.h ../../winix/core/groups.h +notify.o: ../../winix/core/group.h ../../winix/core/loadavg.h +notify.o: ../../winix/core/image.h ../../winix/core/threadmanager.h +notify.o: ../../winix/core/timezones.h ../../winix/core/timezone.h +notify.o: ../../winix/core/sessionmanager.h +notify.o: ../../winix/core/sessioncontainer.h +notify.o: ../../winix/core/ipbancontainer.h ../../winix/core/system.h +notify.o: ../../winix/core/htmlfilter.h ../../winix/core/request.h +notify.o: ../../winix/core/dirs.h ../../winix/core/plugin.h +notify.o: ../../winix/core/pluginmsg.h ../../winix/core/sessionmanager.h +notify.o: ../../winix/functions/functions.h +notify.o: ../../winix/functions/functionbase.h ../../winix/core/synchro.h +notify.o: ../../winix/functions/functionparser.h +notify.o: ../../winix/functions/account.h ../../winix/functions/adduser.h +notify.o: ../../winix/functions/cat.h ../../winix/functions/chmod.h +notify.o: ../../winix/functions/privchanger.h ../../winix/functions/chown.h +notify.o: ../../winix/functions/ckeditor.h ../../winix/functions/cp.h +notify.o: ../../winix/functions/default.h ../../winix/functions/download.h +notify.o: ../../winix/functions/emacs.h ../../winix/functions/env.h +notify.o: ../../winix/functions/imgcrop.h ../../winix/functions/last.h +notify.o: ../../winix/functions/login.h ../../winix/functions/logout.h +notify.o: ../../winix/functions/ln.h ../../winix/functions/ls.h +notify.o: ../../winix/functions/man.h ../../winix/functions/meta.h +notify.o: ../../winix/functions/mkdir.h ../../winix/functions/mv.h +notify.o: ../../winix/functions/nicedit.h ../../winix/functions/node.h +notify.o: ../../winix/functions/passwd.h ../../winix/functions/priv.h +notify.o: ../../winix/functions/pw.h ../../winix/functions/reload.h +notify.o: ../../winix/functions/rm.h ../../winix/functions/rmuser.h +notify.o: ../../winix/functions/sort.h ../../winix/functions/specialdefault.h +notify.o: ../../winix/functions/stat.h ../../winix/functions/subject.h +notify.o: ../../winix/functions/template.h ../../winix/functions/tinymce.h +notify.o: ../../winix/functions/uname.h ../../winix/functions/upload.h +notify.o: ../../winix/functions/uptime.h ../../winix/functions/who.h +notify.o: ../../winix/functions/vim.h +notifypool.o: notifypool.h ../../winix/templates/locale.h notifypool.o: ../../pikotools/space/spaceparser.h notifypool.o: ../../pikotools/space/space.h notifypool.o: ../../pikotools/textstream/types.h @@ -67,95 +88,137 @@ notifypool.o: ../../pikotools/convert/convert.h notifypool.o: ../../pikotools/convert/inttostr.h notifypool.o: ../../pikotools/membuffer/membuffer.h notifypool.o: ../../pikotools/textstream/types.h -notifythread.o: notifythread.h ../core/basethread.h ../core/synchro.h -notifythread.o: templatesnotify.h ../../ezc/src/ezc.h -notifythread.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h -notifythread.o: ../../ezc/src/item.h ../../ezc/src/funinfo.h -notifythread.o: ../../ezc/src/functions.h ../../ezc/src/stringconv.h -notifythread.o: ../../pikotools/utf8/utf8.h ../core/textstream.h -notifythread.o: ../templates/misc.h ../templates/localefilter.h -notifythread.o: ../templates/locale.h ../templates/htmltextstream.h +notifythread.o: notifythread.h ../../winix/core/basethread.h +notifythread.o: ../../winix/core/synchro.h templatesnotify.h +notifythread.o: ../../ezc/src/ezc.h ../../ezc/src/generator.h +notifythread.o: ../../ezc/src/pattern.h ../../ezc/src/item.h +notifythread.o: ../../ezc/src/funinfo.h ../../ezc/src/functions.h +notifythread.o: ../../ezc/src/stringconv.h ../../pikotools/utf8/utf8.h +notifythread.o: ../../winix/core/textstream.h ../../winix/templates/misc.h +notifythread.o: ../../winix/templates/localefilter.h +notifythread.o: ../../winix/templates/locale.h +notifythread.o: ../../winix/templates/htmltextstream.h notifythread.o: ../../pikotools/space/space.h ../../pikotools/date/date.h notifythread.o: ../../pikotools/textstream/textstream.h notifythread.o: ../../pikotools/convert/convert.h notifythread.o: ../../pikotools/convert/inttostr.h notifythread.o: ../../pikotools/membuffer/membuffer.h notifythread.o: ../../pikotools/textstream/types.h notifypool.h -notifythread.o: ../templates/locale.h ../../pikotools/space/spaceparser.h +notifythread.o: ../../winix/templates/locale.h +notifythread.o: ../../pikotools/space/spaceparser.h notifythread.o: ../../pikotools/space/space.h -notifythread.o: ../../pikotools/textstream/types.h ../core/config.h -notifythread.o: ../core/htmlfilter.h ../core/users.h ../core/user.h -notifythread.o: ../core/ugcontainer.h ../core/log.h ../core/textstream.h -notifythread.o: ../core/logmanipulators.h ../core/slog.h ../core/cur.h -notifythread.o: ../core/request.h ../core/requesttypes.h ../core/error.h -notifythread.o: ../core/config.h ../templates/htmltextstream.h -notifythread.o: ../../pikotools/space/spacetojson.h ../core/session.h -notifythread.o: ../core/plugindata.h ../core/rebus.h ../core/ipban.h -notifythread.o: ../core/mount.h ../core/lastcontainer.h ../db/db.h -notifythread.o: ../db/dbbase.h ../db/dbconn.h ../db/dbtextstream.h -notifythread.o: ../core/error.h ../db/dbitemquery.h ../core/item.h -notifythread.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -notifythread.o: ../core/dircontainer.h ../core/ugcontainer.h -notifythread.o: ../templates/patterns.h +notifythread.o: ../../pikotools/textstream/types.h ../../winix/core/config.h +notifythread.o: ../../winix/core/htmlfilter.h ../../winix/core/users.h +notifythread.o: ../../winix/core/user.h ../../winix/core/ugcontainer.h +notifythread.o: ../../winix/core/log.h ../../winix/core/textstream.h +notifythread.o: ../../winix/core/logmanipulators.h ../../winix/core/slog.h +notifythread.o: ../../winix/core/cur.h ../../winix/core/request.h +notifythread.o: ../../winix/core/requesttypes.h ../../winix/core/error.h +notifythread.o: ../../winix/core/config.h +notifythread.o: ../../winix/templates/htmltextstream.h +notifythread.o: ../../pikotools/space/spacetojson.h +notifythread.o: ../../winix/core/session.h ../../winix/core/plugindata.h +notifythread.o: ../../winix/core/rebus.h ../../winix/core/ipban.h +notifythread.o: ../../winix/core/mount.h ../../winix/core/lastcontainer.h +notifythread.o: ../../winix/db/db.h ../../winix/db/dbbase.h +notifythread.o: ../../winix/db/dbconn.h ../../winix/db/dbtextstream.h +notifythread.o: ../../winix/core/error.h ../../winix/db/dbitemquery.h +notifythread.o: ../../winix/core/item.h ../../winix/db/dbitemcolumns.h +notifythread.o: ../../winix/core/user.h ../../winix/core/group.h +notifythread.o: ../../winix/core/dircontainer.h +notifythread.o: ../../winix/core/ugcontainer.h +notifythread.o: ../../winix/templates/patterns.h templatesnotify.o: templatesnotify.h ../../ezc/src/ezc.h templatesnotify.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h templatesnotify.o: ../../ezc/src/item.h ../../ezc/src/funinfo.h templatesnotify.o: ../../ezc/src/functions.h ../../ezc/src/stringconv.h -templatesnotify.o: ../../pikotools/utf8/utf8.h ../core/textstream.h -templatesnotify.o: ../templates/misc.h ../templates/localefilter.h -templatesnotify.o: ../templates/locale.h ../templates/htmltextstream.h +templatesnotify.o: ../../pikotools/utf8/utf8.h ../../winix/core/textstream.h +templatesnotify.o: ../../winix/templates/misc.h +templatesnotify.o: ../../winix/templates/localefilter.h +templatesnotify.o: ../../winix/templates/locale.h +templatesnotify.o: ../../winix/templates/htmltextstream.h templatesnotify.o: ../../pikotools/space/space.h ../../pikotools/date/date.h templatesnotify.o: ../../pikotools/textstream/textstream.h templatesnotify.o: ../../pikotools/convert/convert.h templatesnotify.o: ../../pikotools/convert/inttostr.h templatesnotify.o: ../../pikotools/membuffer/membuffer.h templatesnotify.o: ../../pikotools/textstream/types.h notifypool.h -templatesnotify.o: ../templates/locale.h ../../pikotools/space/spaceparser.h +templatesnotify.o: ../../winix/templates/locale.h +templatesnotify.o: ../../pikotools/space/spaceparser.h templatesnotify.o: ../../pikotools/space/space.h -templatesnotify.o: ../../pikotools/textstream/types.h ../core/plugin.h -templatesnotify.o: ../core/pluginmsg.h ../core/log.h ../core/textstream.h -templatesnotify.o: ../core/logmanipulators.h ../core/slog.h ../core/cur.h -templatesnotify.o: ../core/request.h ../core/requesttypes.h ../core/error.h -templatesnotify.o: ../core/config.h ../templates/htmltextstream.h -templatesnotify.o: ../../pikotools/space/spacetojson.h ../core/session.h -templatesnotify.o: ../core/user.h ../core/plugindata.h ../core/rebus.h -templatesnotify.o: ../core/ipban.h ../core/mount.h ../core/system.h -templatesnotify.o: ../core/sessionmanager.h ../core/synchro.h -templatesnotify.o: ../functions/functions.h ../functions/functionbase.h -templatesnotify.o: ../core/item.h ../db/db.h ../db/dbbase.h ../db/dbconn.h -templatesnotify.o: ../db/dbtextstream.h ../core/error.h ../db/dbitemquery.h -templatesnotify.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -templatesnotify.o: ../core/dircontainer.h ../core/ugcontainer.h -templatesnotify.o: ../core/request.h ../core/config.h ../core/htmlfilter.h -templatesnotify.o: ../core/system.h ../core/job.h ../core/basethread.h -templatesnotify.o: ../core/dirs.h ../core/dircontainer.h ../notify/notify.h -templatesnotify.o: ../core/mounts.h ../core/mountparser.h ../core/crypt.h -templatesnotify.o: ../core/run.h ../core/users.h ../core/groups.h -templatesnotify.o: ../core/group.h ../core/ugcontainer.h ../core/loadavg.h -templatesnotify.o: ../core/image.h ../core/threadmanager.h -templatesnotify.o: ../core/timezones.h ../core/timezone.h ../core/synchro.h -templatesnotify.o: ../functions/functionparser.h ../core/cur.h -templatesnotify.o: ../functions/account.h ../functions/adduser.h -templatesnotify.o: ../functions/cat.h ../functions/chmod.h -templatesnotify.o: ../functions/privchanger.h ../functions/chown.h -templatesnotify.o: ../functions/ckeditor.h ../functions/cp.h -templatesnotify.o: ../functions/default.h ../functions/download.h -templatesnotify.o: ../functions/emacs.h ../functions/env.h -templatesnotify.o: ../functions/imgcrop.h ../functions/last.h -templatesnotify.o: ../functions/login.h ../functions/logout.h -templatesnotify.o: ../functions/ln.h ../functions/ls.h ../functions/man.h -templatesnotify.o: ../functions/meta.h ../functions/mkdir.h ../functions/mv.h -templatesnotify.o: ../functions/nicedit.h ../functions/node.h -templatesnotify.o: ../functions/passwd.h ../functions/priv.h -templatesnotify.o: ../functions/pw.h ../functions/reload.h ../functions/rm.h -templatesnotify.o: ../functions/rmuser.h ../functions/sort.h -templatesnotify.o: ../functions/specialdefault.h ../functions/stat.h -templatesnotify.o: ../functions/subject.h ../functions/template.h -templatesnotify.o: ../functions/tinymce.h ../functions/uname.h -templatesnotify.o: ../functions/upload.h ../functions/uptime.h -templatesnotify.o: ../functions/who.h ../functions/vim.h ../core/htmlfilter.h -templatesnotify.o: ../templates/templates.h ../templates/patterncacher.h -templatesnotify.o: ../templates/indexpatterns.h ../templates/patterns.h -templatesnotify.o: ../templates/changepatterns.h ../core/sessionmanager.h -templatesnotify.o: ../core/sessioncontainer.h ../core/ipbancontainer.h -templatesnotify.o: ../core/lastcontainer.h ../core/misc.h +templatesnotify.o: ../../pikotools/textstream/types.h +templatesnotify.o: ../../winix/core/plugin.h ../../winix/core/pluginmsg.h +templatesnotify.o: ../../winix/core/log.h ../../winix/core/textstream.h +templatesnotify.o: ../../winix/core/logmanipulators.h ../../winix/core/slog.h +templatesnotify.o: ../../winix/core/cur.h ../../winix/core/request.h +templatesnotify.o: ../../winix/core/requesttypes.h ../../winix/core/error.h +templatesnotify.o: ../../winix/core/config.h +templatesnotify.o: ../../winix/templates/htmltextstream.h +templatesnotify.o: ../../pikotools/space/spacetojson.h +templatesnotify.o: ../../winix/core/session.h ../../winix/core/user.h +templatesnotify.o: ../../winix/core/plugindata.h ../../winix/core/rebus.h +templatesnotify.o: ../../winix/core/ipban.h ../../winix/core/mount.h +templatesnotify.o: ../../winix/core/system.h +templatesnotify.o: ../../winix/core/sessionmanager.h +templatesnotify.o: ../../winix/core/synchro.h +templatesnotify.o: ../../winix/functions/functions.h +templatesnotify.o: ../../winix/functions/functionbase.h +templatesnotify.o: ../../winix/core/item.h ../../winix/db/db.h +templatesnotify.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +templatesnotify.o: ../../winix/db/dbtextstream.h ../../winix/core/error.h +templatesnotify.o: ../../winix/db/dbitemquery.h +templatesnotify.o: ../../winix/db/dbitemcolumns.h ../../winix/core/user.h +templatesnotify.o: ../../winix/core/group.h ../../winix/core/dircontainer.h +templatesnotify.o: ../../winix/core/ugcontainer.h ../../winix/core/request.h +templatesnotify.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h +templatesnotify.o: ../../winix/core/system.h ../../winix/core/job.h +templatesnotify.o: ../../winix/core/basethread.h ../../winix/core/dirs.h +templatesnotify.o: ../../winix/core/dircontainer.h +templatesnotify.o: ../../winix/notify/notify.h ../../winix/core/mounts.h +templatesnotify.o: ../../winix/core/mountparser.h ../../winix/core/crypt.h +templatesnotify.o: ../../winix/core/run.h ../../winix/core/users.h +templatesnotify.o: ../../winix/core/groups.h ../../winix/core/group.h +templatesnotify.o: ../../winix/core/ugcontainer.h ../../winix/core/loadavg.h +templatesnotify.o: ../../winix/core/image.h ../../winix/core/threadmanager.h +templatesnotify.o: ../../winix/core/timezones.h ../../winix/core/timezone.h +templatesnotify.o: ../../winix/core/synchro.h +templatesnotify.o: ../../winix/functions/functionparser.h +templatesnotify.o: ../../winix/core/cur.h ../../winix/functions/account.h +templatesnotify.o: ../../winix/functions/adduser.h +templatesnotify.o: ../../winix/functions/cat.h ../../winix/functions/chmod.h +templatesnotify.o: ../../winix/functions/privchanger.h +templatesnotify.o: ../../winix/functions/chown.h +templatesnotify.o: ../../winix/functions/ckeditor.h +templatesnotify.o: ../../winix/functions/cp.h ../../winix/functions/default.h +templatesnotify.o: ../../winix/functions/download.h +templatesnotify.o: ../../winix/functions/emacs.h ../../winix/functions/env.h +templatesnotify.o: ../../winix/functions/imgcrop.h +templatesnotify.o: ../../winix/functions/last.h ../../winix/functions/login.h +templatesnotify.o: ../../winix/functions/logout.h ../../winix/functions/ln.h +templatesnotify.o: ../../winix/functions/ls.h ../../winix/functions/man.h +templatesnotify.o: ../../winix/functions/meta.h ../../winix/functions/mkdir.h +templatesnotify.o: ../../winix/functions/mv.h ../../winix/functions/nicedit.h +templatesnotify.o: ../../winix/functions/node.h +templatesnotify.o: ../../winix/functions/passwd.h +templatesnotify.o: ../../winix/functions/priv.h ../../winix/functions/pw.h +templatesnotify.o: ../../winix/functions/reload.h ../../winix/functions/rm.h +templatesnotify.o: ../../winix/functions/rmuser.h +templatesnotify.o: ../../winix/functions/sort.h +templatesnotify.o: ../../winix/functions/specialdefault.h +templatesnotify.o: ../../winix/functions/stat.h +templatesnotify.o: ../../winix/functions/subject.h +templatesnotify.o: ../../winix/functions/template.h +templatesnotify.o: ../../winix/functions/tinymce.h +templatesnotify.o: ../../winix/functions/uname.h +templatesnotify.o: ../../winix/functions/upload.h +templatesnotify.o: ../../winix/functions/uptime.h ../../winix/functions/who.h +templatesnotify.o: ../../winix/functions/vim.h ../../winix/core/htmlfilter.h +templatesnotify.o: ../../winix/templates/templates.h +templatesnotify.o: ../../winix/templates/patterncacher.h +templatesnotify.o: ../../winix/templates/indexpatterns.h +templatesnotify.o: ../../winix/templates/patterns.h +templatesnotify.o: ../../winix/templates/changepatterns.h +templatesnotify.o: ../../winix/core/sessionmanager.h +templatesnotify.o: ../../winix/core/sessioncontainer.h +templatesnotify.o: ../../winix/core/ipbancontainer.h +templatesnotify.o: ../../winix/core/lastcontainer.h ../../winix/core/misc.h diff --git a/plugins/export/Makefile b/plugins/export/Makefile index c081469..ff7d37a 100755 --- a/plugins/export/Makefile +++ b/plugins/export/Makefile @@ -6,22 +6,23 @@ name = export.so all: $(name) $(name): $(o) - $(CXX) -shared -Wl,-soname,$(name).so -o $(name) $(CXXFLAGS) $(LDFLAGS) *.o -lcurl + $(CXX) -shared -Wl,-soname,$(name) -o $(name) $(CXXFLAGS) $(CXXWINIXINCLUDEFLAGS) $(LDFLAGS) *.o -lcurl %.o: %.cpp - $(CXX) -c $(CXXFLAGS) $< + $(CXX) -c $(CXXFLAGS) $(CXXWINIXINCLUDEFLAGS) $< depend: - makedepend -Y. -I../.. -I../../../ezc/src -I../../../pikotools -I../../../tito/src -f- *.cpp > Makefile.dep + makedepend -Y. $(CXXWINIXINCLUDEFLAGS) -f- *.cpp > Makefile.dep echo -n "o = " > Makefile.o.dep ls -1 *.cpp | xargs -I foo echo -n foo " " | sed -E "s/([^\.]*)\.cpp[ ]/\1\.o/g" >> Makefile.o.dep clean: rm -f *.o + rm -f *.so rm -f $(name) include Makefile.dep diff --git a/plugins/export/Makefile.dep b/plugins/export/Makefile.dep index da851eb..28355ef 100755 --- a/plugins/export/Makefile.dep +++ b/plugins/export/Makefile.dep @@ -1,194 +1,253 @@ # DO NOT DELETE -edb.o: edb.h ../../db/dbbase.h ../../db/dbconn.h ../../db/dbtextstream.h -edb.o: ../../core/textstream.h ../../core/misc.h ../../core/item.h +edb.o: edb.h ../../../winix/db/dbbase.h ../../../winix/db/dbconn.h +edb.o: ../../../winix/db/dbtextstream.h ../../../winix/core/textstream.h +edb.o: ../../../winix/core/misc.h ../../../winix/core/item.h edb.o: ../../../pikotools/space/space.h ../../../pikotools/textstream/types.h -edb.o: ../../../pikotools/date/date.h ../../core/requesttypes.h +edb.o: ../../../pikotools/date/date.h ../../../winix/core/requesttypes.h edb.o: ../../../pikotools/textstream/textstream.h edb.o: ../../../pikotools/convert/convert.h edb.o: ../../../pikotools/convert/inttostr.h edb.o: ../../../pikotools/membuffer/membuffer.h edb.o: ../../../pikotools/textstream/types.h ../../../pikotools/utf8/utf8.h -edb.o: ../../core/error.h ../../../pikotools/space/spaceparser.h -edb.o: ../../../pikotools/space/space.h export.h ../../core/dirs.h -edb.o: ../../core/dircontainer.h ../../db/db.h ../../db/dbbase.h -edb.o: ../../db/dbitemquery.h ../../core/item.h ../../db/dbitemcolumns.h -edb.o: ../../core/user.h ../../core/group.h ../../core/dircontainer.h -edb.o: ../../core/ugcontainer.h ../../core/log.h ../../core/textstream.h -edb.o: ../../core/logmanipulators.h ../../core/slog.h ../../core/cur.h -edb.o: ../../core/request.h ../../core/error.h ../../core/config.h -edb.o: ../../core/htmlfilter.h ../../templates/htmltextstream.h -edb.o: ../../../pikotools/space/spacetojson.h ../../core/session.h -edb.o: ../../core/user.h ../../core/plugindata.h ../../core/rebus.h -edb.o: ../../core/ipban.h ../../core/mount.h ../../templates/locale.h -edb.o: ../../notify/notify.h ../../notify/notifypool.h -edb.o: ../../templates/patterns.h ../../templates/locale.h -edb.o: ../../templates/localefilter.h ../../../ezc/src/ezc.h +edb.o: ../../../winix/core/error.h ../../../pikotools/space/spaceparser.h +edb.o: ../../../pikotools/space/space.h export.h ../../../winix/core/dirs.h +edb.o: ../../../winix/core/dircontainer.h ../../../winix/db/db.h +edb.o: ../../../winix/db/dbbase.h ../../../winix/db/dbitemquery.h +edb.o: ../../../winix/core/item.h ../../../winix/db/dbitemcolumns.h +edb.o: ../../../winix/core/user.h ../../../winix/core/group.h +edb.o: ../../../winix/core/dircontainer.h ../../../winix/core/ugcontainer.h +edb.o: ../../../winix/core/log.h ../../../winix/core/textstream.h +edb.o: ../../../winix/core/logmanipulators.h ../../../winix/core/slog.h +edb.o: ../../../winix/core/cur.h ../../../winix/core/request.h +edb.o: ../../../winix/core/error.h ../../../winix/core/config.h +edb.o: ../../../winix/core/htmlfilter.h +edb.o: ../../../winix/templates/htmltextstream.h +edb.o: ../../../pikotools/space/spacetojson.h ../../../winix/core/session.h +edb.o: ../../../winix/core/user.h ../../../winix/core/plugindata.h +edb.o: ../../../winix/core/rebus.h ../../../winix/core/ipban.h +edb.o: ../../../winix/core/mount.h ../../../winix/templates/locale.h +edb.o: ../../../winix/notify/notify.h ../../../winix/notify/notifypool.h +edb.o: ../../../winix/templates/patterns.h ../../../winix/templates/locale.h +edb.o: ../../../winix/templates/localefilter.h ../../../ezc/src/ezc.h edb.o: ../../../ezc/src/generator.h ../../../ezc/src/pattern.h edb.o: ../../../ezc/src/functions.h ../../../ezc/src/funinfo.h -edb.o: ../../../ezc/src/stringconv.h ../../notify/notifythread.h -edb.o: ../../core/basethread.h ../../core/synchro.h -edb.o: ../../notify/templatesnotify.h ../../core/config.h ../../core/users.h -edb.o: ../../core/ugcontainer.h ../../core/lastcontainer.h ../../core/log.h -exportinfo.o: ../../core/log.h exportinfo.h ../../core/system.h -exportinfo.o: ../../core/job.h ../../core/basethread.h ../../core/synchro.h +edb.o: ../../../ezc/src/stringconv.h ../../../winix/notify/notifythread.h +edb.o: ../../../winix/core/basethread.h ../../../winix/core/synchro.h +edb.o: ../../../winix/notify/templatesnotify.h ../../../winix/core/config.h +edb.o: ../../../winix/core/users.h ../../../winix/core/ugcontainer.h +edb.o: ../../../winix/core/lastcontainer.h ../../../winix/core/log.h +exportinfo.o: ../../../winix/core/log.h exportinfo.h +exportinfo.o: ../../../winix/core/system.h ../../../winix/core/job.h +exportinfo.o: ../../../winix/core/basethread.h ../../../winix/core/synchro.h exportinfo.o: ../../../pikotools/space/space.h -exportinfo.o: ../../../pikotools/textstream/types.h ../../core/dirs.h -exportinfo.o: ../../core/item.h ../../../pikotools/date/date.h -exportinfo.o: ../../core/dircontainer.h ../../db/db.h ../../db/dbbase.h -exportinfo.o: ../../db/dbitemquery.h ../../core/item.h -exportinfo.o: ../../db/dbitemcolumns.h ../../core/user.h ../../core/group.h -exportinfo.o: ../../core/dircontainer.h ../../core/ugcontainer.h -exportinfo.o: ../../core/log.h ../../core/textstream.h -exportinfo.o: ../../core/logmanipulators.h +exportinfo.o: ../../../pikotools/textstream/types.h +exportinfo.o: ../../../winix/core/dirs.h ../../../winix/core/item.h +exportinfo.o: ../../../pikotools/date/date.h +exportinfo.o: ../../../winix/core/dircontainer.h ../../../winix/db/db.h +exportinfo.o: ../../../winix/db/dbbase.h ../../../winix/db/dbitemquery.h +exportinfo.o: ../../../winix/core/item.h ../../../winix/db/dbitemcolumns.h +exportinfo.o: ../../../winix/core/user.h ../../../winix/core/group.h +exportinfo.o: ../../../winix/core/dircontainer.h +exportinfo.o: ../../../winix/core/ugcontainer.h ../../../winix/core/log.h +exportinfo.o: ../../../winix/core/textstream.h +exportinfo.o: ../../../winix/core/logmanipulators.h exportinfo.o: ../../../pikotools/textstream/textstream.h exportinfo.o: ../../../pikotools/convert/convert.h exportinfo.o: ../../../pikotools/convert/inttostr.h exportinfo.o: ../../../pikotools/membuffer/membuffer.h -exportinfo.o: ../../../pikotools/textstream/types.h ../../core/slog.h -exportinfo.o: ../../core/cur.h ../../core/request.h ../../core/requesttypes.h -exportinfo.o: ../../core/error.h ../../core/config.h +exportinfo.o: ../../../pikotools/textstream/types.h +exportinfo.o: ../../../winix/core/slog.h ../../../winix/core/cur.h +exportinfo.o: ../../../winix/core/request.h +exportinfo.o: ../../../winix/core/requesttypes.h ../../../winix/core/error.h +exportinfo.o: ../../../winix/core/config.h exportinfo.o: ../../../pikotools/space/spaceparser.h -exportinfo.o: ../../../pikotools/space/space.h ../../core/htmlfilter.h -exportinfo.o: ../../templates/htmltextstream.h ../../core/textstream.h -exportinfo.o: ../../core/misc.h ../../../pikotools/utf8/utf8.h -exportinfo.o: ../../../pikotools/space/spacetojson.h ../../core/session.h -exportinfo.o: ../../core/user.h ../../core/plugindata.h ../../core/rebus.h -exportinfo.o: ../../core/ipban.h ../../core/mount.h ../../templates/locale.h -exportinfo.o: ../../notify/notify.h ../../notify/notifypool.h -exportinfo.o: ../../templates/patterns.h ../../templates/locale.h -exportinfo.o: ../../templates/localefilter.h ../../../ezc/src/ezc.h +exportinfo.o: ../../../pikotools/space/space.h +exportinfo.o: ../../../winix/core/htmlfilter.h +exportinfo.o: ../../../winix/templates/htmltextstream.h +exportinfo.o: ../../../winix/core/textstream.h ../../../winix/core/misc.h +exportinfo.o: ../../../pikotools/utf8/utf8.h +exportinfo.o: ../../../pikotools/space/spacetojson.h +exportinfo.o: ../../../winix/core/session.h ../../../winix/core/user.h +exportinfo.o: ../../../winix/core/plugindata.h ../../../winix/core/rebus.h +exportinfo.o: ../../../winix/core/ipban.h ../../../winix/core/mount.h +exportinfo.o: ../../../winix/templates/locale.h +exportinfo.o: ../../../winix/notify/notify.h +exportinfo.o: ../../../winix/notify/notifypool.h +exportinfo.o: ../../../winix/templates/patterns.h +exportinfo.o: ../../../winix/templates/locale.h +exportinfo.o: ../../../winix/templates/localefilter.h ../../../ezc/src/ezc.h exportinfo.o: ../../../ezc/src/generator.h ../../../ezc/src/pattern.h exportinfo.o: ../../../ezc/src/functions.h ../../../ezc/src/funinfo.h -exportinfo.o: ../../../ezc/src/stringconv.h ../../notify/notifythread.h -exportinfo.o: ../../core/basethread.h ../../notify/templatesnotify.h -exportinfo.o: ../../core/config.h ../../core/users.h ../../core/ugcontainer.h -exportinfo.o: ../../core/lastcontainer.h ../../core/mounts.h -exportinfo.o: ../../core/mountparser.h ../../core/crypt.h ../../core/run.h -exportinfo.o: ../../core/users.h ../../core/groups.h ../../core/group.h -exportinfo.o: ../../core/loadavg.h ../../core/image.h -exportinfo.o: ../../core/threadmanager.h ../../core/timezones.h -exportinfo.o: ../../core/timezone.h export.h edb.h ../../db/dbbase.h -exportinfo.o: ../../db/dbconn.h ../../db/dbtextstream.h ../../core/error.h -exportinfo.o: ../../core/dirs.h message.h exportthread.h -exportthread.o: exportthread.h ../../core/basethread.h ../../core/synchro.h -exportthread.o: message.h ../../core/log.h ../../core/misc.h -exportthread.o: ../../core/item.h ../../../pikotools/space/space.h +exportinfo.o: ../../../ezc/src/stringconv.h +exportinfo.o: ../../../winix/notify/notifythread.h +exportinfo.o: ../../../winix/core/basethread.h +exportinfo.o: ../../../winix/notify/templatesnotify.h +exportinfo.o: ../../../winix/core/config.h ../../../winix/core/users.h +exportinfo.o: ../../../winix/core/ugcontainer.h +exportinfo.o: ../../../winix/core/lastcontainer.h +exportinfo.o: ../../../winix/core/mounts.h ../../../winix/core/mountparser.h +exportinfo.o: ../../../winix/core/crypt.h ../../../winix/core/run.h +exportinfo.o: ../../../winix/core/users.h ../../../winix/core/groups.h +exportinfo.o: ../../../winix/core/group.h ../../../winix/core/loadavg.h +exportinfo.o: ../../../winix/core/image.h ../../../winix/core/threadmanager.h +exportinfo.o: ../../../winix/core/timezones.h ../../../winix/core/timezone.h +exportinfo.o: export.h edb.h ../../../winix/db/dbbase.h +exportinfo.o: ../../../winix/db/dbconn.h ../../../winix/db/dbtextstream.h +exportinfo.o: ../../../winix/core/error.h ../../../winix/core/dirs.h +exportinfo.o: message.h exportthread.h +exportthread.o: exportthread.h ../../../winix/core/basethread.h +exportthread.o: ../../../winix/core/synchro.h message.h +exportthread.o: ../../../winix/core/log.h ../../../winix/core/misc.h +exportthread.o: ../../../winix/core/item.h ../../../pikotools/space/space.h exportthread.o: ../../../pikotools/textstream/types.h -exportthread.o: ../../../pikotools/date/date.h ../../core/requesttypes.h +exportthread.o: ../../../pikotools/date/date.h +exportthread.o: ../../../winix/core/requesttypes.h exportthread.o: ../../../pikotools/textstream/textstream.h exportthread.o: ../../../pikotools/convert/convert.h exportthread.o: ../../../pikotools/convert/inttostr.h exportthread.o: ../../../pikotools/membuffer/membuffer.h exportthread.o: ../../../pikotools/textstream/types.h exportthread.o: ../../../pikotools/utf8/utf8.h -funexport.o: funexport.h ../../functions/functionbase.h ../../core/item.h -funexport.o: ../../db/db.h ../../db/dbbase.h ../../db/dbitemquery.h -funexport.o: ../../db/dbitemcolumns.h ../../core/user.h +funexport.o: funexport.h ../../../winix/functions/functionbase.h +funexport.o: ../../../winix/core/item.h ../../../winix/db/db.h +funexport.o: ../../../winix/db/dbbase.h ../../../winix/db/dbitemquery.h +funexport.o: ../../../winix/db/dbitemcolumns.h ../../../winix/core/user.h funexport.o: ../../../pikotools/space/space.h funexport.o: ../../../pikotools/textstream/types.h -funexport.o: ../../../pikotools/date/date.h ../../core/group.h -funexport.o: ../../core/dircontainer.h ../../core/ugcontainer.h -funexport.o: ../../core/log.h ../../core/textstream.h -funexport.o: ../../core/logmanipulators.h +funexport.o: ../../../pikotools/date/date.h ../../../winix/core/group.h +funexport.o: ../../../winix/core/dircontainer.h +funexport.o: ../../../winix/core/ugcontainer.h ../../../winix/core/log.h +funexport.o: ../../../winix/core/textstream.h +funexport.o: ../../../winix/core/logmanipulators.h funexport.o: ../../../pikotools/textstream/textstream.h funexport.o: ../../../pikotools/convert/convert.h funexport.o: ../../../pikotools/convert/inttostr.h funexport.o: ../../../pikotools/membuffer/membuffer.h -funexport.o: ../../../pikotools/textstream/types.h ../../core/slog.h -funexport.o: ../../core/cur.h ../../core/request.h ../../core/requesttypes.h -funexport.o: ../../core/item.h ../../core/error.h ../../core/config.h +funexport.o: ../../../pikotools/textstream/types.h ../../../winix/core/slog.h +funexport.o: ../../../winix/core/cur.h ../../../winix/core/request.h +funexport.o: ../../../winix/core/requesttypes.h ../../../winix/core/item.h +funexport.o: ../../../winix/core/error.h ../../../winix/core/config.h funexport.o: ../../../pikotools/space/spaceparser.h -funexport.o: ../../../pikotools/space/space.h ../../core/htmlfilter.h -funexport.o: ../../templates/htmltextstream.h ../../core/textstream.h -funexport.o: ../../core/misc.h ../../../pikotools/utf8/utf8.h -funexport.o: ../../../pikotools/space/spacetojson.h ../../core/session.h -funexport.o: ../../core/user.h ../../core/plugindata.h ../../core/rebus.h -funexport.o: ../../core/ipban.h ../../core/mount.h ../../templates/locale.h -funexport.o: ../../core/request.h ../../core/config.h ../../core/system.h -funexport.o: ../../core/job.h ../../core/basethread.h ../../core/synchro.h -funexport.o: ../../core/dirs.h ../../core/dircontainer.h -funexport.o: ../../notify/notify.h ../../notify/notifypool.h -funexport.o: ../../templates/patterns.h ../../templates/locale.h -funexport.o: ../../templates/localefilter.h ../../../ezc/src/ezc.h +funexport.o: ../../../pikotools/space/space.h +funexport.o: ../../../winix/core/htmlfilter.h +funexport.o: ../../../winix/templates/htmltextstream.h +funexport.o: ../../../winix/core/textstream.h ../../../winix/core/misc.h +funexport.o: ../../../pikotools/utf8/utf8.h +funexport.o: ../../../pikotools/space/spacetojson.h +funexport.o: ../../../winix/core/session.h ../../../winix/core/user.h +funexport.o: ../../../winix/core/plugindata.h ../../../winix/core/rebus.h +funexport.o: ../../../winix/core/ipban.h ../../../winix/core/mount.h +funexport.o: ../../../winix/templates/locale.h ../../../winix/core/request.h +funexport.o: ../../../winix/core/config.h ../../../winix/core/system.h +funexport.o: ../../../winix/core/job.h ../../../winix/core/basethread.h +funexport.o: ../../../winix/core/synchro.h ../../../winix/core/dirs.h +funexport.o: ../../../winix/core/dircontainer.h +funexport.o: ../../../winix/notify/notify.h +funexport.o: ../../../winix/notify/notifypool.h +funexport.o: ../../../winix/templates/patterns.h +funexport.o: ../../../winix/templates/locale.h +funexport.o: ../../../winix/templates/localefilter.h ../../../ezc/src/ezc.h funexport.o: ../../../ezc/src/generator.h ../../../ezc/src/pattern.h funexport.o: ../../../ezc/src/functions.h ../../../ezc/src/funinfo.h -funexport.o: ../../../ezc/src/stringconv.h ../../notify/notifythread.h -funexport.o: ../../core/basethread.h ../../notify/templatesnotify.h -funexport.o: ../../core/users.h ../../core/ugcontainer.h -funexport.o: ../../core/lastcontainer.h ../../core/mounts.h -funexport.o: ../../core/mountparser.h ../../core/crypt.h ../../core/run.h -funexport.o: ../../core/users.h ../../core/groups.h ../../core/group.h -funexport.o: ../../core/loadavg.h ../../core/image.h -funexport.o: ../../core/threadmanager.h ../../core/timezones.h -funexport.o: ../../core/timezone.h ../../core/synchro.h exportinfo.h export.h -funexport.o: edb.h ../../db/dbbase.h ../../db/dbconn.h -funexport.o: ../../db/dbtextstream.h ../../core/error.h ../../core/dirs.h -funexport.o: message.h exportthread.h -init.o: ../../core/log.h ../../core/plugin.h ../../core/pluginmsg.h -init.o: ../../core/log.h ../../core/textstream.h ../../core/logmanipulators.h +funexport.o: ../../../ezc/src/stringconv.h +funexport.o: ../../../winix/notify/notifythread.h +funexport.o: ../../../winix/core/basethread.h +funexport.o: ../../../winix/notify/templatesnotify.h +funexport.o: ../../../winix/core/users.h ../../../winix/core/ugcontainer.h +funexport.o: ../../../winix/core/lastcontainer.h ../../../winix/core/mounts.h +funexport.o: ../../../winix/core/mountparser.h ../../../winix/core/crypt.h +funexport.o: ../../../winix/core/run.h ../../../winix/core/users.h +funexport.o: ../../../winix/core/groups.h ../../../winix/core/group.h +funexport.o: ../../../winix/core/loadavg.h ../../../winix/core/image.h +funexport.o: ../../../winix/core/threadmanager.h +funexport.o: ../../../winix/core/timezones.h ../../../winix/core/timezone.h +funexport.o: ../../../winix/core/synchro.h exportinfo.h export.h edb.h +funexport.o: ../../../winix/db/dbbase.h ../../../winix/db/dbconn.h +funexport.o: ../../../winix/db/dbtextstream.h ../../../winix/core/error.h +funexport.o: ../../../winix/core/dirs.h message.h exportthread.h +init.o: ../../../winix/core/log.h ../../../winix/core/plugin.h +init.o: ../../../winix/core/pluginmsg.h ../../../winix/core/log.h +init.o: ../../../winix/core/textstream.h +init.o: ../../../winix/core/logmanipulators.h init.o: ../../../pikotools/textstream/textstream.h init.o: ../../../pikotools/space/space.h init.o: ../../../pikotools/textstream/types.h ../../../pikotools/date/date.h init.o: ../../../pikotools/convert/convert.h init.o: ../../../pikotools/convert/inttostr.h init.o: ../../../pikotools/membuffer/membuffer.h -init.o: ../../../pikotools/textstream/types.h ../../core/slog.h -init.o: ../../core/cur.h ../../core/request.h ../../core/requesttypes.h -init.o: ../../core/item.h ../../core/error.h ../../core/config.h +init.o: ../../../pikotools/textstream/types.h ../../../winix/core/slog.h +init.o: ../../../winix/core/cur.h ../../../winix/core/request.h +init.o: ../../../winix/core/requesttypes.h ../../../winix/core/item.h +init.o: ../../../winix/core/error.h ../../../winix/core/config.h init.o: ../../../pikotools/space/spaceparser.h -init.o: ../../../pikotools/space/space.h ../../core/htmlfilter.h -init.o: ../../templates/htmltextstream.h ../../core/textstream.h -init.o: ../../core/misc.h ../../../pikotools/utf8/utf8.h -init.o: ../../../pikotools/space/spacetojson.h ../../core/session.h -init.o: ../../core/user.h ../../core/plugindata.h ../../core/rebus.h -init.o: ../../core/ipban.h ../../core/mount.h ../../templates/locale.h -init.o: ../../core/system.h ../../core/job.h ../../core/basethread.h -init.o: ../../core/synchro.h ../../core/dirs.h ../../core/dircontainer.h -init.o: ../../db/db.h ../../db/dbbase.h ../../db/dbitemquery.h -init.o: ../../core/item.h ../../db/dbitemcolumns.h ../../core/user.h -init.o: ../../core/group.h ../../core/dircontainer.h ../../core/ugcontainer.h -init.o: ../../notify/notify.h ../../notify/notifypool.h -init.o: ../../templates/patterns.h ../../templates/locale.h -init.o: ../../templates/localefilter.h ../../../ezc/src/ezc.h +init.o: ../../../pikotools/space/space.h ../../../winix/core/htmlfilter.h +init.o: ../../../winix/templates/htmltextstream.h +init.o: ../../../winix/core/textstream.h ../../../winix/core/misc.h +init.o: ../../../pikotools/utf8/utf8.h ../../../pikotools/space/spacetojson.h +init.o: ../../../winix/core/session.h ../../../winix/core/user.h +init.o: ../../../winix/core/plugindata.h ../../../winix/core/rebus.h +init.o: ../../../winix/core/ipban.h ../../../winix/core/mount.h +init.o: ../../../winix/templates/locale.h ../../../winix/core/system.h +init.o: ../../../winix/core/job.h ../../../winix/core/basethread.h +init.o: ../../../winix/core/synchro.h ../../../winix/core/dirs.h +init.o: ../../../winix/core/dircontainer.h ../../../winix/db/db.h +init.o: ../../../winix/db/dbbase.h ../../../winix/db/dbitemquery.h +init.o: ../../../winix/core/item.h ../../../winix/db/dbitemcolumns.h +init.o: ../../../winix/core/user.h ../../../winix/core/group.h +init.o: ../../../winix/core/dircontainer.h ../../../winix/core/ugcontainer.h +init.o: ../../../winix/notify/notify.h ../../../winix/notify/notifypool.h +init.o: ../../../winix/templates/patterns.h ../../../winix/templates/locale.h +init.o: ../../../winix/templates/localefilter.h ../../../ezc/src/ezc.h init.o: ../../../ezc/src/generator.h ../../../ezc/src/pattern.h init.o: ../../../ezc/src/functions.h ../../../ezc/src/funinfo.h -init.o: ../../../ezc/src/stringconv.h ../../notify/notifythread.h -init.o: ../../core/basethread.h ../../notify/templatesnotify.h -init.o: ../../core/config.h ../../core/users.h ../../core/ugcontainer.h -init.o: ../../core/lastcontainer.h ../../core/mounts.h -init.o: ../../core/mountparser.h ../../core/crypt.h ../../core/run.h -init.o: ../../core/users.h ../../core/groups.h ../../core/group.h -init.o: ../../core/loadavg.h ../../core/image.h ../../core/threadmanager.h -init.o: ../../core/timezones.h ../../core/timezone.h -init.o: ../../core/sessionmanager.h ../../core/sessioncontainer.h -init.o: ../../core/ipbancontainer.h ../../functions/functions.h -init.o: ../../functions/functionbase.h ../../core/request.h -init.o: ../../core/system.h ../../core/synchro.h -init.o: ../../functions/functionparser.h ../../core/cur.h -init.o: ../../functions/account.h ../../functions/adduser.h -init.o: ../../functions/cat.h ../../functions/chmod.h -init.o: ../../functions/privchanger.h ../../functions/chown.h -init.o: ../../functions/ckeditor.h ../../functions/cp.h -init.o: ../../functions/default.h ../../functions/download.h -init.o: ../../functions/emacs.h ../../functions/env.h -init.o: ../../functions/imgcrop.h ../../functions/last.h -init.o: ../../functions/login.h ../../functions/logout.h ../../functions/ln.h -init.o: ../../functions/ls.h ../../functions/man.h ../../functions/meta.h -init.o: ../../functions/mkdir.h ../../functions/mv.h -init.o: ../../functions/nicedit.h ../../functions/node.h -init.o: ../../functions/passwd.h ../../functions/priv.h ../../functions/pw.h -init.o: ../../functions/reload.h ../../functions/rm.h -init.o: ../../functions/rmuser.h ../../functions/sort.h -init.o: ../../functions/specialdefault.h ../../functions/stat.h -init.o: ../../functions/subject.h ../../functions/template.h -init.o: ../../functions/tinymce.h ../../functions/uname.h -init.o: ../../functions/upload.h ../../functions/uptime.h -init.o: ../../functions/who.h ../../functions/vim.h ../../core/htmlfilter.h -init.o: ../../templates/templates.h ../../templates/patterncacher.h -init.o: ../../templates/indexpatterns.h ../../templates/patterns.h -init.o: ../../templates/changepatterns.h ../../templates/htmltextstream.h -init.o: ../../core/sessionmanager.h exportthread.h message.h exportinfo.h -init.o: export.h edb.h ../../db/dbbase.h ../../db/dbconn.h -init.o: ../../db/dbtextstream.h ../../core/error.h ../../core/dirs.h -init.o: funexport.h ../../functions/functionbase.h +init.o: ../../../ezc/src/stringconv.h ../../../winix/notify/notifythread.h +init.o: ../../../winix/core/basethread.h +init.o: ../../../winix/notify/templatesnotify.h ../../../winix/core/config.h +init.o: ../../../winix/core/users.h ../../../winix/core/ugcontainer.h +init.o: ../../../winix/core/lastcontainer.h ../../../winix/core/mounts.h +init.o: ../../../winix/core/mountparser.h ../../../winix/core/crypt.h +init.o: ../../../winix/core/run.h ../../../winix/core/users.h +init.o: ../../../winix/core/groups.h ../../../winix/core/group.h +init.o: ../../../winix/core/loadavg.h ../../../winix/core/image.h +init.o: ../../../winix/core/threadmanager.h ../../../winix/core/timezones.h +init.o: ../../../winix/core/timezone.h ../../../winix/core/sessionmanager.h +init.o: ../../../winix/core/sessioncontainer.h +init.o: ../../../winix/core/ipbancontainer.h +init.o: ../../../winix/functions/functions.h +init.o: ../../../winix/functions/functionbase.h ../../../winix/core/request.h +init.o: ../../../winix/core/system.h ../../../winix/core/synchro.h +init.o: ../../../winix/functions/functionparser.h ../../../winix/core/cur.h +init.o: ../../../winix/functions/account.h ../../../winix/functions/adduser.h +init.o: ../../../winix/functions/cat.h ../../../winix/functions/chmod.h +init.o: ../../../winix/functions/privchanger.h +init.o: ../../../winix/functions/chown.h ../../../winix/functions/ckeditor.h +init.o: ../../../winix/functions/cp.h ../../../winix/functions/default.h +init.o: ../../../winix/functions/download.h ../../../winix/functions/emacs.h +init.o: ../../../winix/functions/env.h ../../../winix/functions/imgcrop.h +init.o: ../../../winix/functions/last.h ../../../winix/functions/login.h +init.o: ../../../winix/functions/logout.h ../../../winix/functions/ln.h +init.o: ../../../winix/functions/ls.h ../../../winix/functions/man.h +init.o: ../../../winix/functions/meta.h ../../../winix/functions/mkdir.h +init.o: ../../../winix/functions/mv.h ../../../winix/functions/nicedit.h +init.o: ../../../winix/functions/node.h ../../../winix/functions/passwd.h +init.o: ../../../winix/functions/priv.h ../../../winix/functions/pw.h +init.o: ../../../winix/functions/reload.h ../../../winix/functions/rm.h +init.o: ../../../winix/functions/rmuser.h ../../../winix/functions/sort.h +init.o: ../../../winix/functions/specialdefault.h +init.o: ../../../winix/functions/stat.h ../../../winix/functions/subject.h +init.o: ../../../winix/functions/template.h +init.o: ../../../winix/functions/tinymce.h ../../../winix/functions/uname.h +init.o: ../../../winix/functions/upload.h ../../../winix/functions/uptime.h +init.o: ../../../winix/functions/who.h ../../../winix/functions/vim.h +init.o: ../../../winix/core/htmlfilter.h ../../../winix/templates/templates.h +init.o: ../../../winix/templates/patterncacher.h +init.o: ../../../winix/templates/indexpatterns.h +init.o: ../../../winix/templates/patterns.h +init.o: ../../../winix/templates/changepatterns.h +init.o: ../../../winix/templates/htmltextstream.h +init.o: ../../../winix/core/sessionmanager.h exportthread.h message.h +init.o: exportinfo.h export.h edb.h ../../../winix/db/dbbase.h +init.o: ../../../winix/db/dbconn.h ../../../winix/db/dbtextstream.h +init.o: ../../../winix/core/error.h ../../../winix/core/dirs.h funexport.h +init.o: ../../../winix/functions/functionbase.h diff --git a/plugins/gallery/Makefile b/plugins/gallery/Makefile index 473300a..93f5e03 100755 --- a/plugins/gallery/Makefile +++ b/plugins/gallery/Makefile @@ -6,22 +6,23 @@ name = gallery.so all: $(name) $(name): $(o) - $(CXX) -shared -Wl,-soname,$(name).so -o $(name) $(CXXFLAGS) $(LDFLAGS) *.o + $(CXX) -shared -Wl,-soname,$(name) -o $(name) $(CXXFLAGS) $(CXXWINIXINCLUDEFLAGS) $(LDFLAGS) *.o %.o: %.cpp - $(CXX) -c $(CXXFLAGS) $< + $(CXX) -c $(CXXFLAGS) $(CXXWINIXINCLUDEFLAGS) $< depend: - makedepend -Y. -I../.. -I../../../ezc/src -I../../../pikotools -I../../../tito/src -f- *.cpp > Makefile.dep + makedepend -Y. $(CXXWINIXINCLUDEFLAGS) -f- *.cpp > Makefile.dep echo -n "o = " > Makefile.o.dep ls -1 *.cpp | xargs -I foo echo -n foo " " | sed -E "s/([^\.]*)\.cpp[ ]/\1\.o/g" >> Makefile.o.dep clean: rm -f *.o + rm -f *.so rm -f $(name) include Makefile.dep diff --git a/plugins/gallery/Makefile.dep b/plugins/gallery/Makefile.dep index 88c7c63..893526a 100755 --- a/plugins/gallery/Makefile.dep +++ b/plugins/gallery/Makefile.dep @@ -1,182 +1,242 @@ # DO NOT DELETE -gallery.o: gallery.h ../../functions/functionbase.h ../../core/item.h -gallery.o: ../../../pikotools/space/space.h +gallery.o: gallery.h ../../../winix/functions/functionbase.h +gallery.o: ../../../winix/core/item.h ../../../pikotools/space/space.h gallery.o: ../../../pikotools/textstream/types.h -gallery.o: ../../../pikotools/date/date.h ../../db/db.h ../../db/dbbase.h -gallery.o: ../../db/dbconn.h ../../db/dbtextstream.h ../../core/textstream.h -gallery.o: ../../core/misc.h ../../core/item.h ../../core/requesttypes.h +gallery.o: ../../../pikotools/date/date.h ../../../winix/db/db.h +gallery.o: ../../../winix/db/dbbase.h ../../../winix/db/dbconn.h +gallery.o: ../../../winix/db/dbtextstream.h ../../../winix/core/textstream.h +gallery.o: ../../../winix/core/misc.h ../../../winix/core/item.h +gallery.o: ../../../winix/core/requesttypes.h gallery.o: ../../../pikotools/textstream/textstream.h gallery.o: ../../../pikotools/convert/convert.h gallery.o: ../../../pikotools/convert/inttostr.h gallery.o: ../../../pikotools/membuffer/membuffer.h gallery.o: ../../../pikotools/textstream/types.h -gallery.o: ../../../pikotools/utf8/utf8.h ../../core/error.h +gallery.o: ../../../pikotools/utf8/utf8.h ../../../winix/core/error.h gallery.o: ../../../pikotools/space/spaceparser.h -gallery.o: ../../../pikotools/space/space.h ../../db/dbitemquery.h -gallery.o: ../../db/dbitemcolumns.h ../../core/user.h ../../core/group.h -gallery.o: ../../core/dircontainer.h ../../core/ugcontainer.h -gallery.o: ../../core/log.h ../../core/textstream.h -gallery.o: ../../core/logmanipulators.h ../../core/slog.h ../../core/cur.h -gallery.o: ../../core/request.h ../../core/error.h ../../core/config.h -gallery.o: ../../core/htmlfilter.h ../../templates/htmltextstream.h -gallery.o: ../../../pikotools/space/spacetojson.h ../../core/session.h -gallery.o: ../../core/user.h ../../core/plugindata.h ../../core/rebus.h -gallery.o: ../../core/ipban.h ../../core/mount.h ../../templates/locale.h -gallery.o: ../../core/request.h ../../core/config.h ../../core/system.h -gallery.o: ../../core/job.h ../../core/basethread.h ../../core/synchro.h -gallery.o: ../../core/dirs.h ../../core/dircontainer.h ../../notify/notify.h -gallery.o: ../../notify/notifypool.h ../../templates/patterns.h -gallery.o: ../../templates/locale.h ../../templates/localefilter.h -gallery.o: ../../../ezc/src/ezc.h ../../../ezc/src/generator.h -gallery.o: ../../../ezc/src/pattern.h ../../../ezc/src/functions.h -gallery.o: ../../../ezc/src/funinfo.h ../../../ezc/src/stringconv.h -gallery.o: ../../notify/notifythread.h ../../core/basethread.h -gallery.o: ../../notify/templatesnotify.h ../../core/users.h -gallery.o: ../../core/ugcontainer.h ../../core/lastcontainer.h -gallery.o: ../../core/mounts.h ../../core/mountparser.h ../../core/crypt.h -gallery.o: ../../core/run.h ../../core/users.h ../../core/groups.h -gallery.o: ../../core/group.h ../../core/loadavg.h ../../core/image.h -gallery.o: ../../core/threadmanager.h ../../core/timezones.h -gallery.o: ../../core/timezone.h ../../core/synchro.h galleryinfo.h -galleryinfo.o: galleryinfo.h ../../core/item.h +gallery.o: ../../../pikotools/space/space.h ../../../winix/db/dbitemquery.h +gallery.o: ../../../winix/db/dbitemcolumns.h ../../../winix/core/user.h +gallery.o: ../../../winix/core/group.h ../../../winix/core/dircontainer.h +gallery.o: ../../../winix/core/ugcontainer.h ../../../winix/core/log.h +gallery.o: ../../../winix/core/textstream.h +gallery.o: ../../../winix/core/logmanipulators.h ../../../winix/core/slog.h +gallery.o: ../../../winix/core/cur.h ../../../winix/core/request.h +gallery.o: ../../../winix/core/error.h ../../../winix/core/config.h +gallery.o: ../../../winix/core/htmlfilter.h +gallery.o: ../../../winix/templates/htmltextstream.h +gallery.o: ../../../pikotools/space/spacetojson.h +gallery.o: ../../../winix/core/session.h ../../../winix/core/user.h +gallery.o: ../../../winix/core/plugindata.h ../../../winix/core/rebus.h +gallery.o: ../../../winix/core/ipban.h ../../../winix/core/mount.h +gallery.o: ../../../winix/templates/locale.h ../../../winix/core/request.h +gallery.o: ../../../winix/core/config.h ../../../winix/core/system.h +gallery.o: ../../../winix/core/job.h ../../../winix/core/basethread.h +gallery.o: ../../../winix/core/synchro.h ../../../winix/core/dirs.h +gallery.o: ../../../winix/core/dircontainer.h ../../../winix/notify/notify.h +gallery.o: ../../../winix/notify/notifypool.h +gallery.o: ../../../winix/templates/patterns.h +gallery.o: ../../../winix/templates/locale.h +gallery.o: ../../../winix/templates/localefilter.h ../../../ezc/src/ezc.h +gallery.o: ../../../ezc/src/generator.h ../../../ezc/src/pattern.h +gallery.o: ../../../ezc/src/functions.h ../../../ezc/src/funinfo.h +gallery.o: ../../../ezc/src/stringconv.h ../../../winix/notify/notifythread.h +gallery.o: ../../../winix/core/basethread.h +gallery.o: ../../../winix/notify/templatesnotify.h +gallery.o: ../../../winix/core/users.h ../../../winix/core/ugcontainer.h +gallery.o: ../../../winix/core/lastcontainer.h ../../../winix/core/mounts.h +gallery.o: ../../../winix/core/mountparser.h ../../../winix/core/crypt.h +gallery.o: ../../../winix/core/run.h ../../../winix/core/users.h +gallery.o: ../../../winix/core/groups.h ../../../winix/core/group.h +gallery.o: ../../../winix/core/loadavg.h ../../../winix/core/image.h +gallery.o: ../../../winix/core/threadmanager.h +gallery.o: ../../../winix/core/timezones.h ../../../winix/core/timezone.h +gallery.o: ../../../winix/core/synchro.h galleryinfo.h +galleryinfo.o: galleryinfo.h ../../../winix/core/item.h galleryinfo.o: ../../../pikotools/space/space.h galleryinfo.o: ../../../pikotools/textstream/types.h galleryinfo.o: ../../../pikotools/date/date.h -init.o: gallery.h ../../functions/functionbase.h ../../core/item.h -init.o: ../../../pikotools/space/space.h +init.o: gallery.h ../../../winix/functions/functionbase.h +init.o: ../../../winix/core/item.h ../../../pikotools/space/space.h init.o: ../../../pikotools/textstream/types.h ../../../pikotools/date/date.h -init.o: ../../db/db.h ../../db/dbbase.h ../../db/dbconn.h -init.o: ../../db/dbtextstream.h ../../core/textstream.h ../../core/misc.h -init.o: ../../core/item.h ../../core/requesttypes.h +init.o: ../../../winix/db/db.h ../../../winix/db/dbbase.h +init.o: ../../../winix/db/dbconn.h ../../../winix/db/dbtextstream.h +init.o: ../../../winix/core/textstream.h ../../../winix/core/misc.h +init.o: ../../../winix/core/item.h ../../../winix/core/requesttypes.h init.o: ../../../pikotools/textstream/textstream.h init.o: ../../../pikotools/convert/convert.h init.o: ../../../pikotools/convert/inttostr.h init.o: ../../../pikotools/membuffer/membuffer.h init.o: ../../../pikotools/textstream/types.h ../../../pikotools/utf8/utf8.h -init.o: ../../core/error.h ../../../pikotools/space/spaceparser.h -init.o: ../../../pikotools/space/space.h ../../db/dbitemquery.h -init.o: ../../db/dbitemcolumns.h ../../core/user.h ../../core/group.h -init.o: ../../core/dircontainer.h ../../core/ugcontainer.h ../../core/log.h -init.o: ../../core/textstream.h ../../core/logmanipulators.h -init.o: ../../core/slog.h ../../core/cur.h ../../core/request.h -init.o: ../../core/error.h ../../core/config.h ../../core/htmlfilter.h -init.o: ../../templates/htmltextstream.h -init.o: ../../../pikotools/space/spacetojson.h ../../core/session.h -init.o: ../../core/user.h ../../core/plugindata.h ../../core/rebus.h -init.o: ../../core/ipban.h ../../core/mount.h ../../templates/locale.h -init.o: ../../core/request.h ../../core/config.h ../../core/system.h -init.o: ../../core/job.h ../../core/basethread.h ../../core/synchro.h -init.o: ../../core/dirs.h ../../core/dircontainer.h ../../notify/notify.h -init.o: ../../notify/notifypool.h ../../templates/patterns.h -init.o: ../../templates/locale.h ../../templates/localefilter.h -init.o: ../../../ezc/src/ezc.h ../../../ezc/src/generator.h -init.o: ../../../ezc/src/pattern.h ../../../ezc/src/functions.h -init.o: ../../../ezc/src/funinfo.h ../../../ezc/src/stringconv.h -init.o: ../../notify/notifythread.h ../../core/basethread.h -init.o: ../../notify/templatesnotify.h ../../core/users.h -init.o: ../../core/ugcontainer.h ../../core/lastcontainer.h -init.o: ../../core/mounts.h ../../core/mountparser.h ../../core/crypt.h -init.o: ../../core/run.h ../../core/users.h ../../core/groups.h -init.o: ../../core/group.h ../../core/loadavg.h ../../core/image.h -init.o: ../../core/threadmanager.h ../../core/timezones.h -init.o: ../../core/timezone.h ../../core/synchro.h galleryinfo.h -init.o: ../../core/log.h ../../core/plugin.h ../../core/pluginmsg.h -init.o: ../../core/system.h ../../core/sessionmanager.h -init.o: ../../core/sessioncontainer.h ../../core/ipbancontainer.h -init.o: ../../functions/functions.h ../../functions/functionbase.h -init.o: ../../functions/functionparser.h ../../core/cur.h -init.o: ../../functions/account.h ../../functions/adduser.h -init.o: ../../functions/cat.h ../../functions/chmod.h -init.o: ../../functions/privchanger.h ../../functions/chown.h -init.o: ../../functions/ckeditor.h ../../functions/cp.h -init.o: ../../functions/default.h ../../functions/download.h -init.o: ../../functions/emacs.h ../../functions/env.h -init.o: ../../functions/imgcrop.h ../../functions/last.h -init.o: ../../functions/login.h ../../functions/logout.h ../../functions/ln.h -init.o: ../../functions/ls.h ../../functions/man.h ../../functions/meta.h -init.o: ../../functions/mkdir.h ../../functions/mv.h -init.o: ../../functions/nicedit.h ../../functions/node.h -init.o: ../../functions/passwd.h ../../functions/priv.h ../../functions/pw.h -init.o: ../../functions/reload.h ../../functions/rm.h -init.o: ../../functions/rmuser.h ../../functions/sort.h -init.o: ../../functions/specialdefault.h ../../functions/stat.h -init.o: ../../functions/subject.h ../../functions/template.h -init.o: ../../functions/tinymce.h ../../functions/uname.h -init.o: ../../functions/upload.h ../../functions/uptime.h -init.o: ../../functions/who.h ../../functions/vim.h ../../core/htmlfilter.h -init.o: ../../templates/templates.h ../../templates/patterncacher.h -init.o: ../../templates/indexpatterns.h ../../templates/patterns.h -init.o: ../../templates/changepatterns.h ../../templates/htmltextstream.h -init.o: ../../core/sessionmanager.h -templates.o: gallery.h ../../functions/functionbase.h ../../core/item.h -templates.o: ../../../pikotools/space/space.h +init.o: ../../../winix/core/error.h ../../../pikotools/space/spaceparser.h +init.o: ../../../pikotools/space/space.h ../../../winix/db/dbitemquery.h +init.o: ../../../winix/db/dbitemcolumns.h ../../../winix/core/user.h +init.o: ../../../winix/core/group.h ../../../winix/core/dircontainer.h +init.o: ../../../winix/core/ugcontainer.h ../../../winix/core/log.h +init.o: ../../../winix/core/textstream.h +init.o: ../../../winix/core/logmanipulators.h ../../../winix/core/slog.h +init.o: ../../../winix/core/cur.h ../../../winix/core/request.h +init.o: ../../../winix/core/error.h ../../../winix/core/config.h +init.o: ../../../winix/core/htmlfilter.h +init.o: ../../../winix/templates/htmltextstream.h +init.o: ../../../pikotools/space/spacetojson.h ../../../winix/core/session.h +init.o: ../../../winix/core/user.h ../../../winix/core/plugindata.h +init.o: ../../../winix/core/rebus.h ../../../winix/core/ipban.h +init.o: ../../../winix/core/mount.h ../../../winix/templates/locale.h +init.o: ../../../winix/core/request.h ../../../winix/core/config.h +init.o: ../../../winix/core/system.h ../../../winix/core/job.h +init.o: ../../../winix/core/basethread.h ../../../winix/core/synchro.h +init.o: ../../../winix/core/dirs.h ../../../winix/core/dircontainer.h +init.o: ../../../winix/notify/notify.h ../../../winix/notify/notifypool.h +init.o: ../../../winix/templates/patterns.h ../../../winix/templates/locale.h +init.o: ../../../winix/templates/localefilter.h ../../../ezc/src/ezc.h +init.o: ../../../ezc/src/generator.h ../../../ezc/src/pattern.h +init.o: ../../../ezc/src/functions.h ../../../ezc/src/funinfo.h +init.o: ../../../ezc/src/stringconv.h ../../../winix/notify/notifythread.h +init.o: ../../../winix/core/basethread.h +init.o: ../../../winix/notify/templatesnotify.h ../../../winix/core/users.h +init.o: ../../../winix/core/ugcontainer.h ../../../winix/core/lastcontainer.h +init.o: ../../../winix/core/mounts.h ../../../winix/core/mountparser.h +init.o: ../../../winix/core/crypt.h ../../../winix/core/run.h +init.o: ../../../winix/core/users.h ../../../winix/core/groups.h +init.o: ../../../winix/core/group.h ../../../winix/core/loadavg.h +init.o: ../../../winix/core/image.h ../../../winix/core/threadmanager.h +init.o: ../../../winix/core/timezones.h ../../../winix/core/timezone.h +init.o: ../../../winix/core/synchro.h galleryinfo.h ../../../winix/core/log.h +init.o: ../../../winix/core/plugin.h ../../../winix/core/pluginmsg.h +init.o: ../../../winix/core/system.h ../../../winix/core/sessionmanager.h +init.o: ../../../winix/core/sessioncontainer.h +init.o: ../../../winix/core/ipbancontainer.h +init.o: ../../../winix/functions/functions.h +init.o: ../../../winix/functions/functionbase.h +init.o: ../../../winix/functions/functionparser.h ../../../winix/core/cur.h +init.o: ../../../winix/functions/account.h ../../../winix/functions/adduser.h +init.o: ../../../winix/functions/cat.h ../../../winix/functions/chmod.h +init.o: ../../../winix/functions/privchanger.h +init.o: ../../../winix/functions/chown.h ../../../winix/functions/ckeditor.h +init.o: ../../../winix/functions/cp.h ../../../winix/functions/default.h +init.o: ../../../winix/functions/download.h ../../../winix/functions/emacs.h +init.o: ../../../winix/functions/env.h ../../../winix/functions/imgcrop.h +init.o: ../../../winix/functions/last.h ../../../winix/functions/login.h +init.o: ../../../winix/functions/logout.h ../../../winix/functions/ln.h +init.o: ../../../winix/functions/ls.h ../../../winix/functions/man.h +init.o: ../../../winix/functions/meta.h ../../../winix/functions/mkdir.h +init.o: ../../../winix/functions/mv.h ../../../winix/functions/nicedit.h +init.o: ../../../winix/functions/node.h ../../../winix/functions/passwd.h +init.o: ../../../winix/functions/priv.h ../../../winix/functions/pw.h +init.o: ../../../winix/functions/reload.h ../../../winix/functions/rm.h +init.o: ../../../winix/functions/rmuser.h ../../../winix/functions/sort.h +init.o: ../../../winix/functions/specialdefault.h +init.o: ../../../winix/functions/stat.h ../../../winix/functions/subject.h +init.o: ../../../winix/functions/template.h +init.o: ../../../winix/functions/tinymce.h ../../../winix/functions/uname.h +init.o: ../../../winix/functions/upload.h ../../../winix/functions/uptime.h +init.o: ../../../winix/functions/who.h ../../../winix/functions/vim.h +init.o: ../../../winix/core/htmlfilter.h ../../../winix/templates/templates.h +init.o: ../../../winix/templates/patterncacher.h +init.o: ../../../winix/templates/indexpatterns.h +init.o: ../../../winix/templates/patterns.h +init.o: ../../../winix/templates/changepatterns.h +init.o: ../../../winix/templates/htmltextstream.h +init.o: ../../../winix/core/sessionmanager.h +templates.o: gallery.h ../../../winix/functions/functionbase.h +templates.o: ../../../winix/core/item.h ../../../pikotools/space/space.h templates.o: ../../../pikotools/textstream/types.h -templates.o: ../../../pikotools/date/date.h ../../db/db.h ../../db/dbbase.h -templates.o: ../../db/dbconn.h ../../db/dbtextstream.h -templates.o: ../../core/textstream.h ../../core/misc.h ../../core/item.h -templates.o: ../../core/requesttypes.h +templates.o: ../../../pikotools/date/date.h ../../../winix/db/db.h +templates.o: ../../../winix/db/dbbase.h ../../../winix/db/dbconn.h +templates.o: ../../../winix/db/dbtextstream.h +templates.o: ../../../winix/core/textstream.h ../../../winix/core/misc.h +templates.o: ../../../winix/core/item.h ../../../winix/core/requesttypes.h templates.o: ../../../pikotools/textstream/textstream.h templates.o: ../../../pikotools/convert/convert.h templates.o: ../../../pikotools/convert/inttostr.h templates.o: ../../../pikotools/membuffer/membuffer.h templates.o: ../../../pikotools/textstream/types.h -templates.o: ../../../pikotools/utf8/utf8.h ../../core/error.h +templates.o: ../../../pikotools/utf8/utf8.h ../../../winix/core/error.h templates.o: ../../../pikotools/space/spaceparser.h -templates.o: ../../../pikotools/space/space.h ../../db/dbitemquery.h -templates.o: ../../db/dbitemcolumns.h ../../core/user.h ../../core/group.h -templates.o: ../../core/dircontainer.h ../../core/ugcontainer.h -templates.o: ../../core/log.h ../../core/textstream.h -templates.o: ../../core/logmanipulators.h ../../core/slog.h ../../core/cur.h -templates.o: ../../core/request.h ../../core/error.h ../../core/config.h -templates.o: ../../core/htmlfilter.h ../../templates/htmltextstream.h -templates.o: ../../../pikotools/space/spacetojson.h ../../core/session.h -templates.o: ../../core/user.h ../../core/plugindata.h ../../core/rebus.h -templates.o: ../../core/ipban.h ../../core/mount.h ../../templates/locale.h -templates.o: ../../core/request.h ../../core/config.h ../../core/system.h -templates.o: ../../core/job.h ../../core/basethread.h ../../core/synchro.h -templates.o: ../../core/dirs.h ../../core/dircontainer.h -templates.o: ../../notify/notify.h ../../notify/notifypool.h -templates.o: ../../templates/patterns.h ../../templates/locale.h -templates.o: ../../templates/localefilter.h ../../../ezc/src/ezc.h +templates.o: ../../../pikotools/space/space.h ../../../winix/db/dbitemquery.h +templates.o: ../../../winix/db/dbitemcolumns.h ../../../winix/core/user.h +templates.o: ../../../winix/core/group.h ../../../winix/core/dircontainer.h +templates.o: ../../../winix/core/ugcontainer.h ../../../winix/core/log.h +templates.o: ../../../winix/core/textstream.h +templates.o: ../../../winix/core/logmanipulators.h ../../../winix/core/slog.h +templates.o: ../../../winix/core/cur.h ../../../winix/core/request.h +templates.o: ../../../winix/core/error.h ../../../winix/core/config.h +templates.o: ../../../winix/core/htmlfilter.h +templates.o: ../../../winix/templates/htmltextstream.h +templates.o: ../../../pikotools/space/spacetojson.h +templates.o: ../../../winix/core/session.h ../../../winix/core/user.h +templates.o: ../../../winix/core/plugindata.h ../../../winix/core/rebus.h +templates.o: ../../../winix/core/ipban.h ../../../winix/core/mount.h +templates.o: ../../../winix/templates/locale.h ../../../winix/core/request.h +templates.o: ../../../winix/core/config.h ../../../winix/core/system.h +templates.o: ../../../winix/core/job.h ../../../winix/core/basethread.h +templates.o: ../../../winix/core/synchro.h ../../../winix/core/dirs.h +templates.o: ../../../winix/core/dircontainer.h +templates.o: ../../../winix/notify/notify.h +templates.o: ../../../winix/notify/notifypool.h +templates.o: ../../../winix/templates/patterns.h +templates.o: ../../../winix/templates/locale.h +templates.o: ../../../winix/templates/localefilter.h ../../../ezc/src/ezc.h templates.o: ../../../ezc/src/generator.h ../../../ezc/src/pattern.h templates.o: ../../../ezc/src/functions.h ../../../ezc/src/funinfo.h -templates.o: ../../../ezc/src/stringconv.h ../../notify/notifythread.h -templates.o: ../../core/basethread.h ../../notify/templatesnotify.h -templates.o: ../../core/users.h ../../core/ugcontainer.h -templates.o: ../../core/lastcontainer.h ../../core/mounts.h -templates.o: ../../core/mountparser.h ../../core/crypt.h ../../core/run.h -templates.o: ../../core/users.h ../../core/groups.h ../../core/group.h -templates.o: ../../core/loadavg.h ../../core/image.h -templates.o: ../../core/threadmanager.h ../../core/timezones.h -templates.o: ../../core/timezone.h ../../core/synchro.h galleryinfo.h -templates.o: ../../core/misc.h ../../core/plugin.h ../../core/pluginmsg.h -templates.o: ../../core/system.h ../../core/sessionmanager.h -templates.o: ../../core/sessioncontainer.h ../../core/ipbancontainer.h -templates.o: ../../functions/functions.h ../../functions/functionbase.h -templates.o: ../../functions/functionparser.h ../../core/cur.h -templates.o: ../../functions/account.h ../../functions/adduser.h -templates.o: ../../functions/cat.h ../../functions/chmod.h -templates.o: ../../functions/privchanger.h ../../functions/chown.h -templates.o: ../../functions/ckeditor.h ../../functions/cp.h -templates.o: ../../functions/default.h ../../functions/download.h -templates.o: ../../functions/emacs.h ../../functions/env.h -templates.o: ../../functions/imgcrop.h ../../functions/last.h -templates.o: ../../functions/login.h ../../functions/logout.h -templates.o: ../../functions/ln.h ../../functions/ls.h ../../functions/man.h -templates.o: ../../functions/meta.h ../../functions/mkdir.h -templates.o: ../../functions/mv.h ../../functions/nicedit.h -templates.o: ../../functions/node.h ../../functions/passwd.h -templates.o: ../../functions/priv.h ../../functions/pw.h -templates.o: ../../functions/reload.h ../../functions/rm.h -templates.o: ../../functions/rmuser.h ../../functions/sort.h -templates.o: ../../functions/specialdefault.h ../../functions/stat.h -templates.o: ../../functions/subject.h ../../functions/template.h -templates.o: ../../functions/tinymce.h ../../functions/uname.h -templates.o: ../../functions/upload.h ../../functions/uptime.h -templates.o: ../../functions/who.h ../../functions/vim.h -templates.o: ../../core/htmlfilter.h ../../templates/templates.h -templates.o: ../../templates/patterncacher.h ../../templates/indexpatterns.h -templates.o: ../../templates/patterns.h ../../templates/changepatterns.h -templates.o: ../../templates/htmltextstream.h ../../core/sessionmanager.h -templates.o: ../../templates/miscspace.h ../../templates/templates.h +templates.o: ../../../ezc/src/stringconv.h +templates.o: ../../../winix/notify/notifythread.h +templates.o: ../../../winix/core/basethread.h +templates.o: ../../../winix/notify/templatesnotify.h +templates.o: ../../../winix/core/users.h ../../../winix/core/ugcontainer.h +templates.o: ../../../winix/core/lastcontainer.h ../../../winix/core/mounts.h +templates.o: ../../../winix/core/mountparser.h ../../../winix/core/crypt.h +templates.o: ../../../winix/core/run.h ../../../winix/core/users.h +templates.o: ../../../winix/core/groups.h ../../../winix/core/group.h +templates.o: ../../../winix/core/loadavg.h ../../../winix/core/image.h +templates.o: ../../../winix/core/threadmanager.h +templates.o: ../../../winix/core/timezones.h ../../../winix/core/timezone.h +templates.o: ../../../winix/core/synchro.h galleryinfo.h +templates.o: ../../../winix/core/misc.h ../../../winix/core/plugin.h +templates.o: ../../../winix/core/pluginmsg.h ../../../winix/core/system.h +templates.o: ../../../winix/core/sessionmanager.h +templates.o: ../../../winix/core/sessioncontainer.h +templates.o: ../../../winix/core/ipbancontainer.h +templates.o: ../../../winix/functions/functions.h +templates.o: ../../../winix/functions/functionbase.h +templates.o: ../../../winix/functions/functionparser.h +templates.o: ../../../winix/core/cur.h ../../../winix/functions/account.h +templates.o: ../../../winix/functions/adduser.h +templates.o: ../../../winix/functions/cat.h ../../../winix/functions/chmod.h +templates.o: ../../../winix/functions/privchanger.h +templates.o: ../../../winix/functions/chown.h +templates.o: ../../../winix/functions/ckeditor.h +templates.o: ../../../winix/functions/cp.h ../../../winix/functions/default.h +templates.o: ../../../winix/functions/download.h +templates.o: ../../../winix/functions/emacs.h ../../../winix/functions/env.h +templates.o: ../../../winix/functions/imgcrop.h +templates.o: ../../../winix/functions/last.h ../../../winix/functions/login.h +templates.o: ../../../winix/functions/logout.h ../../../winix/functions/ln.h +templates.o: ../../../winix/functions/ls.h ../../../winix/functions/man.h +templates.o: ../../../winix/functions/meta.h ../../../winix/functions/mkdir.h +templates.o: ../../../winix/functions/mv.h ../../../winix/functions/nicedit.h +templates.o: ../../../winix/functions/node.h +templates.o: ../../../winix/functions/passwd.h +templates.o: ../../../winix/functions/priv.h ../../../winix/functions/pw.h +templates.o: ../../../winix/functions/reload.h ../../../winix/functions/rm.h +templates.o: ../../../winix/functions/rmuser.h +templates.o: ../../../winix/functions/sort.h +templates.o: ../../../winix/functions/specialdefault.h +templates.o: ../../../winix/functions/stat.h +templates.o: ../../../winix/functions/subject.h +templates.o: ../../../winix/functions/template.h +templates.o: ../../../winix/functions/tinymce.h +templates.o: ../../../winix/functions/uname.h +templates.o: ../../../winix/functions/upload.h +templates.o: ../../../winix/functions/uptime.h ../../../winix/functions/who.h +templates.o: ../../../winix/functions/vim.h ../../../winix/core/htmlfilter.h +templates.o: ../../../winix/templates/templates.h +templates.o: ../../../winix/templates/patterncacher.h +templates.o: ../../../winix/templates/indexpatterns.h +templates.o: ../../../winix/templates/patterns.h +templates.o: ../../../winix/templates/changepatterns.h +templates.o: ../../../winix/templates/htmltextstream.h +templates.o: ../../../winix/core/sessionmanager.h +templates.o: ../../../winix/templates/miscspace.h +templates.o: ../../../winix/templates/templates.h diff --git a/plugins/group/Makefile b/plugins/group/Makefile index 113e701..12f7d00 100755 --- a/plugins/group/Makefile +++ b/plugins/group/Makefile @@ -6,22 +6,23 @@ name = group.so all: $(name) $(name): $(o) - $(CXX) -shared -Wl,-soname,$(name).so -o $(name) $(CXXFLAGS) $(LDFLAGS) *.o + $(CXX) -shared -Wl,-soname,$(name) -o $(name) $(CXXFLAGS) $(CXXWINIXINCLUDEFLAGS) $(LDFLAGS) *.o %.o: %.cpp - $(CXX) -c $(CXXFLAGS) $< + $(CXX) -c $(CXXFLAGS) $(CXXWINIXINCLUDEFLAGS) $< depend: - makedepend -Y. -I../.. -I../../../ezc/src -I../../../pikotools -I../../../tito/src -f- *.cpp > Makefile.dep + makedepend -Y. $(CXXWINIXINCLUDEFLAGS) -f- *.cpp > Makefile.dep echo -n "o = " > Makefile.o.dep ls -1 *.cpp | xargs -I foo echo -n foo " " | sed -E "s/([^\.]*)\.cpp[ ]/\1\.o/g" >> Makefile.o.dep clean: rm -f *.o + rm -f *.so rm -f $(name) include Makefile.dep diff --git a/plugins/group/Makefile.dep b/plugins/group/Makefile.dep index d6d926e..bef1a73 100755 --- a/plugins/group/Makefile.dep +++ b/plugins/group/Makefile.dep @@ -2,176 +2,237 @@ groupinfo.o: groupinfo.h groups.h ../../../pikotools/space/spaceparser.h groupinfo.o: ../../../pikotools/space/space.h -groupinfo.o: ../../../pikotools/textstream/types.h ../../core/item.h +groupinfo.o: ../../../pikotools/textstream/types.h ../../../winix/core/item.h groupinfo.o: ../../../pikotools/space/space.h ../../../pikotools/date/date.h -groupinfo.o: ../../core/system.h ../../core/job.h ../../core/basethread.h -groupinfo.o: ../../core/synchro.h ../../core/dirs.h ../../core/item.h -groupinfo.o: ../../core/dircontainer.h ../../db/db.h ../../db/dbbase.h -groupinfo.o: ../../db/dbconn.h ../../db/dbtextstream.h -groupinfo.o: ../../core/textstream.h ../../core/misc.h -groupinfo.o: ../../core/requesttypes.h +groupinfo.o: ../../../winix/core/system.h ../../../winix/core/job.h +groupinfo.o: ../../../winix/core/basethread.h ../../../winix/core/synchro.h +groupinfo.o: ../../../winix/core/dirs.h ../../../winix/core/item.h +groupinfo.o: ../../../winix/core/dircontainer.h ../../../winix/db/db.h +groupinfo.o: ../../../winix/db/dbbase.h ../../../winix/db/dbconn.h +groupinfo.o: ../../../winix/db/dbtextstream.h +groupinfo.o: ../../../winix/core/textstream.h ../../../winix/core/misc.h +groupinfo.o: ../../../winix/core/requesttypes.h groupinfo.o: ../../../pikotools/textstream/textstream.h groupinfo.o: ../../../pikotools/convert/convert.h groupinfo.o: ../../../pikotools/convert/inttostr.h groupinfo.o: ../../../pikotools/membuffer/membuffer.h groupinfo.o: ../../../pikotools/textstream/types.h -groupinfo.o: ../../../pikotools/utf8/utf8.h ../../core/error.h -groupinfo.o: ../../db/dbitemquery.h ../../db/dbitemcolumns.h -groupinfo.o: ../../core/user.h ../../core/group.h ../../core/dircontainer.h -groupinfo.o: ../../core/ugcontainer.h ../../core/log.h -groupinfo.o: ../../core/textstream.h ../../core/logmanipulators.h -groupinfo.o: ../../core/slog.h ../../core/cur.h ../../core/request.h -groupinfo.o: ../../core/error.h ../../core/config.h ../../core/htmlfilter.h -groupinfo.o: ../../templates/htmltextstream.h -groupinfo.o: ../../../pikotools/space/spacetojson.h ../../core/session.h -groupinfo.o: ../../core/user.h ../../core/plugindata.h ../../core/rebus.h -groupinfo.o: ../../core/ipban.h ../../core/mount.h ../../templates/locale.h -groupinfo.o: ../../notify/notify.h ../../notify/notifypool.h -groupinfo.o: ../../templates/patterns.h ../../templates/locale.h -groupinfo.o: ../../templates/localefilter.h ../../../ezc/src/ezc.h +groupinfo.o: ../../../pikotools/utf8/utf8.h ../../../winix/core/error.h +groupinfo.o: ../../../winix/db/dbitemquery.h +groupinfo.o: ../../../winix/db/dbitemcolumns.h ../../../winix/core/user.h +groupinfo.o: ../../../winix/core/group.h ../../../winix/core/dircontainer.h +groupinfo.o: ../../../winix/core/ugcontainer.h ../../../winix/core/log.h +groupinfo.o: ../../../winix/core/textstream.h +groupinfo.o: ../../../winix/core/logmanipulators.h ../../../winix/core/slog.h +groupinfo.o: ../../../winix/core/cur.h ../../../winix/core/request.h +groupinfo.o: ../../../winix/core/error.h ../../../winix/core/config.h +groupinfo.o: ../../../winix/core/htmlfilter.h +groupinfo.o: ../../../winix/templates/htmltextstream.h +groupinfo.o: ../../../pikotools/space/spacetojson.h +groupinfo.o: ../../../winix/core/session.h ../../../winix/core/user.h +groupinfo.o: ../../../winix/core/plugindata.h ../../../winix/core/rebus.h +groupinfo.o: ../../../winix/core/ipban.h ../../../winix/core/mount.h +groupinfo.o: ../../../winix/templates/locale.h ../../../winix/notify/notify.h +groupinfo.o: ../../../winix/notify/notifypool.h +groupinfo.o: ../../../winix/templates/patterns.h +groupinfo.o: ../../../winix/templates/locale.h +groupinfo.o: ../../../winix/templates/localefilter.h ../../../ezc/src/ezc.h groupinfo.o: ../../../ezc/src/generator.h ../../../ezc/src/pattern.h groupinfo.o: ../../../ezc/src/functions.h ../../../ezc/src/funinfo.h -groupinfo.o: ../../../ezc/src/stringconv.h ../../notify/notifythread.h -groupinfo.o: ../../core/basethread.h ../../notify/templatesnotify.h -groupinfo.o: ../../core/config.h ../../core/users.h ../../core/ugcontainer.h -groupinfo.o: ../../core/lastcontainer.h ../../core/mounts.h -groupinfo.o: ../../core/mountparser.h ../../core/crypt.h ../../core/run.h -groupinfo.o: ../../core/users.h ../../core/loadavg.h ../../core/image.h -groupinfo.o: ../../core/threadmanager.h ../../core/timezones.h -groupinfo.o: ../../core/timezone.h ../../core/log.h +groupinfo.o: ../../../ezc/src/stringconv.h +groupinfo.o: ../../../winix/notify/notifythread.h +groupinfo.o: ../../../winix/core/basethread.h +groupinfo.o: ../../../winix/notify/templatesnotify.h +groupinfo.o: ../../../winix/core/config.h ../../../winix/core/users.h +groupinfo.o: ../../../winix/core/ugcontainer.h +groupinfo.o: ../../../winix/core/lastcontainer.h ../../../winix/core/mounts.h +groupinfo.o: ../../../winix/core/mountparser.h ../../../winix/core/crypt.h +groupinfo.o: ../../../winix/core/run.h ../../../winix/core/users.h +groupinfo.o: ../../../winix/core/loadavg.h ../../../winix/core/image.h +groupinfo.o: ../../../winix/core/threadmanager.h +groupinfo.o: ../../../winix/core/timezones.h ../../../winix/core/timezone.h +groupinfo.o: ../../../winix/core/log.h groups.o: groups.h ../../../pikotools/space/spaceparser.h groups.o: ../../../pikotools/space/space.h -groups.o: ../../../pikotools/textstream/types.h ../../core/log.h -init.o: ../../core/log.h ../../core/plugin.h ../../core/pluginmsg.h -init.o: ../../core/log.h ../../core/textstream.h ../../core/logmanipulators.h +groups.o: ../../../pikotools/textstream/types.h ../../../winix/core/log.h +init.o: ../../../winix/core/log.h ../../../winix/core/plugin.h +init.o: ../../../winix/core/pluginmsg.h ../../../winix/core/log.h +init.o: ../../../winix/core/textstream.h +init.o: ../../../winix/core/logmanipulators.h init.o: ../../../pikotools/textstream/textstream.h init.o: ../../../pikotools/space/space.h ../../../pikotools/date/date.h init.o: ../../../pikotools/convert/convert.h init.o: ../../../pikotools/convert/inttostr.h init.o: ../../../pikotools/membuffer/membuffer.h -init.o: ../../../pikotools/textstream/types.h ../../core/slog.h -init.o: ../../core/cur.h ../../core/request.h ../../core/requesttypes.h -init.o: ../../core/item.h ../../core/error.h ../../core/config.h +init.o: ../../../pikotools/textstream/types.h ../../../winix/core/slog.h +init.o: ../../../winix/core/cur.h ../../../winix/core/request.h +init.o: ../../../winix/core/requesttypes.h ../../../winix/core/item.h +init.o: ../../../winix/core/error.h ../../../winix/core/config.h init.o: ../../../pikotools/space/spaceparser.h init.o: ../../../pikotools/space/space.h -init.o: ../../../pikotools/textstream/types.h ../../core/htmlfilter.h -init.o: ../../templates/htmltextstream.h ../../core/textstream.h -init.o: ../../core/misc.h ../../../pikotools/utf8/utf8.h -init.o: ../../../pikotools/space/spacetojson.h ../../core/session.h -init.o: ../../core/user.h ../../core/plugindata.h ../../core/rebus.h -init.o: ../../core/ipban.h ../../core/mount.h ../../templates/locale.h -init.o: ../../core/system.h ../../core/job.h ../../core/basethread.h -init.o: ../../core/synchro.h ../../core/dirs.h ../../core/dircontainer.h -init.o: ../../db/db.h ../../db/dbbase.h ../../db/dbconn.h -init.o: ../../db/dbtextstream.h ../../core/error.h ../../db/dbitemquery.h -init.o: ../../core/item.h ../../db/dbitemcolumns.h ../../core/user.h -init.o: ../../core/group.h ../../core/dircontainer.h ../../core/ugcontainer.h -init.o: ../../notify/notify.h ../../notify/notifypool.h -init.o: ../../templates/patterns.h ../../templates/locale.h -init.o: ../../templates/localefilter.h ../../../ezc/src/ezc.h +init.o: ../../../pikotools/textstream/types.h +init.o: ../../../winix/core/htmlfilter.h +init.o: ../../../winix/templates/htmltextstream.h +init.o: ../../../winix/core/textstream.h ../../../winix/core/misc.h +init.o: ../../../pikotools/utf8/utf8.h ../../../pikotools/space/spacetojson.h +init.o: ../../../winix/core/session.h ../../../winix/core/user.h +init.o: ../../../winix/core/plugindata.h ../../../winix/core/rebus.h +init.o: ../../../winix/core/ipban.h ../../../winix/core/mount.h +init.o: ../../../winix/templates/locale.h ../../../winix/core/system.h +init.o: ../../../winix/core/job.h ../../../winix/core/basethread.h +init.o: ../../../winix/core/synchro.h ../../../winix/core/dirs.h +init.o: ../../../winix/core/dircontainer.h ../../../winix/db/db.h +init.o: ../../../winix/db/dbbase.h ../../../winix/db/dbconn.h +init.o: ../../../winix/db/dbtextstream.h ../../../winix/core/error.h +init.o: ../../../winix/db/dbitemquery.h ../../../winix/core/item.h +init.o: ../../../winix/db/dbitemcolumns.h ../../../winix/core/user.h +init.o: ../../../winix/core/group.h ../../../winix/core/dircontainer.h +init.o: ../../../winix/core/ugcontainer.h ../../../winix/notify/notify.h +init.o: ../../../winix/notify/notifypool.h +init.o: ../../../winix/templates/patterns.h ../../../winix/templates/locale.h +init.o: ../../../winix/templates/localefilter.h ../../../ezc/src/ezc.h init.o: ../../../ezc/src/generator.h ../../../ezc/src/pattern.h init.o: ../../../ezc/src/functions.h ../../../ezc/src/funinfo.h -init.o: ../../../ezc/src/stringconv.h ../../notify/notifythread.h -init.o: ../../core/basethread.h ../../notify/templatesnotify.h -init.o: ../../core/config.h ../../core/users.h ../../core/ugcontainer.h -init.o: ../../core/lastcontainer.h ../../core/mounts.h -init.o: ../../core/mountparser.h ../../core/crypt.h ../../core/run.h -init.o: ../../core/users.h groups.h ../../core/loadavg.h ../../core/image.h -init.o: ../../core/threadmanager.h ../../core/timezones.h -init.o: ../../core/timezone.h ../../core/sessionmanager.h -init.o: ../../core/sessioncontainer.h ../../core/ipbancontainer.h -init.o: ../../functions/functions.h ../../functions/functionbase.h -init.o: ../../core/request.h ../../core/system.h ../../core/synchro.h -init.o: ../../functions/functionparser.h ../../core/cur.h -init.o: ../../functions/account.h ../../functions/adduser.h -init.o: ../../functions/cat.h ../../functions/chmod.h -init.o: ../../functions/privchanger.h ../../functions/chown.h -init.o: ../../functions/ckeditor.h ../../functions/cp.h -init.o: ../../functions/default.h ../../functions/download.h -init.o: ../../functions/emacs.h ../../functions/env.h -init.o: ../../functions/imgcrop.h ../../functions/last.h -init.o: ../../functions/login.h ../../functions/logout.h ../../functions/ln.h -init.o: ../../functions/ls.h ../../functions/man.h ../../functions/meta.h -init.o: ../../functions/mkdir.h ../../functions/mv.h -init.o: ../../functions/nicedit.h ../../functions/node.h -init.o: ../../functions/passwd.h ../../functions/priv.h ../../functions/pw.h -init.o: ../../functions/reload.h ../../functions/rm.h -init.o: ../../functions/rmuser.h ../../functions/sort.h -init.o: ../../functions/specialdefault.h ../../functions/stat.h -init.o: ../../functions/subject.h ../../functions/template.h -init.o: ../../functions/tinymce.h ../../functions/uname.h -init.o: ../../functions/upload.h ../../functions/uptime.h -init.o: ../../functions/who.h ../../functions/vim.h ../../core/htmlfilter.h -init.o: ../../templates/templates.h ../../templates/patterncacher.h -init.o: ../../templates/indexpatterns.h ../../templates/patterns.h -init.o: ../../templates/changepatterns.h ../../templates/htmltextstream.h -init.o: ../../core/sessionmanager.h groupinfo.h -templates.o: ../../templates/templates.h ../../../ezc/src/ezc.h +init.o: ../../../ezc/src/stringconv.h ../../../winix/notify/notifythread.h +init.o: ../../../winix/core/basethread.h +init.o: ../../../winix/notify/templatesnotify.h ../../../winix/core/config.h +init.o: ../../../winix/core/users.h ../../../winix/core/ugcontainer.h +init.o: ../../../winix/core/lastcontainer.h ../../../winix/core/mounts.h +init.o: ../../../winix/core/mountparser.h ../../../winix/core/crypt.h +init.o: ../../../winix/core/run.h ../../../winix/core/users.h groups.h +init.o: ../../../winix/core/loadavg.h ../../../winix/core/image.h +init.o: ../../../winix/core/threadmanager.h ../../../winix/core/timezones.h +init.o: ../../../winix/core/timezone.h ../../../winix/core/sessionmanager.h +init.o: ../../../winix/core/sessioncontainer.h +init.o: ../../../winix/core/ipbancontainer.h +init.o: ../../../winix/functions/functions.h +init.o: ../../../winix/functions/functionbase.h ../../../winix/core/request.h +init.o: ../../../winix/core/system.h ../../../winix/core/synchro.h +init.o: ../../../winix/functions/functionparser.h ../../../winix/core/cur.h +init.o: ../../../winix/functions/account.h ../../../winix/functions/adduser.h +init.o: ../../../winix/functions/cat.h ../../../winix/functions/chmod.h +init.o: ../../../winix/functions/privchanger.h +init.o: ../../../winix/functions/chown.h ../../../winix/functions/ckeditor.h +init.o: ../../../winix/functions/cp.h ../../../winix/functions/default.h +init.o: ../../../winix/functions/download.h ../../../winix/functions/emacs.h +init.o: ../../../winix/functions/env.h ../../../winix/functions/imgcrop.h +init.o: ../../../winix/functions/last.h ../../../winix/functions/login.h +init.o: ../../../winix/functions/logout.h ../../../winix/functions/ln.h +init.o: ../../../winix/functions/ls.h ../../../winix/functions/man.h +init.o: ../../../winix/functions/meta.h ../../../winix/functions/mkdir.h +init.o: ../../../winix/functions/mv.h ../../../winix/functions/nicedit.h +init.o: ../../../winix/functions/node.h ../../../winix/functions/passwd.h +init.o: ../../../winix/functions/priv.h ../../../winix/functions/pw.h +init.o: ../../../winix/functions/reload.h ../../../winix/functions/rm.h +init.o: ../../../winix/functions/rmuser.h ../../../winix/functions/sort.h +init.o: ../../../winix/functions/specialdefault.h +init.o: ../../../winix/functions/stat.h ../../../winix/functions/subject.h +init.o: ../../../winix/functions/template.h +init.o: ../../../winix/functions/tinymce.h ../../../winix/functions/uname.h +init.o: ../../../winix/functions/upload.h ../../../winix/functions/uptime.h +init.o: ../../../winix/functions/who.h ../../../winix/functions/vim.h +init.o: ../../../winix/core/htmlfilter.h ../../../winix/templates/templates.h +init.o: ../../../winix/templates/patterncacher.h +init.o: ../../../winix/templates/indexpatterns.h +init.o: ../../../winix/templates/patterns.h +init.o: ../../../winix/templates/changepatterns.h +init.o: ../../../winix/templates/htmltextstream.h +init.o: ../../../winix/core/sessionmanager.h groupinfo.h +templates.o: ../../../winix/templates/templates.h ../../../ezc/src/ezc.h templates.o: ../../../ezc/src/generator.h ../../../ezc/src/pattern.h -templates.o: ../../core/item.h ../../../ezc/src/functions.h +templates.o: ../../../winix/core/item.h ../../../ezc/src/functions.h templates.o: ../../../ezc/src/funinfo.h ../../../ezc/src/stringconv.h -templates.o: ../../../pikotools/utf8/utf8.h ../../core/misc.h -templates.o: ../../core/requesttypes.h +templates.o: ../../../pikotools/utf8/utf8.h ../../../winix/core/misc.h +templates.o: ../../../winix/core/requesttypes.h templates.o: ../../../pikotools/textstream/textstream.h templates.o: ../../../pikotools/space/space.h ../../../pikotools/date/date.h templates.o: ../../../pikotools/convert/convert.h templates.o: ../../../pikotools/convert/inttostr.h templates.o: ../../../pikotools/membuffer/membuffer.h templates.o: ../../../pikotools/textstream/types.h -templates.o: ../../templates/patterncacher.h ../../core/item.h -templates.o: ../../templates/indexpatterns.h ../../templates/patterns.h -templates.o: ../../templates/locale.h ../../templates/changepatterns.h -templates.o: ../../templates/htmltextstream.h ../../templates/localefilter.h -templates.o: ../../core/config.h ../../core/cur.h ../../core/system.h -templates.o: ../../core/job.h ../../core/basethread.h ../../core/synchro.h -templates.o: ../../core/dirs.h ../../core/dircontainer.h ../../db/db.h -templates.o: ../../db/dbbase.h ../../db/dbconn.h ../../db/dbtextstream.h -templates.o: ../../core/textstream.h ../../core/error.h +templates.o: ../../../winix/templates/patterncacher.h +templates.o: ../../../winix/core/item.h +templates.o: ../../../winix/templates/indexpatterns.h +templates.o: ../../../winix/templates/patterns.h +templates.o: ../../../winix/templates/locale.h +templates.o: ../../../winix/templates/changepatterns.h +templates.o: ../../../winix/templates/htmltextstream.h +templates.o: ../../../winix/templates/localefilter.h +templates.o: ../../../winix/core/config.h ../../../winix/core/cur.h +templates.o: ../../../winix/core/system.h ../../../winix/core/job.h +templates.o: ../../../winix/core/basethread.h ../../../winix/core/synchro.h +templates.o: ../../../winix/core/dirs.h ../../../winix/core/dircontainer.h +templates.o: ../../../winix/db/db.h ../../../winix/db/dbbase.h +templates.o: ../../../winix/db/dbconn.h ../../../winix/db/dbtextstream.h +templates.o: ../../../winix/core/textstream.h ../../../winix/core/error.h templates.o: ../../../pikotools/space/spaceparser.h templates.o: ../../../pikotools/space/space.h -templates.o: ../../../pikotools/textstream/types.h ../../db/dbitemquery.h -templates.o: ../../db/dbitemcolumns.h ../../core/user.h ../../core/group.h -templates.o: ../../core/dircontainer.h ../../core/ugcontainer.h -templates.o: ../../core/log.h ../../core/textstream.h -templates.o: ../../core/logmanipulators.h ../../core/slog.h ../../core/cur.h -templates.o: ../../core/request.h ../../core/error.h ../../core/config.h -templates.o: ../../core/htmlfilter.h ../../templates/htmltextstream.h -templates.o: ../../../pikotools/space/spacetojson.h ../../core/session.h -templates.o: ../../core/user.h ../../core/plugindata.h ../../core/rebus.h -templates.o: ../../core/ipban.h ../../core/mount.h ../../templates/locale.h -templates.o: ../../notify/notify.h ../../notify/notifypool.h -templates.o: ../../templates/patterns.h ../../notify/notifythread.h -templates.o: ../../core/basethread.h ../../notify/templatesnotify.h -templates.o: ../../core/users.h ../../core/ugcontainer.h -templates.o: ../../core/lastcontainer.h ../../core/mounts.h -templates.o: ../../core/mountparser.h ../../core/crypt.h ../../core/run.h -templates.o: ../../core/users.h groups.h ../../core/loadavg.h -templates.o: ../../core/image.h ../../core/threadmanager.h -templates.o: ../../core/timezones.h ../../core/timezone.h -templates.o: ../../core/sessionmanager.h ../../core/htmlfilter.h -templates.o: ../../core/plugin.h ../../core/pluginmsg.h ../../core/system.h -templates.o: ../../core/sessionmanager.h ../../core/sessioncontainer.h -templates.o: ../../core/ipbancontainer.h ../../functions/functions.h -templates.o: ../../functions/functionbase.h ../../core/request.h -templates.o: ../../core/synchro.h ../../functions/functionparser.h -templates.o: ../../functions/account.h ../../functions/adduser.h -templates.o: ../../functions/cat.h ../../functions/chmod.h -templates.o: ../../functions/privchanger.h ../../functions/chown.h -templates.o: ../../functions/ckeditor.h ../../functions/cp.h -templates.o: ../../functions/default.h ../../functions/download.h -templates.o: ../../functions/emacs.h ../../functions/env.h -templates.o: ../../functions/imgcrop.h ../../functions/last.h -templates.o: ../../functions/login.h ../../functions/logout.h -templates.o: ../../functions/ln.h ../../functions/ls.h ../../functions/man.h -templates.o: ../../functions/meta.h ../../functions/mkdir.h -templates.o: ../../functions/mv.h ../../functions/nicedit.h -templates.o: ../../functions/node.h ../../functions/passwd.h -templates.o: ../../functions/priv.h ../../functions/pw.h -templates.o: ../../functions/reload.h ../../functions/rm.h -templates.o: ../../functions/rmuser.h ../../functions/sort.h -templates.o: ../../functions/specialdefault.h ../../functions/stat.h -templates.o: ../../functions/subject.h ../../functions/template.h -templates.o: ../../functions/tinymce.h ../../functions/uname.h -templates.o: ../../functions/upload.h ../../functions/uptime.h -templates.o: ../../functions/who.h ../../functions/vim.h groupinfo.h -templates.o: ../../core/misc.h +templates.o: ../../../pikotools/textstream/types.h +templates.o: ../../../winix/db/dbitemquery.h +templates.o: ../../../winix/db/dbitemcolumns.h ../../../winix/core/user.h +templates.o: ../../../winix/core/group.h ../../../winix/core/dircontainer.h +templates.o: ../../../winix/core/ugcontainer.h ../../../winix/core/log.h +templates.o: ../../../winix/core/textstream.h +templates.o: ../../../winix/core/logmanipulators.h ../../../winix/core/slog.h +templates.o: ../../../winix/core/cur.h ../../../winix/core/request.h +templates.o: ../../../winix/core/error.h ../../../winix/core/config.h +templates.o: ../../../winix/core/htmlfilter.h +templates.o: ../../../winix/templates/htmltextstream.h +templates.o: ../../../pikotools/space/spacetojson.h +templates.o: ../../../winix/core/session.h ../../../winix/core/user.h +templates.o: ../../../winix/core/plugindata.h ../../../winix/core/rebus.h +templates.o: ../../../winix/core/ipban.h ../../../winix/core/mount.h +templates.o: ../../../winix/templates/locale.h ../../../winix/notify/notify.h +templates.o: ../../../winix/notify/notifypool.h +templates.o: ../../../winix/templates/patterns.h +templates.o: ../../../winix/notify/notifythread.h +templates.o: ../../../winix/core/basethread.h +templates.o: ../../../winix/notify/templatesnotify.h +templates.o: ../../../winix/core/users.h ../../../winix/core/ugcontainer.h +templates.o: ../../../winix/core/lastcontainer.h ../../../winix/core/mounts.h +templates.o: ../../../winix/core/mountparser.h ../../../winix/core/crypt.h +templates.o: ../../../winix/core/run.h ../../../winix/core/users.h groups.h +templates.o: ../../../winix/core/loadavg.h ../../../winix/core/image.h +templates.o: ../../../winix/core/threadmanager.h +templates.o: ../../../winix/core/timezones.h ../../../winix/core/timezone.h +templates.o: ../../../winix/core/sessionmanager.h +templates.o: ../../../winix/core/htmlfilter.h ../../../winix/core/plugin.h +templates.o: ../../../winix/core/pluginmsg.h ../../../winix/core/system.h +templates.o: ../../../winix/core/sessionmanager.h +templates.o: ../../../winix/core/sessioncontainer.h +templates.o: ../../../winix/core/ipbancontainer.h +templates.o: ../../../winix/functions/functions.h +templates.o: ../../../winix/functions/functionbase.h +templates.o: ../../../winix/core/request.h ../../../winix/core/synchro.h +templates.o: ../../../winix/functions/functionparser.h +templates.o: ../../../winix/functions/account.h +templates.o: ../../../winix/functions/adduser.h +templates.o: ../../../winix/functions/cat.h ../../../winix/functions/chmod.h +templates.o: ../../../winix/functions/privchanger.h +templates.o: ../../../winix/functions/chown.h +templates.o: ../../../winix/functions/ckeditor.h +templates.o: ../../../winix/functions/cp.h ../../../winix/functions/default.h +templates.o: ../../../winix/functions/download.h +templates.o: ../../../winix/functions/emacs.h ../../../winix/functions/env.h +templates.o: ../../../winix/functions/imgcrop.h +templates.o: ../../../winix/functions/last.h ../../../winix/functions/login.h +templates.o: ../../../winix/functions/logout.h ../../../winix/functions/ln.h +templates.o: ../../../winix/functions/ls.h ../../../winix/functions/man.h +templates.o: ../../../winix/functions/meta.h ../../../winix/functions/mkdir.h +templates.o: ../../../winix/functions/mv.h ../../../winix/functions/nicedit.h +templates.o: ../../../winix/functions/node.h +templates.o: ../../../winix/functions/passwd.h +templates.o: ../../../winix/functions/priv.h ../../../winix/functions/pw.h +templates.o: ../../../winix/functions/reload.h ../../../winix/functions/rm.h +templates.o: ../../../winix/functions/rmuser.h +templates.o: ../../../winix/functions/sort.h +templates.o: ../../../winix/functions/specialdefault.h +templates.o: ../../../winix/functions/stat.h +templates.o: ../../../winix/functions/subject.h +templates.o: ../../../winix/functions/template.h +templates.o: ../../../winix/functions/tinymce.h +templates.o: ../../../winix/functions/uname.h +templates.o: ../../../winix/functions/upload.h +templates.o: ../../../winix/functions/uptime.h ../../../winix/functions/who.h +templates.o: ../../../winix/functions/vim.h groupinfo.h +templates.o: ../../../winix/core/misc.h diff --git a/plugins/menu/Makefile b/plugins/menu/Makefile index 564620d..adb1f10 100755 --- a/plugins/menu/Makefile +++ b/plugins/menu/Makefile @@ -6,22 +6,23 @@ name = menu.so all: $(name) $(name): $(o) - $(CXX) -shared -Wl,-soname,$(name).so -o $(name) $(CXXFLAGS) $(LDFLAGS) *.o + $(CXX) -shared -Wl,-soname,$(name) -o $(name) $(CXXFLAGS) $(CXXWINIXINCLUDEFLAGS) $(LDFLAGS) *.o %.o: %.cpp - $(CXX) -c $(CXXFLAGS) $< + $(CXX) -c $(CXXFLAGS) $(CXXWINIXINCLUDEFLAGS) $< depend: - makedepend -Y. -I../.. -I../../../ezc/src -I../../../pikotools -I../../../tito/src -f- *.cpp > Makefile.dep + makedepend -Y. $(CXXWINIXINCLUDEFLAGS) -f- *.cpp > Makefile.dep echo -n "o = " > Makefile.o.dep ls -1 *.cpp | xargs -I foo echo -n foo " " | sed -E "s/([^\.]*)\.cpp[ ]/\1\.o/g" >> Makefile.o.dep clean: rm -f *.o + rm -f *.so rm -f $(name) include Makefile.dep diff --git a/plugins/menu/Makefile.dep b/plugins/menu/Makefile.dep index f3db158..143030d 100755 --- a/plugins/menu/Makefile.dep +++ b/plugins/menu/Makefile.dep @@ -1,107 +1,132 @@ # DO NOT DELETE -cache.o: cache.h ../../core/item.h ../../../pikotools/space/space.h +cache.o: cache.h ../../../winix/core/item.h ../../../pikotools/space/space.h cache.o: ../../../pikotools/textstream/types.h ../../../pikotools/date/date.h -cache.o: ../../core/dirs.h ../../core/item.h ../../core/dircontainer.h -cache.o: ../../db/db.h ../../db/dbbase.h ../../db/dbconn.h -cache.o: ../../db/dbtextstream.h ../../core/textstream.h ../../core/misc.h -cache.o: ../../core/requesttypes.h ../../../pikotools/textstream/textstream.h +cache.o: ../../../winix/core/dirs.h ../../../winix/core/item.h +cache.o: ../../../winix/core/dircontainer.h ../../../winix/db/db.h +cache.o: ../../../winix/db/dbbase.h ../../../winix/db/dbconn.h +cache.o: ../../../winix/db/dbtextstream.h ../../../winix/core/textstream.h +cache.o: ../../../winix/core/misc.h ../../../winix/core/requesttypes.h +cache.o: ../../../pikotools/textstream/textstream.h cache.o: ../../../pikotools/convert/convert.h cache.o: ../../../pikotools/convert/inttostr.h cache.o: ../../../pikotools/membuffer/membuffer.h cache.o: ../../../pikotools/textstream/types.h ../../../pikotools/utf8/utf8.h -cache.o: ../../core/error.h ../../../pikotools/space/spaceparser.h -cache.o: ../../../pikotools/space/space.h ../../db/dbitemquery.h -cache.o: ../../db/dbitemcolumns.h ../../core/user.h ../../core/group.h -cache.o: ../../core/dircontainer.h ../../core/ugcontainer.h ../../core/log.h -cache.o: ../../core/textstream.h ../../core/logmanipulators.h -cache.o: ../../core/slog.h ../../core/cur.h ../../core/request.h -cache.o: ../../core/error.h ../../core/config.h ../../core/htmlfilter.h -cache.o: ../../templates/htmltextstream.h -cache.o: ../../../pikotools/space/spacetojson.h ../../core/session.h -cache.o: ../../core/user.h ../../core/plugindata.h ../../core/rebus.h -cache.o: ../../core/ipban.h ../../core/mount.h ../../templates/locale.h -cache.o: ../../notify/notify.h ../../notify/notifypool.h -cache.o: ../../templates/patterns.h ../../templates/locale.h -cache.o: ../../templates/localefilter.h ../../../ezc/src/ezc.h +cache.o: ../../../winix/core/error.h ../../../pikotools/space/spaceparser.h +cache.o: ../../../pikotools/space/space.h ../../../winix/db/dbitemquery.h +cache.o: ../../../winix/db/dbitemcolumns.h ../../../winix/core/user.h +cache.o: ../../../winix/core/group.h ../../../winix/core/dircontainer.h +cache.o: ../../../winix/core/ugcontainer.h ../../../winix/core/log.h +cache.o: ../../../winix/core/textstream.h +cache.o: ../../../winix/core/logmanipulators.h ../../../winix/core/slog.h +cache.o: ../../../winix/core/cur.h ../../../winix/core/request.h +cache.o: ../../../winix/core/error.h ../../../winix/core/config.h +cache.o: ../../../winix/core/htmlfilter.h +cache.o: ../../../winix/templates/htmltextstream.h +cache.o: ../../../pikotools/space/spacetojson.h ../../../winix/core/session.h +cache.o: ../../../winix/core/user.h ../../../winix/core/plugindata.h +cache.o: ../../../winix/core/rebus.h ../../../winix/core/ipban.h +cache.o: ../../../winix/core/mount.h ../../../winix/templates/locale.h +cache.o: ../../../winix/notify/notify.h ../../../winix/notify/notifypool.h +cache.o: ../../../winix/templates/patterns.h +cache.o: ../../../winix/templates/locale.h +cache.o: ../../../winix/templates/localefilter.h ../../../ezc/src/ezc.h cache.o: ../../../ezc/src/generator.h ../../../ezc/src/pattern.h cache.o: ../../../ezc/src/functions.h ../../../ezc/src/funinfo.h -cache.o: ../../../ezc/src/stringconv.h ../../notify/notifythread.h -cache.o: ../../core/basethread.h ../../core/synchro.h -cache.o: ../../notify/templatesnotify.h ../../core/config.h -cache.o: ../../core/users.h ../../core/ugcontainer.h -cache.o: ../../core/lastcontainer.h ../../core/misc.h -init.o: ../../core/log.h ../../core/textstream.h ../../core/logmanipulators.h +cache.o: ../../../ezc/src/stringconv.h ../../../winix/notify/notifythread.h +cache.o: ../../../winix/core/basethread.h ../../../winix/core/synchro.h +cache.o: ../../../winix/notify/templatesnotify.h ../../../winix/core/config.h +cache.o: ../../../winix/core/users.h ../../../winix/core/ugcontainer.h +cache.o: ../../../winix/core/lastcontainer.h ../../../winix/core/misc.h +init.o: ../../../winix/core/log.h ../../../winix/core/textstream.h +init.o: ../../../winix/core/logmanipulators.h init.o: ../../../pikotools/textstream/textstream.h init.o: ../../../pikotools/space/space.h init.o: ../../../pikotools/textstream/types.h ../../../pikotools/date/date.h init.o: ../../../pikotools/convert/convert.h init.o: ../../../pikotools/convert/inttostr.h init.o: ../../../pikotools/membuffer/membuffer.h -init.o: ../../../pikotools/textstream/types.h ../../core/slog.h -init.o: ../../core/cur.h ../../core/request.h ../../core/requesttypes.h -init.o: ../../core/item.h ../../core/error.h ../../core/config.h +init.o: ../../../pikotools/textstream/types.h ../../../winix/core/slog.h +init.o: ../../../winix/core/cur.h ../../../winix/core/request.h +init.o: ../../../winix/core/requesttypes.h ../../../winix/core/item.h +init.o: ../../../winix/core/error.h ../../../winix/core/config.h init.o: ../../../pikotools/space/spaceparser.h -init.o: ../../../pikotools/space/space.h ../../core/htmlfilter.h -init.o: ../../templates/htmltextstream.h ../../core/textstream.h -init.o: ../../core/misc.h ../../../pikotools/utf8/utf8.h -init.o: ../../../pikotools/space/spacetojson.h ../../core/session.h -init.o: ../../core/user.h ../../core/plugindata.h ../../core/rebus.h -init.o: ../../core/ipban.h ../../core/mount.h ../../templates/locale.h -init.o: ../../core/plugin.h ../../core/pluginmsg.h ../../core/log.h -init.o: ../../core/system.h ../../core/job.h ../../core/basethread.h -init.o: ../../core/synchro.h ../../core/dirs.h ../../core/dircontainer.h -init.o: ../../db/db.h ../../db/dbbase.h ../../db/dbconn.h -init.o: ../../db/dbtextstream.h ../../core/error.h ../../db/dbitemquery.h -init.o: ../../core/item.h ../../db/dbitemcolumns.h ../../core/user.h -init.o: ../../core/group.h ../../core/dircontainer.h ../../core/ugcontainer.h -init.o: ../../notify/notify.h ../../notify/notifypool.h -init.o: ../../templates/patterns.h ../../templates/locale.h -init.o: ../../templates/localefilter.h ../../../ezc/src/ezc.h +init.o: ../../../pikotools/space/space.h ../../../winix/core/htmlfilter.h +init.o: ../../../winix/templates/htmltextstream.h +init.o: ../../../winix/core/textstream.h ../../../winix/core/misc.h +init.o: ../../../pikotools/utf8/utf8.h ../../../pikotools/space/spacetojson.h +init.o: ../../../winix/core/session.h ../../../winix/core/user.h +init.o: ../../../winix/core/plugindata.h ../../../winix/core/rebus.h +init.o: ../../../winix/core/ipban.h ../../../winix/core/mount.h +init.o: ../../../winix/templates/locale.h ../../../winix/core/plugin.h +init.o: ../../../winix/core/pluginmsg.h ../../../winix/core/log.h +init.o: ../../../winix/core/system.h ../../../winix/core/job.h +init.o: ../../../winix/core/basethread.h ../../../winix/core/synchro.h +init.o: ../../../winix/core/dirs.h ../../../winix/core/dircontainer.h +init.o: ../../../winix/db/db.h ../../../winix/db/dbbase.h +init.o: ../../../winix/db/dbconn.h ../../../winix/db/dbtextstream.h +init.o: ../../../winix/core/error.h ../../../winix/db/dbitemquery.h +init.o: ../../../winix/core/item.h ../../../winix/db/dbitemcolumns.h +init.o: ../../../winix/core/user.h ../../../winix/core/group.h +init.o: ../../../winix/core/dircontainer.h ../../../winix/core/ugcontainer.h +init.o: ../../../winix/notify/notify.h ../../../winix/notify/notifypool.h +init.o: ../../../winix/templates/patterns.h ../../../winix/templates/locale.h +init.o: ../../../winix/templates/localefilter.h ../../../ezc/src/ezc.h init.o: ../../../ezc/src/generator.h ../../../ezc/src/pattern.h init.o: ../../../ezc/src/functions.h ../../../ezc/src/funinfo.h -init.o: ../../../ezc/src/stringconv.h ../../notify/notifythread.h -init.o: ../../core/basethread.h ../../notify/templatesnotify.h -init.o: ../../core/config.h ../../core/users.h ../../core/ugcontainer.h -init.o: ../../core/lastcontainer.h ../../core/mounts.h -init.o: ../../core/mountparser.h ../../core/crypt.h ../../core/run.h -init.o: ../../core/users.h ../../core/groups.h ../../core/group.h -init.o: ../../core/loadavg.h ../../core/image.h ../../core/threadmanager.h -init.o: ../../core/timezones.h ../../core/timezone.h -init.o: ../../core/sessionmanager.h ../../core/sessioncontainer.h -init.o: ../../core/ipbancontainer.h ../../functions/functions.h -init.o: ../../functions/functionbase.h ../../core/request.h -init.o: ../../core/system.h ../../core/synchro.h -init.o: ../../functions/functionparser.h ../../core/cur.h -init.o: ../../functions/account.h ../../functions/adduser.h -init.o: ../../functions/cat.h ../../functions/chmod.h -init.o: ../../functions/privchanger.h ../../functions/chown.h -init.o: ../../functions/ckeditor.h ../../functions/cp.h -init.o: ../../functions/default.h ../../functions/download.h -init.o: ../../functions/emacs.h ../../functions/env.h -init.o: ../../functions/imgcrop.h ../../functions/last.h -init.o: ../../functions/login.h ../../functions/logout.h ../../functions/ln.h -init.o: ../../functions/ls.h ../../functions/man.h ../../functions/meta.h -init.o: ../../functions/mkdir.h ../../functions/mv.h -init.o: ../../functions/nicedit.h ../../functions/node.h -init.o: ../../functions/passwd.h ../../functions/priv.h ../../functions/pw.h -init.o: ../../functions/reload.h ../../functions/rm.h -init.o: ../../functions/rmuser.h ../../functions/sort.h -init.o: ../../functions/specialdefault.h ../../functions/stat.h -init.o: ../../functions/subject.h ../../functions/template.h -init.o: ../../functions/tinymce.h ../../functions/uname.h -init.o: ../../functions/upload.h ../../functions/uptime.h -init.o: ../../functions/who.h ../../functions/vim.h ../../core/htmlfilter.h -init.o: ../../templates/templates.h ../../templates/patterncacher.h -init.o: ../../templates/indexpatterns.h ../../templates/patterns.h -init.o: ../../templates/changepatterns.h ../../templates/htmltextstream.h -init.o: ../../core/sessionmanager.h cache.h ../../core/dirs.h -templates.o: ../../templates/templates.h ../../../ezc/src/ezc.h +init.o: ../../../ezc/src/stringconv.h ../../../winix/notify/notifythread.h +init.o: ../../../winix/core/basethread.h +init.o: ../../../winix/notify/templatesnotify.h ../../../winix/core/config.h +init.o: ../../../winix/core/users.h ../../../winix/core/ugcontainer.h +init.o: ../../../winix/core/lastcontainer.h ../../../winix/core/mounts.h +init.o: ../../../winix/core/mountparser.h ../../../winix/core/crypt.h +init.o: ../../../winix/core/run.h ../../../winix/core/users.h +init.o: ../../../winix/core/groups.h ../../../winix/core/group.h +init.o: ../../../winix/core/loadavg.h ../../../winix/core/image.h +init.o: ../../../winix/core/threadmanager.h ../../../winix/core/timezones.h +init.o: ../../../winix/core/timezone.h ../../../winix/core/sessionmanager.h +init.o: ../../../winix/core/sessioncontainer.h +init.o: ../../../winix/core/ipbancontainer.h +init.o: ../../../winix/functions/functions.h +init.o: ../../../winix/functions/functionbase.h ../../../winix/core/request.h +init.o: ../../../winix/core/system.h ../../../winix/core/synchro.h +init.o: ../../../winix/functions/functionparser.h ../../../winix/core/cur.h +init.o: ../../../winix/functions/account.h ../../../winix/functions/adduser.h +init.o: ../../../winix/functions/cat.h ../../../winix/functions/chmod.h +init.o: ../../../winix/functions/privchanger.h +init.o: ../../../winix/functions/chown.h ../../../winix/functions/ckeditor.h +init.o: ../../../winix/functions/cp.h ../../../winix/functions/default.h +init.o: ../../../winix/functions/download.h ../../../winix/functions/emacs.h +init.o: ../../../winix/functions/env.h ../../../winix/functions/imgcrop.h +init.o: ../../../winix/functions/last.h ../../../winix/functions/login.h +init.o: ../../../winix/functions/logout.h ../../../winix/functions/ln.h +init.o: ../../../winix/functions/ls.h ../../../winix/functions/man.h +init.o: ../../../winix/functions/meta.h ../../../winix/functions/mkdir.h +init.o: ../../../winix/functions/mv.h ../../../winix/functions/nicedit.h +init.o: ../../../winix/functions/node.h ../../../winix/functions/passwd.h +init.o: ../../../winix/functions/priv.h ../../../winix/functions/pw.h +init.o: ../../../winix/functions/reload.h ../../../winix/functions/rm.h +init.o: ../../../winix/functions/rmuser.h ../../../winix/functions/sort.h +init.o: ../../../winix/functions/specialdefault.h +init.o: ../../../winix/functions/stat.h ../../../winix/functions/subject.h +init.o: ../../../winix/functions/template.h +init.o: ../../../winix/functions/tinymce.h ../../../winix/functions/uname.h +init.o: ../../../winix/functions/upload.h ../../../winix/functions/uptime.h +init.o: ../../../winix/functions/who.h ../../../winix/functions/vim.h +init.o: ../../../winix/core/htmlfilter.h ../../../winix/templates/templates.h +init.o: ../../../winix/templates/patterncacher.h +init.o: ../../../winix/templates/indexpatterns.h +init.o: ../../../winix/templates/patterns.h +init.o: ../../../winix/templates/changepatterns.h +init.o: ../../../winix/templates/htmltextstream.h +init.o: ../../../winix/core/sessionmanager.h cache.h +init.o: ../../../winix/core/dirs.h +templates.o: ../../../winix/templates/templates.h ../../../ezc/src/ezc.h templates.o: ../../../ezc/src/generator.h ../../../ezc/src/pattern.h -templates.o: ../../core/item.h ../../../ezc/src/functions.h +templates.o: ../../../winix/core/item.h ../../../ezc/src/functions.h templates.o: ../../../ezc/src/funinfo.h ../../../ezc/src/stringconv.h -templates.o: ../../../pikotools/utf8/utf8.h ../../core/misc.h -templates.o: ../../core/requesttypes.h +templates.o: ../../../pikotools/utf8/utf8.h ../../../winix/core/misc.h +templates.o: ../../../winix/core/requesttypes.h templates.o: ../../../pikotools/textstream/textstream.h templates.o: ../../../pikotools/space/space.h templates.o: ../../../pikotools/textstream/types.h @@ -110,61 +135,92 @@ templates.o: ../../../pikotools/convert/convert.h templates.o: ../../../pikotools/convert/inttostr.h templates.o: ../../../pikotools/membuffer/membuffer.h templates.o: ../../../pikotools/textstream/types.h -templates.o: ../../templates/patterncacher.h ../../core/item.h -templates.o: ../../templates/indexpatterns.h ../../templates/patterns.h -templates.o: ../../templates/locale.h ../../templates/changepatterns.h -templates.o: ../../templates/htmltextstream.h ../../templates/localefilter.h -templates.o: ../../core/config.h ../../core/cur.h ../../core/system.h -templates.o: ../../core/sessionmanager.h ../../core/htmlfilter.h -templates.o: ../../db/db.h ../../db/dbbase.h ../../db/dbconn.h -templates.o: ../../db/dbtextstream.h ../../core/textstream.h -templates.o: ../../core/error.h ../../../pikotools/space/spaceparser.h -templates.o: ../../../pikotools/space/space.h ../../db/dbitemquery.h -templates.o: ../../db/dbitemcolumns.h ../../core/user.h ../../core/group.h -templates.o: ../../core/dircontainer.h ../../core/ugcontainer.h -templates.o: ../../core/log.h ../../core/textstream.h -templates.o: ../../core/logmanipulators.h ../../core/slog.h ../../core/cur.h -templates.o: ../../core/request.h ../../core/error.h ../../core/config.h -templates.o: ../../core/htmlfilter.h ../../templates/htmltextstream.h -templates.o: ../../../pikotools/space/spacetojson.h ../../core/session.h -templates.o: ../../core/user.h ../../core/plugindata.h ../../core/rebus.h -templates.o: ../../core/ipban.h ../../core/mount.h ../../templates/locale.h -templates.o: ../../core/plugin.h ../../core/pluginmsg.h ../../core/system.h -templates.o: ../../core/job.h ../../core/basethread.h ../../core/synchro.h -templates.o: ../../core/dirs.h ../../core/dircontainer.h -templates.o: ../../notify/notify.h ../../notify/notifypool.h -templates.o: ../../templates/patterns.h ../../notify/notifythread.h -templates.o: ../../core/basethread.h ../../notify/templatesnotify.h -templates.o: ../../core/users.h ../../core/ugcontainer.h -templates.o: ../../core/lastcontainer.h ../../core/mounts.h -templates.o: ../../core/mountparser.h ../../core/crypt.h ../../core/run.h -templates.o: ../../core/users.h ../../core/groups.h ../../core/group.h -templates.o: ../../core/loadavg.h ../../core/image.h -templates.o: ../../core/threadmanager.h ../../core/timezones.h -templates.o: ../../core/timezone.h ../../core/sessionmanager.h -templates.o: ../../core/sessioncontainer.h ../../core/ipbancontainer.h -templates.o: ../../functions/functions.h ../../functions/functionbase.h -templates.o: ../../core/request.h ../../core/synchro.h -templates.o: ../../functions/functionparser.h ../../functions/account.h -templates.o: ../../functions/adduser.h ../../functions/cat.h -templates.o: ../../functions/chmod.h ../../functions/privchanger.h -templates.o: ../../functions/chown.h ../../functions/ckeditor.h -templates.o: ../../functions/cp.h ../../functions/default.h -templates.o: ../../functions/download.h ../../functions/emacs.h -templates.o: ../../functions/env.h ../../functions/imgcrop.h -templates.o: ../../functions/last.h ../../functions/login.h -templates.o: ../../functions/logout.h ../../functions/ln.h -templates.o: ../../functions/ls.h ../../functions/man.h -templates.o: ../../functions/meta.h ../../functions/mkdir.h -templates.o: ../../functions/mv.h ../../functions/nicedit.h -templates.o: ../../functions/node.h ../../functions/passwd.h -templates.o: ../../functions/priv.h ../../functions/pw.h -templates.o: ../../functions/reload.h ../../functions/rm.h -templates.o: ../../functions/rmuser.h ../../functions/sort.h -templates.o: ../../functions/specialdefault.h ../../functions/stat.h -templates.o: ../../functions/subject.h ../../functions/template.h -templates.o: ../../functions/tinymce.h ../../functions/uname.h -templates.o: ../../functions/upload.h ../../functions/uptime.h -templates.o: ../../functions/who.h ../../functions/vim.h ../../core/log.h -templates.o: ../../core/misc.h cache.h ../../core/dirs.h -templates.o: ../../templates/miscspace.h ../../templates/templates.h +templates.o: ../../../winix/templates/patterncacher.h +templates.o: ../../../winix/core/item.h +templates.o: ../../../winix/templates/indexpatterns.h +templates.o: ../../../winix/templates/patterns.h +templates.o: ../../../winix/templates/locale.h +templates.o: ../../../winix/templates/changepatterns.h +templates.o: ../../../winix/templates/htmltextstream.h +templates.o: ../../../winix/templates/localefilter.h +templates.o: ../../../winix/core/config.h ../../../winix/core/cur.h +templates.o: ../../../winix/core/system.h +templates.o: ../../../winix/core/sessionmanager.h +templates.o: ../../../winix/core/htmlfilter.h ../../../winix/db/db.h +templates.o: ../../../winix/db/dbbase.h ../../../winix/db/dbconn.h +templates.o: ../../../winix/db/dbtextstream.h +templates.o: ../../../winix/core/textstream.h ../../../winix/core/error.h +templates.o: ../../../pikotools/space/spaceparser.h +templates.o: ../../../pikotools/space/space.h ../../../winix/db/dbitemquery.h +templates.o: ../../../winix/db/dbitemcolumns.h ../../../winix/core/user.h +templates.o: ../../../winix/core/group.h ../../../winix/core/dircontainer.h +templates.o: ../../../winix/core/ugcontainer.h ../../../winix/core/log.h +templates.o: ../../../winix/core/textstream.h +templates.o: ../../../winix/core/logmanipulators.h ../../../winix/core/slog.h +templates.o: ../../../winix/core/cur.h ../../../winix/core/request.h +templates.o: ../../../winix/core/error.h ../../../winix/core/config.h +templates.o: ../../../winix/core/htmlfilter.h +templates.o: ../../../winix/templates/htmltextstream.h +templates.o: ../../../pikotools/space/spacetojson.h +templates.o: ../../../winix/core/session.h ../../../winix/core/user.h +templates.o: ../../../winix/core/plugindata.h ../../../winix/core/rebus.h +templates.o: ../../../winix/core/ipban.h ../../../winix/core/mount.h +templates.o: ../../../winix/templates/locale.h ../../../winix/core/plugin.h +templates.o: ../../../winix/core/pluginmsg.h ../../../winix/core/system.h +templates.o: ../../../winix/core/job.h ../../../winix/core/basethread.h +templates.o: ../../../winix/core/synchro.h ../../../winix/core/dirs.h +templates.o: ../../../winix/core/dircontainer.h +templates.o: ../../../winix/notify/notify.h +templates.o: ../../../winix/notify/notifypool.h +templates.o: ../../../winix/templates/patterns.h +templates.o: ../../../winix/notify/notifythread.h +templates.o: ../../../winix/core/basethread.h +templates.o: ../../../winix/notify/templatesnotify.h +templates.o: ../../../winix/core/users.h ../../../winix/core/ugcontainer.h +templates.o: ../../../winix/core/lastcontainer.h ../../../winix/core/mounts.h +templates.o: ../../../winix/core/mountparser.h ../../../winix/core/crypt.h +templates.o: ../../../winix/core/run.h ../../../winix/core/users.h +templates.o: ../../../winix/core/groups.h ../../../winix/core/group.h +templates.o: ../../../winix/core/loadavg.h ../../../winix/core/image.h +templates.o: ../../../winix/core/threadmanager.h +templates.o: ../../../winix/core/timezones.h ../../../winix/core/timezone.h +templates.o: ../../../winix/core/sessionmanager.h +templates.o: ../../../winix/core/sessioncontainer.h +templates.o: ../../../winix/core/ipbancontainer.h +templates.o: ../../../winix/functions/functions.h +templates.o: ../../../winix/functions/functionbase.h +templates.o: ../../../winix/core/request.h ../../../winix/core/synchro.h +templates.o: ../../../winix/functions/functionparser.h +templates.o: ../../../winix/functions/account.h +templates.o: ../../../winix/functions/adduser.h +templates.o: ../../../winix/functions/cat.h ../../../winix/functions/chmod.h +templates.o: ../../../winix/functions/privchanger.h +templates.o: ../../../winix/functions/chown.h +templates.o: ../../../winix/functions/ckeditor.h +templates.o: ../../../winix/functions/cp.h ../../../winix/functions/default.h +templates.o: ../../../winix/functions/download.h +templates.o: ../../../winix/functions/emacs.h ../../../winix/functions/env.h +templates.o: ../../../winix/functions/imgcrop.h +templates.o: ../../../winix/functions/last.h ../../../winix/functions/login.h +templates.o: ../../../winix/functions/logout.h ../../../winix/functions/ln.h +templates.o: ../../../winix/functions/ls.h ../../../winix/functions/man.h +templates.o: ../../../winix/functions/meta.h ../../../winix/functions/mkdir.h +templates.o: ../../../winix/functions/mv.h ../../../winix/functions/nicedit.h +templates.o: ../../../winix/functions/node.h +templates.o: ../../../winix/functions/passwd.h +templates.o: ../../../winix/functions/priv.h ../../../winix/functions/pw.h +templates.o: ../../../winix/functions/reload.h ../../../winix/functions/rm.h +templates.o: ../../../winix/functions/rmuser.h +templates.o: ../../../winix/functions/sort.h +templates.o: ../../../winix/functions/specialdefault.h +templates.o: ../../../winix/functions/stat.h +templates.o: ../../../winix/functions/subject.h +templates.o: ../../../winix/functions/template.h +templates.o: ../../../winix/functions/tinymce.h +templates.o: ../../../winix/functions/uname.h +templates.o: ../../../winix/functions/upload.h +templates.o: ../../../winix/functions/uptime.h ../../../winix/functions/who.h +templates.o: ../../../winix/functions/vim.h ../../../winix/core/log.h +templates.o: ../../../winix/core/misc.h cache.h ../../../winix/core/dirs.h +templates.o: ../../../winix/templates/miscspace.h +templates.o: ../../../winix/templates/templates.h diff --git a/plugins/stats/Makefile b/plugins/stats/Makefile index b4bc596..a09c2d9 100755 --- a/plugins/stats/Makefile +++ b/plugins/stats/Makefile @@ -6,22 +6,23 @@ name = stats.so all: $(name) $(name): $(o) - $(CXX) -shared -Wl,-soname,$(name).so -o $(name) $(CXXFLAGS) $(LDFLAGS) *.o + $(CXX) -shared -Wl,-soname,$(name) -o $(name) $(CXXFLAGS) $(CXXWINIXINCLUDEFLAGS) $(LDFLAGS) *.o %.o: %.cpp - $(CXX) -c $(CXXFLAGS) $< + $(CXX) -c $(CXXFLAGS) $(CXXWINIXINCLUDEFLAGS) $< depend: - makedepend -Y. -I../.. -I../../../ezc/src -I../../../pikotools -I../../../tito/src -f- *.cpp > Makefile.dep + makedepend -Y. $(CXXWINIXINCLUDEFLAGS) -f- *.cpp > Makefile.dep echo -n "o = " > Makefile.o.dep ls -1 *.cpp | xargs -I foo echo -n foo " " | sed -E "s/([^\.]*)\.cpp[ ]/\1\.o/g" >> Makefile.o.dep clean: rm -f *.o + rm -f *.so rm -f $(name) include Makefile.dep diff --git a/plugins/stats/Makefile.dep b/plugins/stats/Makefile.dep index 1e17acd..ad55092 100755 --- a/plugins/stats/Makefile.dep +++ b/plugins/stats/Makefile.dep @@ -1,91 +1,119 @@ # DO NOT DELETE bot.o: bot.h -init.o: ../../core/log.h ../../core/textstream.h ../../core/misc.h -init.o: ../../core/item.h ../../../pikotools/space/space.h +init.o: ../../../winix/core/log.h ../../../winix/core/textstream.h +init.o: ../../../winix/core/misc.h ../../../winix/core/item.h +init.o: ../../../pikotools/space/space.h init.o: ../../../pikotools/textstream/types.h ../../../pikotools/date/date.h -init.o: ../../core/requesttypes.h ../../../pikotools/textstream/textstream.h +init.o: ../../../winix/core/requesttypes.h +init.o: ../../../pikotools/textstream/textstream.h init.o: ../../../pikotools/convert/convert.h init.o: ../../../pikotools/convert/inttostr.h init.o: ../../../pikotools/membuffer/membuffer.h init.o: ../../../pikotools/textstream/types.h ../../../pikotools/utf8/utf8.h -init.o: ../../core/logmanipulators.h ../../core/slog.h ../../core/cur.h -init.o: ../../core/request.h ../../core/error.h ../../core/config.h +init.o: ../../../winix/core/logmanipulators.h ../../../winix/core/slog.h +init.o: ../../../winix/core/cur.h ../../../winix/core/request.h +init.o: ../../../winix/core/error.h ../../../winix/core/config.h init.o: ../../../pikotools/space/spaceparser.h -init.o: ../../../pikotools/space/space.h ../../core/htmlfilter.h -init.o: ../../templates/htmltextstream.h ../../core/textstream.h -init.o: ../../../pikotools/space/spacetojson.h ../../core/session.h -init.o: ../../core/user.h ../../core/plugindata.h ../../core/rebus.h -init.o: ../../core/ipban.h ../../core/mount.h ../../templates/locale.h -init.o: ../../core/request.h ../../core/config.h ../../db/db.h -init.o: ../../db/dbbase.h ../../db/dbconn.h ../../db/dbtextstream.h -init.o: ../../core/error.h ../../db/dbitemquery.h ../../core/item.h -init.o: ../../db/dbitemcolumns.h ../../core/user.h ../../core/group.h -init.o: ../../core/dircontainer.h ../../core/ugcontainer.h ../../core/log.h -init.o: bot.h stats.h templates.h ../../core/plugin.h ../../core/pluginmsg.h -init.o: ../../core/system.h ../../core/job.h ../../core/basethread.h -init.o: ../../core/synchro.h ../../core/dirs.h ../../core/dircontainer.h -init.o: ../../notify/notify.h ../../notify/notifypool.h -init.o: ../../templates/patterns.h ../../templates/locale.h -init.o: ../../templates/localefilter.h ../../../ezc/src/ezc.h +init.o: ../../../pikotools/space/space.h ../../../winix/core/htmlfilter.h +init.o: ../../../winix/templates/htmltextstream.h +init.o: ../../../winix/core/textstream.h +init.o: ../../../pikotools/space/spacetojson.h ../../../winix/core/session.h +init.o: ../../../winix/core/user.h ../../../winix/core/plugindata.h +init.o: ../../../winix/core/rebus.h ../../../winix/core/ipban.h +init.o: ../../../winix/core/mount.h ../../../winix/templates/locale.h +init.o: ../../../winix/core/request.h ../../../winix/core/config.h +init.o: ../../../winix/db/db.h ../../../winix/db/dbbase.h +init.o: ../../../winix/db/dbconn.h ../../../winix/db/dbtextstream.h +init.o: ../../../winix/core/error.h ../../../winix/db/dbitemquery.h +init.o: ../../../winix/core/item.h ../../../winix/db/dbitemcolumns.h +init.o: ../../../winix/core/user.h ../../../winix/core/group.h +init.o: ../../../winix/core/dircontainer.h ../../../winix/core/ugcontainer.h +init.o: ../../../winix/core/log.h bot.h stats.h templates.h +init.o: ../../../winix/core/plugin.h ../../../winix/core/pluginmsg.h +init.o: ../../../winix/core/system.h ../../../winix/core/job.h +init.o: ../../../winix/core/basethread.h ../../../winix/core/synchro.h +init.o: ../../../winix/core/dirs.h ../../../winix/core/dircontainer.h +init.o: ../../../winix/notify/notify.h ../../../winix/notify/notifypool.h +init.o: ../../../winix/templates/patterns.h ../../../winix/templates/locale.h +init.o: ../../../winix/templates/localefilter.h ../../../ezc/src/ezc.h init.o: ../../../ezc/src/generator.h ../../../ezc/src/pattern.h init.o: ../../../ezc/src/functions.h ../../../ezc/src/funinfo.h -init.o: ../../../ezc/src/stringconv.h ../../notify/notifythread.h -init.o: ../../core/basethread.h ../../notify/templatesnotify.h -init.o: ../../core/users.h ../../core/ugcontainer.h -init.o: ../../core/lastcontainer.h ../../core/mounts.h -init.o: ../../core/mountparser.h ../../core/crypt.h ../../core/run.h -init.o: ../../core/users.h ../../core/groups.h ../../core/group.h -init.o: ../../core/loadavg.h ../../core/image.h ../../core/threadmanager.h -init.o: ../../core/timezones.h ../../core/timezone.h -init.o: ../../core/sessionmanager.h ../../core/sessioncontainer.h -init.o: ../../core/ipbancontainer.h ../../functions/functions.h -init.o: ../../functions/functionbase.h ../../core/system.h -init.o: ../../core/synchro.h ../../functions/functionparser.h -init.o: ../../core/cur.h ../../functions/account.h ../../functions/adduser.h -init.o: ../../functions/cat.h ../../functions/chmod.h -init.o: ../../functions/privchanger.h ../../functions/chown.h -init.o: ../../functions/ckeditor.h ../../functions/cp.h -init.o: ../../functions/default.h ../../functions/download.h -init.o: ../../functions/emacs.h ../../functions/env.h -init.o: ../../functions/imgcrop.h ../../functions/last.h -init.o: ../../functions/login.h ../../functions/logout.h ../../functions/ln.h -init.o: ../../functions/ls.h ../../functions/man.h ../../functions/meta.h -init.o: ../../functions/mkdir.h ../../functions/mv.h -init.o: ../../functions/nicedit.h ../../functions/node.h -init.o: ../../functions/passwd.h ../../functions/priv.h ../../functions/pw.h -init.o: ../../functions/reload.h ../../functions/rm.h -init.o: ../../functions/rmuser.h ../../functions/sort.h -init.o: ../../functions/specialdefault.h ../../functions/stat.h -init.o: ../../functions/subject.h ../../functions/template.h -init.o: ../../functions/tinymce.h ../../functions/uname.h -init.o: ../../functions/upload.h ../../functions/uptime.h -init.o: ../../functions/who.h ../../functions/vim.h ../../core/htmlfilter.h -init.o: ../../templates/templates.h ../../templates/patterncacher.h -init.o: ../../templates/indexpatterns.h ../../templates/patterns.h -init.o: ../../templates/changepatterns.h ../../templates/htmltextstream.h -init.o: ../../core/sessionmanager.h statssession.h ../../core/plugindata.h -stats.o: stats.h ../../core/config.h ../../core/log.h ../../core/textstream.h -stats.o: ../../core/misc.h ../../core/item.h ../../../pikotools/space/space.h +init.o: ../../../ezc/src/stringconv.h ../../../winix/notify/notifythread.h +init.o: ../../../winix/core/basethread.h +init.o: ../../../winix/notify/templatesnotify.h ../../../winix/core/users.h +init.o: ../../../winix/core/ugcontainer.h ../../../winix/core/lastcontainer.h +init.o: ../../../winix/core/mounts.h ../../../winix/core/mountparser.h +init.o: ../../../winix/core/crypt.h ../../../winix/core/run.h +init.o: ../../../winix/core/users.h ../../../winix/core/groups.h +init.o: ../../../winix/core/group.h ../../../winix/core/loadavg.h +init.o: ../../../winix/core/image.h ../../../winix/core/threadmanager.h +init.o: ../../../winix/core/timezones.h ../../../winix/core/timezone.h +init.o: ../../../winix/core/sessionmanager.h +init.o: ../../../winix/core/sessioncontainer.h +init.o: ../../../winix/core/ipbancontainer.h +init.o: ../../../winix/functions/functions.h +init.o: ../../../winix/functions/functionbase.h ../../../winix/core/system.h +init.o: ../../../winix/core/synchro.h +init.o: ../../../winix/functions/functionparser.h ../../../winix/core/cur.h +init.o: ../../../winix/functions/account.h ../../../winix/functions/adduser.h +init.o: ../../../winix/functions/cat.h ../../../winix/functions/chmod.h +init.o: ../../../winix/functions/privchanger.h +init.o: ../../../winix/functions/chown.h ../../../winix/functions/ckeditor.h +init.o: ../../../winix/functions/cp.h ../../../winix/functions/default.h +init.o: ../../../winix/functions/download.h ../../../winix/functions/emacs.h +init.o: ../../../winix/functions/env.h ../../../winix/functions/imgcrop.h +init.o: ../../../winix/functions/last.h ../../../winix/functions/login.h +init.o: ../../../winix/functions/logout.h ../../../winix/functions/ln.h +init.o: ../../../winix/functions/ls.h ../../../winix/functions/man.h +init.o: ../../../winix/functions/meta.h ../../../winix/functions/mkdir.h +init.o: ../../../winix/functions/mv.h ../../../winix/functions/nicedit.h +init.o: ../../../winix/functions/node.h ../../../winix/functions/passwd.h +init.o: ../../../winix/functions/priv.h ../../../winix/functions/pw.h +init.o: ../../../winix/functions/reload.h ../../../winix/functions/rm.h +init.o: ../../../winix/functions/rmuser.h ../../../winix/functions/sort.h +init.o: ../../../winix/functions/specialdefault.h +init.o: ../../../winix/functions/stat.h ../../../winix/functions/subject.h +init.o: ../../../winix/functions/template.h +init.o: ../../../winix/functions/tinymce.h ../../../winix/functions/uname.h +init.o: ../../../winix/functions/upload.h ../../../winix/functions/uptime.h +init.o: ../../../winix/functions/who.h ../../../winix/functions/vim.h +init.o: ../../../winix/core/htmlfilter.h ../../../winix/templates/templates.h +init.o: ../../../winix/templates/patterncacher.h +init.o: ../../../winix/templates/indexpatterns.h +init.o: ../../../winix/templates/patterns.h +init.o: ../../../winix/templates/changepatterns.h +init.o: ../../../winix/templates/htmltextstream.h +init.o: ../../../winix/core/sessionmanager.h statssession.h +init.o: ../../../winix/core/plugindata.h +stats.o: stats.h ../../../winix/core/config.h ../../../winix/core/log.h +stats.o: ../../../winix/core/textstream.h ../../../winix/core/misc.h +stats.o: ../../../winix/core/item.h ../../../pikotools/space/space.h stats.o: ../../../pikotools/textstream/types.h ../../../pikotools/date/date.h -stats.o: ../../core/requesttypes.h ../../../pikotools/textstream/textstream.h +stats.o: ../../../winix/core/requesttypes.h +stats.o: ../../../pikotools/textstream/textstream.h stats.o: ../../../pikotools/convert/convert.h stats.o: ../../../pikotools/convert/inttostr.h stats.o: ../../../pikotools/membuffer/membuffer.h stats.o: ../../../pikotools/textstream/types.h ../../../pikotools/utf8/utf8.h -stats.o: ../../core/logmanipulators.h ../../core/slog.h ../../core/cur.h -stats.o: ../../core/request.h ../../core/error.h ../../core/config.h +stats.o: ../../../winix/core/logmanipulators.h ../../../winix/core/slog.h +stats.o: ../../../winix/core/cur.h ../../../winix/core/request.h +stats.o: ../../../winix/core/error.h ../../../winix/core/config.h stats.o: ../../../pikotools/space/spaceparser.h -stats.o: ../../../pikotools/space/space.h ../../core/htmlfilter.h -stats.o: ../../templates/htmltextstream.h ../../core/textstream.h -stats.o: ../../../pikotools/space/spacetojson.h ../../core/session.h -stats.o: ../../core/user.h ../../core/plugindata.h ../../core/rebus.h -stats.o: ../../core/ipban.h ../../core/mount.h ../../templates/locale.h -templates.o: templates.h ../../core/plugin.h ../../core/pluginmsg.h -templates.o: ../../core/log.h ../../core/plugindata.h ../../core/config.h +stats.o: ../../../pikotools/space/space.h ../../../winix/core/htmlfilter.h +stats.o: ../../../winix/templates/htmltextstream.h +stats.o: ../../../winix/core/textstream.h +stats.o: ../../../pikotools/space/spacetojson.h ../../../winix/core/session.h +stats.o: ../../../winix/core/user.h ../../../winix/core/plugindata.h +stats.o: ../../../winix/core/rebus.h ../../../winix/core/ipban.h +stats.o: ../../../winix/core/mount.h ../../../winix/templates/locale.h +templates.o: templates.h ../../../winix/core/plugin.h +templates.o: ../../../winix/core/pluginmsg.h ../../../winix/core/log.h +templates.o: ../../../winix/core/plugindata.h ../../../winix/core/config.h templates.o: ../../../pikotools/space/spaceparser.h -templates.o: ../../../pikotools/space/space.h ../../core/htmlfilter.h -templates.o: ../../core/request.h ../../core/requesttypes.h +templates.o: ../../../pikotools/space/space.h +templates.o: ../../../winix/core/htmlfilter.h ../../../winix/core/request.h +templates.o: ../../../winix/core/requesttypes.h templates.o: ../../../pikotools/textstream/textstream.h templates.o: ../../../pikotools/space/space.h templates.o: ../../../pikotools/textstream/types.h @@ -93,59 +121,87 @@ templates.o: ../../../pikotools/date/date.h templates.o: ../../../pikotools/convert/convert.h templates.o: ../../../pikotools/convert/inttostr.h templates.o: ../../../pikotools/membuffer/membuffer.h -templates.o: ../../../pikotools/textstream/types.h ../../core/item.h -templates.o: ../../core/error.h ../../core/textstream.h ../../core/misc.h -templates.o: ../../../pikotools/utf8/utf8.h ../../templates/htmltextstream.h -templates.o: ../../core/textstream.h ../../../pikotools/space/spacetojson.h -templates.o: ../../core/system.h ../../core/job.h ../../core/basethread.h -templates.o: ../../core/synchro.h ../../core/dirs.h ../../core/dircontainer.h -templates.o: ../../db/db.h ../../db/dbbase.h ../../db/dbconn.h -templates.o: ../../db/dbtextstream.h ../../core/error.h -templates.o: ../../db/dbitemquery.h ../../core/item.h -templates.o: ../../db/dbitemcolumns.h ../../core/user.h ../../core/group.h -templates.o: ../../core/dircontainer.h ../../core/ugcontainer.h -templates.o: ../../notify/notify.h ../../notify/notifypool.h -templates.o: ../../templates/locale.h ../../templates/patterns.h -templates.o: ../../templates/locale.h ../../templates/localefilter.h -templates.o: ../../../ezc/src/ezc.h ../../../ezc/src/generator.h -templates.o: ../../../ezc/src/pattern.h ../../../ezc/src/functions.h -templates.o: ../../../ezc/src/funinfo.h ../../../ezc/src/stringconv.h -templates.o: ../../notify/notifythread.h ../../core/basethread.h -templates.o: ../../notify/templatesnotify.h ../../core/config.h -templates.o: ../../core/users.h ../../core/user.h ../../core/ugcontainer.h -templates.o: ../../core/lastcontainer.h ../../core/cur.h ../../core/session.h -templates.o: ../../core/rebus.h ../../core/ipban.h ../../core/mount.h -templates.o: ../../core/mounts.h ../../core/mountparser.h ../../core/crypt.h -templates.o: ../../core/run.h ../../core/users.h ../../core/groups.h -templates.o: ../../core/group.h ../../core/loadavg.h ../../core/image.h -templates.o: ../../core/threadmanager.h ../../core/timezones.h -templates.o: ../../core/timezone.h ../../core/sessionmanager.h -templates.o: ../../core/sessioncontainer.h ../../core/ipbancontainer.h -templates.o: ../../functions/functions.h ../../functions/functionbase.h -templates.o: ../../core/request.h ../../core/system.h ../../core/synchro.h -templates.o: ../../functions/functionparser.h ../../core/cur.h -templates.o: ../../functions/account.h ../../functions/adduser.h -templates.o: ../../functions/cat.h ../../functions/chmod.h -templates.o: ../../functions/privchanger.h ../../functions/chown.h -templates.o: ../../functions/ckeditor.h ../../functions/cp.h -templates.o: ../../functions/default.h ../../functions/download.h -templates.o: ../../functions/emacs.h ../../functions/env.h -templates.o: ../../functions/imgcrop.h ../../functions/last.h -templates.o: ../../functions/login.h ../../functions/logout.h -templates.o: ../../functions/ln.h ../../functions/ls.h ../../functions/man.h -templates.o: ../../functions/meta.h ../../functions/mkdir.h -templates.o: ../../functions/mv.h ../../functions/nicedit.h -templates.o: ../../functions/node.h ../../functions/passwd.h -templates.o: ../../functions/priv.h ../../functions/pw.h -templates.o: ../../functions/reload.h ../../functions/rm.h -templates.o: ../../functions/rmuser.h ../../functions/sort.h -templates.o: ../../functions/specialdefault.h ../../functions/stat.h -templates.o: ../../functions/subject.h ../../functions/template.h -templates.o: ../../functions/tinymce.h ../../functions/uname.h -templates.o: ../../functions/upload.h ../../functions/uptime.h -templates.o: ../../functions/who.h ../../functions/vim.h -templates.o: ../../core/htmlfilter.h ../../templates/templates.h -templates.o: ../../templates/patterncacher.h ../../templates/indexpatterns.h -templates.o: ../../templates/patterns.h ../../templates/changepatterns.h -templates.o: ../../templates/htmltextstream.h ../../core/sessionmanager.h -templates.o: ../../core/misc.h stats.h ../../templates/misc.h +templates.o: ../../../pikotools/textstream/types.h ../../../winix/core/item.h +templates.o: ../../../winix/core/error.h ../../../winix/core/textstream.h +templates.o: ../../../winix/core/misc.h ../../../pikotools/utf8/utf8.h +templates.o: ../../../winix/templates/htmltextstream.h +templates.o: ../../../winix/core/textstream.h +templates.o: ../../../pikotools/space/spacetojson.h +templates.o: ../../../winix/core/system.h ../../../winix/core/job.h +templates.o: ../../../winix/core/basethread.h ../../../winix/core/synchro.h +templates.o: ../../../winix/core/dirs.h ../../../winix/core/dircontainer.h +templates.o: ../../../winix/db/db.h ../../../winix/db/dbbase.h +templates.o: ../../../winix/db/dbconn.h ../../../winix/db/dbtextstream.h +templates.o: ../../../winix/core/error.h ../../../winix/db/dbitemquery.h +templates.o: ../../../winix/core/item.h ../../../winix/db/dbitemcolumns.h +templates.o: ../../../winix/core/user.h ../../../winix/core/group.h +templates.o: ../../../winix/core/dircontainer.h +templates.o: ../../../winix/core/ugcontainer.h ../../../winix/notify/notify.h +templates.o: ../../../winix/notify/notifypool.h +templates.o: ../../../winix/templates/locale.h +templates.o: ../../../winix/templates/patterns.h +templates.o: ../../../winix/templates/locale.h +templates.o: ../../../winix/templates/localefilter.h ../../../ezc/src/ezc.h +templates.o: ../../../ezc/src/generator.h ../../../ezc/src/pattern.h +templates.o: ../../../ezc/src/functions.h ../../../ezc/src/funinfo.h +templates.o: ../../../ezc/src/stringconv.h +templates.o: ../../../winix/notify/notifythread.h +templates.o: ../../../winix/core/basethread.h +templates.o: ../../../winix/notify/templatesnotify.h +templates.o: ../../../winix/core/config.h ../../../winix/core/users.h +templates.o: ../../../winix/core/user.h ../../../winix/core/ugcontainer.h +templates.o: ../../../winix/core/lastcontainer.h ../../../winix/core/cur.h +templates.o: ../../../winix/core/session.h ../../../winix/core/rebus.h +templates.o: ../../../winix/core/ipban.h ../../../winix/core/mount.h +templates.o: ../../../winix/core/mounts.h ../../../winix/core/mountparser.h +templates.o: ../../../winix/core/crypt.h ../../../winix/core/run.h +templates.o: ../../../winix/core/users.h ../../../winix/core/groups.h +templates.o: ../../../winix/core/group.h ../../../winix/core/loadavg.h +templates.o: ../../../winix/core/image.h ../../../winix/core/threadmanager.h +templates.o: ../../../winix/core/timezones.h ../../../winix/core/timezone.h +templates.o: ../../../winix/core/sessionmanager.h +templates.o: ../../../winix/core/sessioncontainer.h +templates.o: ../../../winix/core/ipbancontainer.h +templates.o: ../../../winix/functions/functions.h +templates.o: ../../../winix/functions/functionbase.h +templates.o: ../../../winix/core/request.h ../../../winix/core/system.h +templates.o: ../../../winix/core/synchro.h +templates.o: ../../../winix/functions/functionparser.h +templates.o: ../../../winix/core/cur.h ../../../winix/functions/account.h +templates.o: ../../../winix/functions/adduser.h +templates.o: ../../../winix/functions/cat.h ../../../winix/functions/chmod.h +templates.o: ../../../winix/functions/privchanger.h +templates.o: ../../../winix/functions/chown.h +templates.o: ../../../winix/functions/ckeditor.h +templates.o: ../../../winix/functions/cp.h ../../../winix/functions/default.h +templates.o: ../../../winix/functions/download.h +templates.o: ../../../winix/functions/emacs.h ../../../winix/functions/env.h +templates.o: ../../../winix/functions/imgcrop.h +templates.o: ../../../winix/functions/last.h ../../../winix/functions/login.h +templates.o: ../../../winix/functions/logout.h ../../../winix/functions/ln.h +templates.o: ../../../winix/functions/ls.h ../../../winix/functions/man.h +templates.o: ../../../winix/functions/meta.h ../../../winix/functions/mkdir.h +templates.o: ../../../winix/functions/mv.h ../../../winix/functions/nicedit.h +templates.o: ../../../winix/functions/node.h +templates.o: ../../../winix/functions/passwd.h +templates.o: ../../../winix/functions/priv.h ../../../winix/functions/pw.h +templates.o: ../../../winix/functions/reload.h ../../../winix/functions/rm.h +templates.o: ../../../winix/functions/rmuser.h +templates.o: ../../../winix/functions/sort.h +templates.o: ../../../winix/functions/specialdefault.h +templates.o: ../../../winix/functions/stat.h +templates.o: ../../../winix/functions/subject.h +templates.o: ../../../winix/functions/template.h +templates.o: ../../../winix/functions/tinymce.h +templates.o: ../../../winix/functions/uname.h +templates.o: ../../../winix/functions/upload.h +templates.o: ../../../winix/functions/uptime.h ../../../winix/functions/who.h +templates.o: ../../../winix/functions/vim.h ../../../winix/core/htmlfilter.h +templates.o: ../../../winix/templates/templates.h +templates.o: ../../../winix/templates/patterncacher.h +templates.o: ../../../winix/templates/indexpatterns.h +templates.o: ../../../winix/templates/patterns.h +templates.o: ../../../winix/templates/changepatterns.h +templates.o: ../../../winix/templates/htmltextstream.h +templates.o: ../../../winix/core/sessionmanager.h ../../../winix/core/misc.h +templates.o: stats.h ../../../winix/templates/misc.h diff --git a/plugins/thread/Makefile b/plugins/thread/Makefile index ec35662..79826f7 100755 --- a/plugins/thread/Makefile +++ b/plugins/thread/Makefile @@ -6,22 +6,23 @@ name = thread.so all: $(name) $(name): $(o) - $(CXX) -shared -Wl,-soname,$(name).so -o $(name) $(CXXFLAGS) $(LDFLAGS) *.o + $(CXX) -shared -Wl,-soname,$(name) -o $(name) $(CXXFLAGS) $(CXXWINIXINCLUDEFLAGS) $(LDFLAGS) *.o %.o: %.cpp - $(CXX) -c $(CXXFLAGS) $< + $(CXX) -c $(CXXFLAGS) $(CXXWINIXINCLUDEFLAGS) $< depend: - makedepend -Y. -I../.. -I../../../ezc/src -I../../../pikotools -I../../../tito/src -f- *.cpp > Makefile.dep + makedepend -Y. $(CXXWINIXINCLUDEFLAGS) -f- *.cpp > Makefile.dep echo -n "o = " > Makefile.o.dep ls -1 *.cpp | xargs -I foo echo -n foo " " | sed -E "s/([^\.]*)\.cpp[ ]/\1\.o/g" >> Makefile.o.dep clean: rm -f *.o + rm -f *.so rm -f $(name) include Makefile.dep diff --git a/plugins/thread/Makefile.dep b/plugins/thread/Makefile.dep index 5d2c55e..1c5a462 100755 --- a/plugins/thread/Makefile.dep +++ b/plugins/thread/Makefile.dep @@ -1,73 +1,108 @@ # DO NOT DELETE -createthread.o: createthread.h ../../functions/functionbase.h -createthread.o: ../../core/item.h ../../../pikotools/space/space.h +createthread.o: createthread.h ../../../winix/functions/functionbase.h +createthread.o: ../../../winix/core/item.h ../../../pikotools/space/space.h createthread.o: ../../../pikotools/textstream/types.h -createthread.o: ../../../pikotools/date/date.h ../../db/db.h -createthread.o: ../../db/dbbase.h ../../db/dbconn.h ../../db/dbtextstream.h -createthread.o: ../../core/textstream.h ../../core/misc.h ../../core/item.h -createthread.o: ../../core/requesttypes.h +createthread.o: ../../../pikotools/date/date.h ../../../winix/db/db.h +createthread.o: ../../../winix/db/dbbase.h ../../../winix/db/dbconn.h +createthread.o: ../../../winix/db/dbtextstream.h +createthread.o: ../../../winix/core/textstream.h ../../../winix/core/misc.h +createthread.o: ../../../winix/core/item.h ../../../winix/core/requesttypes.h createthread.o: ../../../pikotools/textstream/textstream.h createthread.o: ../../../pikotools/convert/convert.h createthread.o: ../../../pikotools/convert/inttostr.h createthread.o: ../../../pikotools/membuffer/membuffer.h createthread.o: ../../../pikotools/textstream/types.h -createthread.o: ../../../pikotools/utf8/utf8.h ../../core/error.h +createthread.o: ../../../pikotools/utf8/utf8.h ../../../winix/core/error.h createthread.o: ../../../pikotools/space/spaceparser.h -createthread.o: ../../../pikotools/space/space.h ../../db/dbitemquery.h -createthread.o: ../../db/dbitemcolumns.h ../../core/user.h ../../core/group.h -createthread.o: ../../core/dircontainer.h ../../core/ugcontainer.h -createthread.o: ../../core/log.h ../../core/textstream.h -createthread.o: ../../core/logmanipulators.h ../../core/slog.h -createthread.o: ../../core/cur.h ../../core/request.h ../../core/error.h -createthread.o: ../../core/config.h ../../core/htmlfilter.h -createthread.o: ../../templates/htmltextstream.h -createthread.o: ../../../pikotools/space/spacetojson.h ../../core/session.h -createthread.o: ../../core/user.h ../../core/plugindata.h ../../core/rebus.h -createthread.o: ../../core/ipban.h ../../core/mount.h -createthread.o: ../../templates/locale.h ../../core/request.h -createthread.o: ../../core/config.h ../../core/system.h ../../core/job.h -createthread.o: ../../core/basethread.h ../../core/synchro.h -createthread.o: ../../core/dirs.h ../../core/dircontainer.h -createthread.o: ../../notify/notify.h ../../notify/notifypool.h -createthread.o: ../../templates/patterns.h ../../templates/locale.h -createthread.o: ../../templates/localefilter.h ../../../ezc/src/ezc.h -createthread.o: ../../../ezc/src/generator.h ../../../ezc/src/pattern.h -createthread.o: ../../../ezc/src/functions.h ../../../ezc/src/funinfo.h -createthread.o: ../../../ezc/src/stringconv.h ../../notify/notifythread.h -createthread.o: ../../core/basethread.h ../../notify/templatesnotify.h -createthread.o: ../../core/users.h ../../core/ugcontainer.h -createthread.o: ../../core/lastcontainer.h ../../core/mounts.h -createthread.o: ../../core/mountparser.h ../../core/crypt.h ../../core/run.h -createthread.o: ../../core/users.h ../../core/groups.h ../../core/group.h -createthread.o: ../../core/loadavg.h ../../core/image.h -createthread.o: ../../core/threadmanager.h ../../core/timezones.h -createthread.o: ../../core/timezone.h ../../core/synchro.h tdb.h thread.h -createthread.o: ../../db/dbbase.h threadinfo.h ../../functions/functions.h -createthread.o: ../../functions/functionbase.h -createthread.o: ../../functions/functionparser.h ../../core/cur.h -createthread.o: ../../functions/account.h ../../functions/adduser.h -createthread.o: ../../functions/cat.h ../../functions/chmod.h -createthread.o: ../../functions/privchanger.h ../../functions/chown.h -createthread.o: ../../functions/ckeditor.h ../../functions/cp.h -createthread.o: ../../functions/default.h ../../functions/download.h -createthread.o: ../../functions/emacs.h ../../functions/env.h -createthread.o: ../../functions/imgcrop.h ../../functions/last.h -createthread.o: ../../functions/login.h ../../functions/logout.h -createthread.o: ../../functions/ln.h ../../functions/ls.h -createthread.o: ../../functions/man.h ../../functions/meta.h -createthread.o: ../../functions/mkdir.h ../../functions/mv.h -createthread.o: ../../functions/nicedit.h ../../functions/node.h -createthread.o: ../../functions/passwd.h ../../functions/priv.h -createthread.o: ../../functions/pw.h ../../functions/reload.h -createthread.o: ../../functions/rm.h ../../functions/rmuser.h -createthread.o: ../../functions/sort.h ../../functions/specialdefault.h -createthread.o: ../../functions/stat.h ../../functions/subject.h -createthread.o: ../../functions/template.h ../../functions/tinymce.h -createthread.o: ../../functions/uname.h ../../functions/upload.h -createthread.o: ../../functions/uptime.h ../../functions/who.h -createthread.o: ../../functions/vim.h ../../core/htmlfilter.h -funthread.o: ../../core/misc.h ../../core/item.h ../../core/requesttypes.h +createthread.o: ../../../pikotools/space/space.h +createthread.o: ../../../winix/db/dbitemquery.h +createthread.o: ../../../winix/db/dbitemcolumns.h ../../../winix/core/user.h +createthread.o: ../../../winix/core/group.h +createthread.o: ../../../winix/core/dircontainer.h +createthread.o: ../../../winix/core/ugcontainer.h ../../../winix/core/log.h +createthread.o: ../../../winix/core/textstream.h +createthread.o: ../../../winix/core/logmanipulators.h +createthread.o: ../../../winix/core/slog.h ../../../winix/core/cur.h +createthread.o: ../../../winix/core/request.h ../../../winix/core/error.h +createthread.o: ../../../winix/core/config.h ../../../winix/core/htmlfilter.h +createthread.o: ../../../winix/templates/htmltextstream.h +createthread.o: ../../../pikotools/space/spacetojson.h +createthread.o: ../../../winix/core/session.h ../../../winix/core/user.h +createthread.o: ../../../winix/core/plugindata.h ../../../winix/core/rebus.h +createthread.o: ../../../winix/core/ipban.h ../../../winix/core/mount.h +createthread.o: ../../../winix/templates/locale.h +createthread.o: ../../../winix/core/request.h ../../../winix/core/config.h +createthread.o: ../../../winix/core/system.h ../../../winix/core/job.h +createthread.o: ../../../winix/core/basethread.h +createthread.o: ../../../winix/core/synchro.h ../../../winix/core/dirs.h +createthread.o: ../../../winix/core/dircontainer.h +createthread.o: ../../../winix/notify/notify.h +createthread.o: ../../../winix/notify/notifypool.h +createthread.o: ../../../winix/templates/patterns.h +createthread.o: ../../../winix/templates/locale.h +createthread.o: ../../../winix/templates/localefilter.h +createthread.o: ../../../ezc/src/ezc.h ../../../ezc/src/generator.h +createthread.o: ../../../ezc/src/pattern.h ../../../ezc/src/functions.h +createthread.o: ../../../ezc/src/funinfo.h ../../../ezc/src/stringconv.h +createthread.o: ../../../winix/notify/notifythread.h +createthread.o: ../../../winix/core/basethread.h +createthread.o: ../../../winix/notify/templatesnotify.h +createthread.o: ../../../winix/core/users.h ../../../winix/core/ugcontainer.h +createthread.o: ../../../winix/core/lastcontainer.h +createthread.o: ../../../winix/core/mounts.h +createthread.o: ../../../winix/core/mountparser.h ../../../winix/core/crypt.h +createthread.o: ../../../winix/core/run.h ../../../winix/core/users.h +createthread.o: ../../../winix/core/groups.h ../../../winix/core/group.h +createthread.o: ../../../winix/core/loadavg.h ../../../winix/core/image.h +createthread.o: ../../../winix/core/threadmanager.h +createthread.o: ../../../winix/core/timezones.h +createthread.o: ../../../winix/core/timezone.h ../../../winix/core/synchro.h +createthread.o: tdb.h thread.h ../../../winix/db/dbbase.h threadinfo.h +createthread.o: ../../../winix/functions/functions.h +createthread.o: ../../../winix/functions/functionbase.h +createthread.o: ../../../winix/functions/functionparser.h +createthread.o: ../../../winix/core/cur.h ../../../winix/functions/account.h +createthread.o: ../../../winix/functions/adduser.h +createthread.o: ../../../winix/functions/cat.h +createthread.o: ../../../winix/functions/chmod.h +createthread.o: ../../../winix/functions/privchanger.h +createthread.o: ../../../winix/functions/chown.h +createthread.o: ../../../winix/functions/ckeditor.h +createthread.o: ../../../winix/functions/cp.h +createthread.o: ../../../winix/functions/default.h +createthread.o: ../../../winix/functions/download.h +createthread.o: ../../../winix/functions/emacs.h +createthread.o: ../../../winix/functions/env.h +createthread.o: ../../../winix/functions/imgcrop.h +createthread.o: ../../../winix/functions/last.h +createthread.o: ../../../winix/functions/login.h +createthread.o: ../../../winix/functions/logout.h +createthread.o: ../../../winix/functions/ln.h ../../../winix/functions/ls.h +createthread.o: ../../../winix/functions/man.h +createthread.o: ../../../winix/functions/meta.h +createthread.o: ../../../winix/functions/mkdir.h +createthread.o: ../../../winix/functions/mv.h +createthread.o: ../../../winix/functions/nicedit.h +createthread.o: ../../../winix/functions/node.h +createthread.o: ../../../winix/functions/passwd.h +createthread.o: ../../../winix/functions/priv.h ../../../winix/functions/pw.h +createthread.o: ../../../winix/functions/reload.h +createthread.o: ../../../winix/functions/rm.h +createthread.o: ../../../winix/functions/rmuser.h +createthread.o: ../../../winix/functions/sort.h +createthread.o: ../../../winix/functions/specialdefault.h +createthread.o: ../../../winix/functions/stat.h +createthread.o: ../../../winix/functions/subject.h +createthread.o: ../../../winix/functions/template.h +createthread.o: ../../../winix/functions/tinymce.h +createthread.o: ../../../winix/functions/uname.h +createthread.o: ../../../winix/functions/upload.h +createthread.o: ../../../winix/functions/uptime.h +createthread.o: ../../../winix/functions/who.h ../../../winix/functions/vim.h +createthread.o: ../../../winix/core/htmlfilter.h +funthread.o: ../../../winix/core/misc.h ../../../winix/core/item.h +funthread.o: ../../../winix/core/requesttypes.h funthread.o: ../../../pikotools/textstream/textstream.h funthread.o: ../../../pikotools/space/space.h funthread.o: ../../../pikotools/textstream/types.h @@ -77,351 +112,489 @@ funthread.o: ../../../pikotools/convert/inttostr.h funthread.o: ../../../pikotools/membuffer/membuffer.h funthread.o: ../../../pikotools/textstream/types.h funthread.o: ../../../pikotools/utf8/utf8.h funthread.h -funthread.o: ../../functions/functionbase.h ../../core/item.h ../../db/db.h -funthread.o: ../../db/dbbase.h ../../db/dbconn.h ../../db/dbtextstream.h -funthread.o: ../../core/textstream.h ../../core/misc.h ../../core/error.h +funthread.o: ../../../winix/functions/functionbase.h +funthread.o: ../../../winix/core/item.h ../../../winix/db/db.h +funthread.o: ../../../winix/db/dbbase.h ../../../winix/db/dbconn.h +funthread.o: ../../../winix/db/dbtextstream.h +funthread.o: ../../../winix/core/textstream.h ../../../winix/core/misc.h +funthread.o: ../../../winix/core/error.h funthread.o: ../../../pikotools/space/spaceparser.h -funthread.o: ../../../pikotools/space/space.h ../../db/dbitemquery.h -funthread.o: ../../db/dbitemcolumns.h ../../core/user.h ../../core/group.h -funthread.o: ../../core/dircontainer.h ../../core/ugcontainer.h -funthread.o: ../../core/log.h ../../core/textstream.h -funthread.o: ../../core/logmanipulators.h ../../core/slog.h ../../core/cur.h -funthread.o: ../../core/request.h ../../core/error.h ../../core/config.h -funthread.o: ../../core/htmlfilter.h ../../templates/htmltextstream.h -funthread.o: ../../../pikotools/space/spacetojson.h ../../core/session.h -funthread.o: ../../core/user.h ../../core/plugindata.h ../../core/rebus.h -funthread.o: ../../core/ipban.h ../../core/mount.h ../../templates/locale.h -funthread.o: ../../core/request.h ../../core/config.h ../../core/system.h -funthread.o: ../../core/job.h ../../core/basethread.h ../../core/synchro.h -funthread.o: ../../core/dirs.h ../../core/dircontainer.h -funthread.o: ../../notify/notify.h ../../notify/notifypool.h -funthread.o: ../../templates/patterns.h ../../templates/locale.h -funthread.o: ../../templates/localefilter.h ../../../ezc/src/ezc.h +funthread.o: ../../../pikotools/space/space.h ../../../winix/db/dbitemquery.h +funthread.o: ../../../winix/db/dbitemcolumns.h ../../../winix/core/user.h +funthread.o: ../../../winix/core/group.h ../../../winix/core/dircontainer.h +funthread.o: ../../../winix/core/ugcontainer.h ../../../winix/core/log.h +funthread.o: ../../../winix/core/textstream.h +funthread.o: ../../../winix/core/logmanipulators.h ../../../winix/core/slog.h +funthread.o: ../../../winix/core/cur.h ../../../winix/core/request.h +funthread.o: ../../../winix/core/error.h ../../../winix/core/config.h +funthread.o: ../../../winix/core/htmlfilter.h +funthread.o: ../../../winix/templates/htmltextstream.h +funthread.o: ../../../pikotools/space/spacetojson.h +funthread.o: ../../../winix/core/session.h ../../../winix/core/user.h +funthread.o: ../../../winix/core/plugindata.h ../../../winix/core/rebus.h +funthread.o: ../../../winix/core/ipban.h ../../../winix/core/mount.h +funthread.o: ../../../winix/templates/locale.h ../../../winix/core/request.h +funthread.o: ../../../winix/core/config.h ../../../winix/core/system.h +funthread.o: ../../../winix/core/job.h ../../../winix/core/basethread.h +funthread.o: ../../../winix/core/synchro.h ../../../winix/core/dirs.h +funthread.o: ../../../winix/core/dircontainer.h +funthread.o: ../../../winix/notify/notify.h +funthread.o: ../../../winix/notify/notifypool.h +funthread.o: ../../../winix/templates/patterns.h +funthread.o: ../../../winix/templates/locale.h +funthread.o: ../../../winix/templates/localefilter.h ../../../ezc/src/ezc.h funthread.o: ../../../ezc/src/generator.h ../../../ezc/src/pattern.h funthread.o: ../../../ezc/src/functions.h ../../../ezc/src/funinfo.h -funthread.o: ../../../ezc/src/stringconv.h ../../notify/notifythread.h -funthread.o: ../../core/basethread.h ../../notify/templatesnotify.h -funthread.o: ../../core/users.h ../../core/ugcontainer.h -funthread.o: ../../core/lastcontainer.h ../../core/mounts.h -funthread.o: ../../core/mountparser.h ../../core/crypt.h ../../core/run.h -funthread.o: ../../core/users.h ../../core/groups.h ../../core/group.h -funthread.o: ../../core/loadavg.h ../../core/image.h -funthread.o: ../../core/threadmanager.h ../../core/timezones.h -funthread.o: ../../core/timezone.h ../../core/synchro.h tdb.h thread.h -funthread.o: ../../db/dbbase.h threadinfo.h -init.o: tdb.h thread.h ../../../pikotools/date/date.h ../../db/dbbase.h -init.o: ../../core/error.h reply.h ../../functions/functionbase.h -init.o: ../../core/item.h ../../../pikotools/space/space.h -init.o: ../../../pikotools/textstream/types.h ../../db/db.h ../../db/dbbase.h -init.o: ../../db/dbconn.h ../../db/dbtextstream.h ../../core/textstream.h -init.o: ../../core/misc.h ../../core/item.h ../../core/requesttypes.h +funthread.o: ../../../ezc/src/stringconv.h +funthread.o: ../../../winix/notify/notifythread.h +funthread.o: ../../../winix/core/basethread.h +funthread.o: ../../../winix/notify/templatesnotify.h +funthread.o: ../../../winix/core/users.h ../../../winix/core/ugcontainer.h +funthread.o: ../../../winix/core/lastcontainer.h ../../../winix/core/mounts.h +funthread.o: ../../../winix/core/mountparser.h ../../../winix/core/crypt.h +funthread.o: ../../../winix/core/run.h ../../../winix/core/users.h +funthread.o: ../../../winix/core/groups.h ../../../winix/core/group.h +funthread.o: ../../../winix/core/loadavg.h ../../../winix/core/image.h +funthread.o: ../../../winix/core/threadmanager.h +funthread.o: ../../../winix/core/timezones.h ../../../winix/core/timezone.h +funthread.o: ../../../winix/core/synchro.h tdb.h thread.h +funthread.o: ../../../winix/db/dbbase.h threadinfo.h +init.o: tdb.h thread.h ../../../pikotools/date/date.h +init.o: ../../../winix/db/dbbase.h ../../../winix/core/error.h reply.h +init.o: ../../../winix/functions/functionbase.h ../../../winix/core/item.h +init.o: ../../../pikotools/space/space.h +init.o: ../../../pikotools/textstream/types.h ../../../winix/db/db.h +init.o: ../../../winix/db/dbbase.h ../../../winix/db/dbconn.h +init.o: ../../../winix/db/dbtextstream.h ../../../winix/core/textstream.h +init.o: ../../../winix/core/misc.h ../../../winix/core/item.h +init.o: ../../../winix/core/requesttypes.h init.o: ../../../pikotools/textstream/textstream.h init.o: ../../../pikotools/convert/convert.h init.o: ../../../pikotools/convert/inttostr.h init.o: ../../../pikotools/membuffer/membuffer.h init.o: ../../../pikotools/textstream/types.h ../../../pikotools/utf8/utf8.h init.o: ../../../pikotools/space/spaceparser.h -init.o: ../../../pikotools/space/space.h ../../db/dbitemquery.h -init.o: ../../db/dbitemcolumns.h ../../core/user.h ../../core/group.h -init.o: ../../core/dircontainer.h ../../core/ugcontainer.h ../../core/log.h -init.o: ../../core/textstream.h ../../core/logmanipulators.h -init.o: ../../core/slog.h ../../core/cur.h ../../core/request.h -init.o: ../../core/error.h ../../core/config.h ../../core/htmlfilter.h -init.o: ../../templates/htmltextstream.h -init.o: ../../../pikotools/space/spacetojson.h ../../core/session.h -init.o: ../../core/user.h ../../core/plugindata.h ../../core/rebus.h -init.o: ../../core/ipban.h ../../core/mount.h ../../templates/locale.h -init.o: ../../core/request.h ../../core/config.h ../../core/system.h -init.o: ../../core/job.h ../../core/basethread.h ../../core/synchro.h -init.o: ../../core/dirs.h ../../core/dircontainer.h ../../notify/notify.h -init.o: ../../notify/notifypool.h ../../templates/patterns.h -init.o: ../../templates/locale.h ../../templates/localefilter.h -init.o: ../../../ezc/src/ezc.h ../../../ezc/src/generator.h -init.o: ../../../ezc/src/pattern.h ../../../ezc/src/functions.h -init.o: ../../../ezc/src/funinfo.h ../../../ezc/src/stringconv.h -init.o: ../../notify/notifythread.h ../../core/basethread.h -init.o: ../../notify/templatesnotify.h ../../core/users.h -init.o: ../../core/ugcontainer.h ../../core/lastcontainer.h -init.o: ../../core/mounts.h ../../core/mountparser.h ../../core/crypt.h -init.o: ../../core/run.h ../../core/users.h ../../core/groups.h -init.o: ../../core/group.h ../../core/loadavg.h ../../core/image.h -init.o: ../../core/threadmanager.h ../../core/timezones.h -init.o: ../../core/timezone.h ../../core/synchro.h threadinfo.h funthread.h -init.o: createthread.h showthreads.h ../../core/log.h ../../core/plugin.h -init.o: pluginmsg.h ../../core/system.h ../../core/sessionmanager.h -init.o: ../../core/sessioncontainer.h ../../core/ipbancontainer.h -init.o: ../../functions/functions.h ../../functions/functionbase.h -init.o: ../../functions/functionparser.h ../../core/cur.h -init.o: ../../functions/account.h ../../functions/adduser.h -init.o: ../../functions/cat.h ../../functions/chmod.h -init.o: ../../functions/privchanger.h ../../functions/chown.h -init.o: ../../functions/ckeditor.h ../../functions/cp.h -init.o: ../../functions/default.h ../../functions/download.h -init.o: ../../functions/emacs.h ../../functions/env.h -init.o: ../../functions/imgcrop.h ../../functions/last.h -init.o: ../../functions/login.h ../../functions/logout.h ../../functions/ln.h -init.o: ../../functions/ls.h ../../functions/man.h ../../functions/meta.h -init.o: ../../functions/mkdir.h ../../functions/mv.h -init.o: ../../functions/nicedit.h ../../functions/node.h -init.o: ../../functions/passwd.h ../../functions/priv.h ../../functions/pw.h -init.o: ../../functions/reload.h ../../functions/rm.h -init.o: ../../functions/rmuser.h ../../functions/sort.h -init.o: ../../functions/specialdefault.h ../../functions/stat.h -init.o: ../../functions/subject.h ../../functions/template.h -init.o: ../../functions/tinymce.h ../../functions/uname.h -init.o: ../../functions/upload.h ../../functions/uptime.h -init.o: ../../functions/who.h ../../functions/vim.h ../../core/htmlfilter.h -init.o: ../../templates/templates.h ../../templates/patterncacher.h -init.o: ../../templates/indexpatterns.h ../../templates/patterns.h -init.o: ../../templates/changepatterns.h ../../templates/htmltextstream.h -init.o: ../../core/sessionmanager.h templates.h -reply.o: ../../core/plugin.h pluginmsg.h ../../core/log.h -reply.o: ../../core/textstream.h ../../core/logmanipulators.h +init.o: ../../../pikotools/space/space.h ../../../winix/db/dbitemquery.h +init.o: ../../../winix/db/dbitemcolumns.h ../../../winix/core/user.h +init.o: ../../../winix/core/group.h ../../../winix/core/dircontainer.h +init.o: ../../../winix/core/ugcontainer.h ../../../winix/core/log.h +init.o: ../../../winix/core/textstream.h +init.o: ../../../winix/core/logmanipulators.h ../../../winix/core/slog.h +init.o: ../../../winix/core/cur.h ../../../winix/core/request.h +init.o: ../../../winix/core/error.h ../../../winix/core/config.h +init.o: ../../../winix/core/htmlfilter.h +init.o: ../../../winix/templates/htmltextstream.h +init.o: ../../../pikotools/space/spacetojson.h ../../../winix/core/session.h +init.o: ../../../winix/core/user.h ../../../winix/core/plugindata.h +init.o: ../../../winix/core/rebus.h ../../../winix/core/ipban.h +init.o: ../../../winix/core/mount.h ../../../winix/templates/locale.h +init.o: ../../../winix/core/request.h ../../../winix/core/config.h +init.o: ../../../winix/core/system.h ../../../winix/core/job.h +init.o: ../../../winix/core/basethread.h ../../../winix/core/synchro.h +init.o: ../../../winix/core/dirs.h ../../../winix/core/dircontainer.h +init.o: ../../../winix/notify/notify.h ../../../winix/notify/notifypool.h +init.o: ../../../winix/templates/patterns.h ../../../winix/templates/locale.h +init.o: ../../../winix/templates/localefilter.h ../../../ezc/src/ezc.h +init.o: ../../../ezc/src/generator.h ../../../ezc/src/pattern.h +init.o: ../../../ezc/src/functions.h ../../../ezc/src/funinfo.h +init.o: ../../../ezc/src/stringconv.h ../../../winix/notify/notifythread.h +init.o: ../../../winix/core/basethread.h +init.o: ../../../winix/notify/templatesnotify.h ../../../winix/core/users.h +init.o: ../../../winix/core/ugcontainer.h ../../../winix/core/lastcontainer.h +init.o: ../../../winix/core/mounts.h ../../../winix/core/mountparser.h +init.o: ../../../winix/core/crypt.h ../../../winix/core/run.h +init.o: ../../../winix/core/users.h ../../../winix/core/groups.h +init.o: ../../../winix/core/group.h ../../../winix/core/loadavg.h +init.o: ../../../winix/core/image.h ../../../winix/core/threadmanager.h +init.o: ../../../winix/core/timezones.h ../../../winix/core/timezone.h +init.o: ../../../winix/core/synchro.h threadinfo.h funthread.h createthread.h +init.o: showthreads.h ../../../winix/core/log.h ../../../winix/core/plugin.h +init.o: pluginmsg.h ../../../winix/core/system.h +init.o: ../../../winix/core/sessionmanager.h +init.o: ../../../winix/core/sessioncontainer.h +init.o: ../../../winix/core/ipbancontainer.h +init.o: ../../../winix/functions/functions.h +init.o: ../../../winix/functions/functionbase.h +init.o: ../../../winix/functions/functionparser.h ../../../winix/core/cur.h +init.o: ../../../winix/functions/account.h ../../../winix/functions/adduser.h +init.o: ../../../winix/functions/cat.h ../../../winix/functions/chmod.h +init.o: ../../../winix/functions/privchanger.h +init.o: ../../../winix/functions/chown.h ../../../winix/functions/ckeditor.h +init.o: ../../../winix/functions/cp.h ../../../winix/functions/default.h +init.o: ../../../winix/functions/download.h ../../../winix/functions/emacs.h +init.o: ../../../winix/functions/env.h ../../../winix/functions/imgcrop.h +init.o: ../../../winix/functions/last.h ../../../winix/functions/login.h +init.o: ../../../winix/functions/logout.h ../../../winix/functions/ln.h +init.o: ../../../winix/functions/ls.h ../../../winix/functions/man.h +init.o: ../../../winix/functions/meta.h ../../../winix/functions/mkdir.h +init.o: ../../../winix/functions/mv.h ../../../winix/functions/nicedit.h +init.o: ../../../winix/functions/node.h ../../../winix/functions/passwd.h +init.o: ../../../winix/functions/priv.h ../../../winix/functions/pw.h +init.o: ../../../winix/functions/reload.h ../../../winix/functions/rm.h +init.o: ../../../winix/functions/rmuser.h ../../../winix/functions/sort.h +init.o: ../../../winix/functions/specialdefault.h +init.o: ../../../winix/functions/stat.h ../../../winix/functions/subject.h +init.o: ../../../winix/functions/template.h +init.o: ../../../winix/functions/tinymce.h ../../../winix/functions/uname.h +init.o: ../../../winix/functions/upload.h ../../../winix/functions/uptime.h +init.o: ../../../winix/functions/who.h ../../../winix/functions/vim.h +init.o: ../../../winix/core/htmlfilter.h ../../../winix/templates/templates.h +init.o: ../../../winix/templates/patterncacher.h +init.o: ../../../winix/templates/indexpatterns.h +init.o: ../../../winix/templates/patterns.h +init.o: ../../../winix/templates/changepatterns.h +init.o: ../../../winix/templates/htmltextstream.h +init.o: ../../../winix/core/sessionmanager.h templates.h +reply.o: ../../../winix/core/plugin.h pluginmsg.h ../../../winix/core/log.h +reply.o: ../../../winix/core/textstream.h +reply.o: ../../../winix/core/logmanipulators.h reply.o: ../../../pikotools/textstream/textstream.h reply.o: ../../../pikotools/space/space.h reply.o: ../../../pikotools/textstream/types.h ../../../pikotools/date/date.h reply.o: ../../../pikotools/convert/convert.h reply.o: ../../../pikotools/convert/inttostr.h reply.o: ../../../pikotools/membuffer/membuffer.h -reply.o: ../../../pikotools/textstream/types.h ../../core/slog.h -reply.o: ../../core/cur.h ../../core/request.h ../../core/requesttypes.h -reply.o: ../../core/item.h ../../core/error.h ../../core/config.h +reply.o: ../../../pikotools/textstream/types.h ../../../winix/core/slog.h +reply.o: ../../../winix/core/cur.h ../../../winix/core/request.h +reply.o: ../../../winix/core/requesttypes.h ../../../winix/core/item.h +reply.o: ../../../winix/core/error.h ../../../winix/core/config.h reply.o: ../../../pikotools/space/spaceparser.h -reply.o: ../../../pikotools/space/space.h ../../core/htmlfilter.h -reply.o: ../../templates/htmltextstream.h ../../core/textstream.h -reply.o: ../../core/misc.h ../../../pikotools/utf8/utf8.h -reply.o: ../../../pikotools/space/spacetojson.h ../../core/session.h -reply.o: ../../core/user.h ../../core/plugindata.h ../../core/rebus.h -reply.o: ../../core/ipban.h ../../core/mount.h ../../templates/locale.h -reply.o: ../../core/system.h ../../core/sessionmanager.h -reply.o: ../../core/sessioncontainer.h ../../core/ipbancontainer.h -reply.o: ../../core/lastcontainer.h ../../core/synchro.h -reply.o: ../../core/basethread.h ../../functions/functions.h -reply.o: ../../functions/functionbase.h ../../functions/functionparser.h -reply.o: ../../db/db.h ../../db/dbbase.h ../../db/dbconn.h -reply.o: ../../db/dbtextstream.h ../../core/error.h ../../db/dbitemquery.h -reply.o: ../../core/item.h ../../db/dbitemcolumns.h ../../core/user.h -reply.o: ../../core/group.h ../../core/dircontainer.h -reply.o: ../../core/ugcontainer.h ../../core/cur.h ../../core/system.h -reply.o: ../../core/job.h ../../core/dirs.h ../../core/dircontainer.h -reply.o: ../../notify/notify.h ../../notify/notifypool.h -reply.o: ../../templates/patterns.h ../../templates/locale.h -reply.o: ../../templates/localefilter.h ../../../ezc/src/ezc.h +reply.o: ../../../pikotools/space/space.h ../../../winix/core/htmlfilter.h +reply.o: ../../../winix/templates/htmltextstream.h +reply.o: ../../../winix/core/textstream.h ../../../winix/core/misc.h +reply.o: ../../../pikotools/utf8/utf8.h +reply.o: ../../../pikotools/space/spacetojson.h ../../../winix/core/session.h +reply.o: ../../../winix/core/user.h ../../../winix/core/plugindata.h +reply.o: ../../../winix/core/rebus.h ../../../winix/core/ipban.h +reply.o: ../../../winix/core/mount.h ../../../winix/templates/locale.h +reply.o: ../../../winix/core/system.h ../../../winix/core/sessionmanager.h +reply.o: ../../../winix/core/sessioncontainer.h +reply.o: ../../../winix/core/ipbancontainer.h +reply.o: ../../../winix/core/lastcontainer.h ../../../winix/core/synchro.h +reply.o: ../../../winix/core/basethread.h +reply.o: ../../../winix/functions/functions.h +reply.o: ../../../winix/functions/functionbase.h +reply.o: ../../../winix/functions/functionparser.h ../../../winix/db/db.h +reply.o: ../../../winix/db/dbbase.h ../../../winix/db/dbconn.h +reply.o: ../../../winix/db/dbtextstream.h ../../../winix/core/error.h +reply.o: ../../../winix/db/dbitemquery.h ../../../winix/core/item.h +reply.o: ../../../winix/db/dbitemcolumns.h ../../../winix/core/user.h +reply.o: ../../../winix/core/group.h ../../../winix/core/dircontainer.h +reply.o: ../../../winix/core/ugcontainer.h ../../../winix/core/cur.h +reply.o: ../../../winix/core/system.h ../../../winix/core/job.h +reply.o: ../../../winix/core/dirs.h ../../../winix/core/dircontainer.h +reply.o: ../../../winix/notify/notify.h ../../../winix/notify/notifypool.h +reply.o: ../../../winix/templates/patterns.h +reply.o: ../../../winix/templates/locale.h +reply.o: ../../../winix/templates/localefilter.h ../../../ezc/src/ezc.h reply.o: ../../../ezc/src/generator.h ../../../ezc/src/pattern.h reply.o: ../../../ezc/src/functions.h ../../../ezc/src/funinfo.h -reply.o: ../../../ezc/src/stringconv.h ../../notify/notifythread.h -reply.o: ../../core/basethread.h ../../notify/templatesnotify.h -reply.o: ../../core/config.h ../../core/users.h ../../core/ugcontainer.h -reply.o: ../../core/mounts.h ../../core/mountparser.h ../../core/crypt.h -reply.o: ../../core/run.h ../../core/users.h ../../core/groups.h -reply.o: ../../core/group.h ../../core/loadavg.h ../../core/image.h -reply.o: ../../core/threadmanager.h ../../core/timezones.h -reply.o: ../../core/timezone.h ../../functions/account.h -reply.o: ../../functions/adduser.h ../../functions/cat.h -reply.o: ../../functions/chmod.h ../../functions/privchanger.h -reply.o: ../../core/request.h ../../functions/chown.h -reply.o: ../../functions/ckeditor.h ../../functions/cp.h -reply.o: ../../functions/default.h ../../functions/download.h -reply.o: ../../functions/emacs.h ../../functions/env.h -reply.o: ../../functions/imgcrop.h ../../functions/last.h -reply.o: ../../functions/login.h ../../functions/logout.h -reply.o: ../../functions/ln.h ../../functions/ls.h ../../functions/man.h -reply.o: ../../functions/meta.h ../../functions/mkdir.h ../../functions/mv.h -reply.o: ../../functions/nicedit.h ../../functions/node.h -reply.o: ../../functions/passwd.h ../../functions/priv.h ../../functions/pw.h -reply.o: ../../functions/reload.h ../../functions/rm.h -reply.o: ../../functions/rmuser.h ../../functions/sort.h -reply.o: ../../functions/specialdefault.h ../../functions/stat.h -reply.o: ../../functions/subject.h ../../functions/template.h -reply.o: ../../functions/tinymce.h ../../functions/uname.h -reply.o: ../../functions/upload.h ../../functions/uptime.h -reply.o: ../../functions/who.h ../../functions/vim.h ../../core/htmlfilter.h -reply.o: ../../templates/templates.h ../../templates/patterncacher.h -reply.o: ../../templates/indexpatterns.h ../../templates/patterns.h -reply.o: ../../templates/changepatterns.h ../../templates/htmltextstream.h -reply.o: ../../core/sessionmanager.h reply.h ../../functions/functionbase.h -reply.o: ../../core/synchro.h tdb.h thread.h ../../db/dbbase.h threadinfo.h -reply.o: ../../core/misc.h -showthreads.o: showthreads.h ../../functions/functionbase.h ../../core/item.h -showthreads.o: ../../../pikotools/space/space.h +reply.o: ../../../ezc/src/stringconv.h ../../../winix/notify/notifythread.h +reply.o: ../../../winix/core/basethread.h +reply.o: ../../../winix/notify/templatesnotify.h ../../../winix/core/config.h +reply.o: ../../../winix/core/users.h ../../../winix/core/ugcontainer.h +reply.o: ../../../winix/core/mounts.h ../../../winix/core/mountparser.h +reply.o: ../../../winix/core/crypt.h ../../../winix/core/run.h +reply.o: ../../../winix/core/users.h ../../../winix/core/groups.h +reply.o: ../../../winix/core/group.h ../../../winix/core/loadavg.h +reply.o: ../../../winix/core/image.h ../../../winix/core/threadmanager.h +reply.o: ../../../winix/core/timezones.h ../../../winix/core/timezone.h +reply.o: ../../../winix/functions/account.h +reply.o: ../../../winix/functions/adduser.h ../../../winix/functions/cat.h +reply.o: ../../../winix/functions/chmod.h +reply.o: ../../../winix/functions/privchanger.h ../../../winix/core/request.h +reply.o: ../../../winix/functions/chown.h ../../../winix/functions/ckeditor.h +reply.o: ../../../winix/functions/cp.h ../../../winix/functions/default.h +reply.o: ../../../winix/functions/download.h ../../../winix/functions/emacs.h +reply.o: ../../../winix/functions/env.h ../../../winix/functions/imgcrop.h +reply.o: ../../../winix/functions/last.h ../../../winix/functions/login.h +reply.o: ../../../winix/functions/logout.h ../../../winix/functions/ln.h +reply.o: ../../../winix/functions/ls.h ../../../winix/functions/man.h +reply.o: ../../../winix/functions/meta.h ../../../winix/functions/mkdir.h +reply.o: ../../../winix/functions/mv.h ../../../winix/functions/nicedit.h +reply.o: ../../../winix/functions/node.h ../../../winix/functions/passwd.h +reply.o: ../../../winix/functions/priv.h ../../../winix/functions/pw.h +reply.o: ../../../winix/functions/reload.h ../../../winix/functions/rm.h +reply.o: ../../../winix/functions/rmuser.h ../../../winix/functions/sort.h +reply.o: ../../../winix/functions/specialdefault.h +reply.o: ../../../winix/functions/stat.h ../../../winix/functions/subject.h +reply.o: ../../../winix/functions/template.h +reply.o: ../../../winix/functions/tinymce.h ../../../winix/functions/uname.h +reply.o: ../../../winix/functions/upload.h ../../../winix/functions/uptime.h +reply.o: ../../../winix/functions/who.h ../../../winix/functions/vim.h +reply.o: ../../../winix/core/htmlfilter.h +reply.o: ../../../winix/templates/templates.h +reply.o: ../../../winix/templates/patterncacher.h +reply.o: ../../../winix/templates/indexpatterns.h +reply.o: ../../../winix/templates/patterns.h +reply.o: ../../../winix/templates/changepatterns.h +reply.o: ../../../winix/templates/htmltextstream.h +reply.o: ../../../winix/core/sessionmanager.h reply.h +reply.o: ../../../winix/functions/functionbase.h +reply.o: ../../../winix/core/synchro.h tdb.h thread.h +reply.o: ../../../winix/db/dbbase.h threadinfo.h ../../../winix/core/misc.h +showthreads.o: showthreads.h ../../../winix/functions/functionbase.h +showthreads.o: ../../../winix/core/item.h ../../../pikotools/space/space.h showthreads.o: ../../../pikotools/textstream/types.h -showthreads.o: ../../../pikotools/date/date.h ../../db/db.h ../../db/dbbase.h -showthreads.o: ../../db/dbconn.h ../../db/dbtextstream.h -showthreads.o: ../../core/textstream.h ../../core/misc.h ../../core/item.h -showthreads.o: ../../core/requesttypes.h +showthreads.o: ../../../pikotools/date/date.h ../../../winix/db/db.h +showthreads.o: ../../../winix/db/dbbase.h ../../../winix/db/dbconn.h +showthreads.o: ../../../winix/db/dbtextstream.h +showthreads.o: ../../../winix/core/textstream.h ../../../winix/core/misc.h +showthreads.o: ../../../winix/core/item.h ../../../winix/core/requesttypes.h showthreads.o: ../../../pikotools/textstream/textstream.h showthreads.o: ../../../pikotools/convert/convert.h showthreads.o: ../../../pikotools/convert/inttostr.h showthreads.o: ../../../pikotools/membuffer/membuffer.h showthreads.o: ../../../pikotools/textstream/types.h -showthreads.o: ../../../pikotools/utf8/utf8.h ../../core/error.h +showthreads.o: ../../../pikotools/utf8/utf8.h ../../../winix/core/error.h showthreads.o: ../../../pikotools/space/spaceparser.h -showthreads.o: ../../../pikotools/space/space.h ../../db/dbitemquery.h -showthreads.o: ../../db/dbitemcolumns.h ../../core/user.h ../../core/group.h -showthreads.o: ../../core/dircontainer.h ../../core/ugcontainer.h -showthreads.o: ../../core/log.h ../../core/textstream.h -showthreads.o: ../../core/logmanipulators.h ../../core/slog.h -showthreads.o: ../../core/cur.h ../../core/request.h ../../core/error.h -showthreads.o: ../../core/config.h ../../core/htmlfilter.h -showthreads.o: ../../templates/htmltextstream.h -showthreads.o: ../../../pikotools/space/spacetojson.h ../../core/session.h -showthreads.o: ../../core/user.h ../../core/plugindata.h ../../core/rebus.h -showthreads.o: ../../core/ipban.h ../../core/mount.h ../../templates/locale.h -showthreads.o: ../../core/request.h ../../core/config.h ../../core/system.h -showthreads.o: ../../core/job.h ../../core/basethread.h ../../core/synchro.h -showthreads.o: ../../core/dirs.h ../../core/dircontainer.h -showthreads.o: ../../notify/notify.h ../../notify/notifypool.h -showthreads.o: ../../templates/patterns.h ../../templates/locale.h -showthreads.o: ../../templates/localefilter.h ../../../ezc/src/ezc.h +showthreads.o: ../../../pikotools/space/space.h +showthreads.o: ../../../winix/db/dbitemquery.h +showthreads.o: ../../../winix/db/dbitemcolumns.h ../../../winix/core/user.h +showthreads.o: ../../../winix/core/group.h ../../../winix/core/dircontainer.h +showthreads.o: ../../../winix/core/ugcontainer.h ../../../winix/core/log.h +showthreads.o: ../../../winix/core/textstream.h +showthreads.o: ../../../winix/core/logmanipulators.h +showthreads.o: ../../../winix/core/slog.h ../../../winix/core/cur.h +showthreads.o: ../../../winix/core/request.h ../../../winix/core/error.h +showthreads.o: ../../../winix/core/config.h ../../../winix/core/htmlfilter.h +showthreads.o: ../../../winix/templates/htmltextstream.h +showthreads.o: ../../../pikotools/space/spacetojson.h +showthreads.o: ../../../winix/core/session.h ../../../winix/core/user.h +showthreads.o: ../../../winix/core/plugindata.h ../../../winix/core/rebus.h +showthreads.o: ../../../winix/core/ipban.h ../../../winix/core/mount.h +showthreads.o: ../../../winix/templates/locale.h +showthreads.o: ../../../winix/core/request.h ../../../winix/core/config.h +showthreads.o: ../../../winix/core/system.h ../../../winix/core/job.h +showthreads.o: ../../../winix/core/basethread.h ../../../winix/core/synchro.h +showthreads.o: ../../../winix/core/dirs.h ../../../winix/core/dircontainer.h +showthreads.o: ../../../winix/notify/notify.h +showthreads.o: ../../../winix/notify/notifypool.h +showthreads.o: ../../../winix/templates/patterns.h +showthreads.o: ../../../winix/templates/locale.h +showthreads.o: ../../../winix/templates/localefilter.h ../../../ezc/src/ezc.h showthreads.o: ../../../ezc/src/generator.h ../../../ezc/src/pattern.h showthreads.o: ../../../ezc/src/functions.h ../../../ezc/src/funinfo.h -showthreads.o: ../../../ezc/src/stringconv.h ../../notify/notifythread.h -showthreads.o: ../../core/basethread.h ../../notify/templatesnotify.h -showthreads.o: ../../core/users.h ../../core/ugcontainer.h -showthreads.o: ../../core/lastcontainer.h ../../core/mounts.h -showthreads.o: ../../core/mountparser.h ../../core/crypt.h ../../core/run.h -showthreads.o: ../../core/users.h ../../core/groups.h ../../core/group.h -showthreads.o: ../../core/loadavg.h ../../core/image.h -showthreads.o: ../../core/threadmanager.h ../../core/timezones.h -showthreads.o: ../../core/timezone.h ../../core/synchro.h tdb.h thread.h -showthreads.o: ../../db/dbbase.h threadinfo.h -tdb.o: tdb.h thread.h ../../../pikotools/date/date.h ../../db/dbbase.h -tdb.o: ../../core/error.h ../../core/log.h -templates.o: threadinfo.h ../../core/item.h ../../../pikotools/space/space.h +showthreads.o: ../../../ezc/src/stringconv.h +showthreads.o: ../../../winix/notify/notifythread.h +showthreads.o: ../../../winix/core/basethread.h +showthreads.o: ../../../winix/notify/templatesnotify.h +showthreads.o: ../../../winix/core/users.h ../../../winix/core/ugcontainer.h +showthreads.o: ../../../winix/core/lastcontainer.h +showthreads.o: ../../../winix/core/mounts.h ../../../winix/core/mountparser.h +showthreads.o: ../../../winix/core/crypt.h ../../../winix/core/run.h +showthreads.o: ../../../winix/core/users.h ../../../winix/core/groups.h +showthreads.o: ../../../winix/core/group.h ../../../winix/core/loadavg.h +showthreads.o: ../../../winix/core/image.h +showthreads.o: ../../../winix/core/threadmanager.h +showthreads.o: ../../../winix/core/timezones.h ../../../winix/core/timezone.h +showthreads.o: ../../../winix/core/synchro.h tdb.h thread.h +showthreads.o: ../../../winix/db/dbbase.h threadinfo.h +tdb.o: tdb.h thread.h ../../../pikotools/date/date.h +tdb.o: ../../../winix/db/dbbase.h ../../../winix/core/error.h +tdb.o: ../../../winix/core/log.h +templates.o: threadinfo.h ../../../winix/core/item.h +templates.o: ../../../pikotools/space/space.h templates.o: ../../../pikotools/textstream/types.h -templates.o: ../../../pikotools/date/date.h ../../core/system.h -templates.o: ../../core/job.h ../../core/basethread.h ../../core/synchro.h -templates.o: ../../core/dirs.h ../../core/item.h ../../core/dircontainer.h -templates.o: ../../db/db.h ../../db/dbbase.h ../../db/dbconn.h -templates.o: ../../db/dbtextstream.h ../../core/textstream.h -templates.o: ../../core/misc.h ../../core/requesttypes.h +templates.o: ../../../pikotools/date/date.h ../../../winix/core/system.h +templates.o: ../../../winix/core/job.h ../../../winix/core/basethread.h +templates.o: ../../../winix/core/synchro.h ../../../winix/core/dirs.h +templates.o: ../../../winix/core/item.h ../../../winix/core/dircontainer.h +templates.o: ../../../winix/db/db.h ../../../winix/db/dbbase.h +templates.o: ../../../winix/db/dbconn.h ../../../winix/db/dbtextstream.h +templates.o: ../../../winix/core/textstream.h ../../../winix/core/misc.h +templates.o: ../../../winix/core/requesttypes.h templates.o: ../../../pikotools/textstream/textstream.h templates.o: ../../../pikotools/convert/convert.h templates.o: ../../../pikotools/convert/inttostr.h templates.o: ../../../pikotools/membuffer/membuffer.h templates.o: ../../../pikotools/textstream/types.h -templates.o: ../../../pikotools/utf8/utf8.h ../../core/error.h +templates.o: ../../../pikotools/utf8/utf8.h ../../../winix/core/error.h templates.o: ../../../pikotools/space/spaceparser.h -templates.o: ../../../pikotools/space/space.h ../../db/dbitemquery.h -templates.o: ../../db/dbitemcolumns.h ../../core/user.h ../../core/group.h -templates.o: ../../core/dircontainer.h ../../core/ugcontainer.h -templates.o: ../../core/log.h ../../core/textstream.h -templates.o: ../../core/logmanipulators.h ../../core/slog.h ../../core/cur.h -templates.o: ../../core/request.h ../../core/error.h ../../core/config.h -templates.o: ../../core/htmlfilter.h ../../templates/htmltextstream.h -templates.o: ../../../pikotools/space/spacetojson.h ../../core/session.h -templates.o: ../../core/user.h ../../core/plugindata.h ../../core/rebus.h -templates.o: ../../core/ipban.h ../../core/mount.h ../../templates/locale.h -templates.o: ../../notify/notify.h ../../notify/notifypool.h -templates.o: ../../templates/patterns.h ../../templates/locale.h -templates.o: ../../templates/localefilter.h ../../../ezc/src/ezc.h +templates.o: ../../../pikotools/space/space.h ../../../winix/db/dbitemquery.h +templates.o: ../../../winix/db/dbitemcolumns.h ../../../winix/core/user.h +templates.o: ../../../winix/core/group.h ../../../winix/core/dircontainer.h +templates.o: ../../../winix/core/ugcontainer.h ../../../winix/core/log.h +templates.o: ../../../winix/core/textstream.h +templates.o: ../../../winix/core/logmanipulators.h ../../../winix/core/slog.h +templates.o: ../../../winix/core/cur.h ../../../winix/core/request.h +templates.o: ../../../winix/core/error.h ../../../winix/core/config.h +templates.o: ../../../winix/core/htmlfilter.h +templates.o: ../../../winix/templates/htmltextstream.h +templates.o: ../../../pikotools/space/spacetojson.h +templates.o: ../../../winix/core/session.h ../../../winix/core/user.h +templates.o: ../../../winix/core/plugindata.h ../../../winix/core/rebus.h +templates.o: ../../../winix/core/ipban.h ../../../winix/core/mount.h +templates.o: ../../../winix/templates/locale.h ../../../winix/notify/notify.h +templates.o: ../../../winix/notify/notifypool.h +templates.o: ../../../winix/templates/patterns.h +templates.o: ../../../winix/templates/locale.h +templates.o: ../../../winix/templates/localefilter.h ../../../ezc/src/ezc.h templates.o: ../../../ezc/src/generator.h ../../../ezc/src/pattern.h templates.o: ../../../ezc/src/functions.h ../../../ezc/src/funinfo.h -templates.o: ../../../ezc/src/stringconv.h ../../notify/notifythread.h -templates.o: ../../core/basethread.h ../../notify/templatesnotify.h -templates.o: ../../core/config.h ../../core/users.h ../../core/ugcontainer.h -templates.o: ../../core/lastcontainer.h ../../core/mounts.h -templates.o: ../../core/mountparser.h ../../core/crypt.h ../../core/run.h -templates.o: ../../core/users.h ../../core/groups.h ../../core/group.h -templates.o: ../../core/loadavg.h ../../core/image.h -templates.o: ../../core/threadmanager.h ../../core/timezones.h -templates.o: ../../core/timezone.h thread.h tdb.h ../../db/dbbase.h reply.h -templates.o: ../../functions/functionbase.h ../../core/request.h -templates.o: ../../core/synchro.h funthread.h createthread.h showthreads.h -templates.o: ../../core/misc.h ../../core/plugin.h pluginmsg.h -templates.o: ../../core/system.h ../../core/sessionmanager.h -templates.o: ../../core/sessioncontainer.h ../../core/ipbancontainer.h -templates.o: ../../functions/functions.h ../../functions/functionbase.h -templates.o: ../../functions/functionparser.h ../../core/cur.h -templates.o: ../../functions/account.h ../../functions/adduser.h -templates.o: ../../functions/cat.h ../../functions/chmod.h -templates.o: ../../functions/privchanger.h ../../functions/chown.h -templates.o: ../../functions/ckeditor.h ../../functions/cp.h -templates.o: ../../functions/default.h ../../functions/download.h -templates.o: ../../functions/emacs.h ../../functions/env.h -templates.o: ../../functions/imgcrop.h ../../functions/last.h -templates.o: ../../functions/login.h ../../functions/logout.h -templates.o: ../../functions/ln.h ../../functions/ls.h ../../functions/man.h -templates.o: ../../functions/meta.h ../../functions/mkdir.h -templates.o: ../../functions/mv.h ../../functions/nicedit.h -templates.o: ../../functions/node.h ../../functions/passwd.h -templates.o: ../../functions/priv.h ../../functions/pw.h -templates.o: ../../functions/reload.h ../../functions/rm.h -templates.o: ../../functions/rmuser.h ../../functions/sort.h -templates.o: ../../functions/specialdefault.h ../../functions/stat.h -templates.o: ../../functions/subject.h ../../functions/template.h -templates.o: ../../functions/tinymce.h ../../functions/uname.h -templates.o: ../../functions/upload.h ../../functions/uptime.h -templates.o: ../../functions/who.h ../../functions/vim.h -templates.o: ../../core/htmlfilter.h ../../templates/templates.h -templates.o: ../../templates/patterncacher.h ../../templates/indexpatterns.h -templates.o: ../../templates/patterns.h ../../templates/changepatterns.h -templates.o: ../../templates/htmltextstream.h ../../core/sessionmanager.h -threadinfo.o: threadinfo.h ../../core/item.h ../../../pikotools/space/space.h +templates.o: ../../../ezc/src/stringconv.h +templates.o: ../../../winix/notify/notifythread.h +templates.o: ../../../winix/core/basethread.h +templates.o: ../../../winix/notify/templatesnotify.h +templates.o: ../../../winix/core/config.h ../../../winix/core/users.h +templates.o: ../../../winix/core/ugcontainer.h +templates.o: ../../../winix/core/lastcontainer.h ../../../winix/core/mounts.h +templates.o: ../../../winix/core/mountparser.h ../../../winix/core/crypt.h +templates.o: ../../../winix/core/run.h ../../../winix/core/users.h +templates.o: ../../../winix/core/groups.h ../../../winix/core/group.h +templates.o: ../../../winix/core/loadavg.h ../../../winix/core/image.h +templates.o: ../../../winix/core/threadmanager.h +templates.o: ../../../winix/core/timezones.h ../../../winix/core/timezone.h +templates.o: thread.h tdb.h ../../../winix/db/dbbase.h reply.h +templates.o: ../../../winix/functions/functionbase.h +templates.o: ../../../winix/core/request.h ../../../winix/core/synchro.h +templates.o: funthread.h createthread.h showthreads.h +templates.o: ../../../winix/core/misc.h ../../../winix/core/plugin.h +templates.o: pluginmsg.h ../../../winix/core/system.h +templates.o: ../../../winix/core/sessionmanager.h +templates.o: ../../../winix/core/sessioncontainer.h +templates.o: ../../../winix/core/ipbancontainer.h +templates.o: ../../../winix/functions/functions.h +templates.o: ../../../winix/functions/functionbase.h +templates.o: ../../../winix/functions/functionparser.h +templates.o: ../../../winix/core/cur.h ../../../winix/functions/account.h +templates.o: ../../../winix/functions/adduser.h +templates.o: ../../../winix/functions/cat.h ../../../winix/functions/chmod.h +templates.o: ../../../winix/functions/privchanger.h +templates.o: ../../../winix/functions/chown.h +templates.o: ../../../winix/functions/ckeditor.h +templates.o: ../../../winix/functions/cp.h ../../../winix/functions/default.h +templates.o: ../../../winix/functions/download.h +templates.o: ../../../winix/functions/emacs.h ../../../winix/functions/env.h +templates.o: ../../../winix/functions/imgcrop.h +templates.o: ../../../winix/functions/last.h ../../../winix/functions/login.h +templates.o: ../../../winix/functions/logout.h ../../../winix/functions/ln.h +templates.o: ../../../winix/functions/ls.h ../../../winix/functions/man.h +templates.o: ../../../winix/functions/meta.h ../../../winix/functions/mkdir.h +templates.o: ../../../winix/functions/mv.h ../../../winix/functions/nicedit.h +templates.o: ../../../winix/functions/node.h +templates.o: ../../../winix/functions/passwd.h +templates.o: ../../../winix/functions/priv.h ../../../winix/functions/pw.h +templates.o: ../../../winix/functions/reload.h ../../../winix/functions/rm.h +templates.o: ../../../winix/functions/rmuser.h +templates.o: ../../../winix/functions/sort.h +templates.o: ../../../winix/functions/specialdefault.h +templates.o: ../../../winix/functions/stat.h +templates.o: ../../../winix/functions/subject.h +templates.o: ../../../winix/functions/template.h +templates.o: ../../../winix/functions/tinymce.h +templates.o: ../../../winix/functions/uname.h +templates.o: ../../../winix/functions/upload.h +templates.o: ../../../winix/functions/uptime.h ../../../winix/functions/who.h +templates.o: ../../../winix/functions/vim.h ../../../winix/core/htmlfilter.h +templates.o: ../../../winix/templates/templates.h +templates.o: ../../../winix/templates/patterncacher.h +templates.o: ../../../winix/templates/indexpatterns.h +templates.o: ../../../winix/templates/patterns.h +templates.o: ../../../winix/templates/changepatterns.h +templates.o: ../../../winix/templates/htmltextstream.h +templates.o: ../../../winix/core/sessionmanager.h +threadinfo.o: threadinfo.h ../../../winix/core/item.h +threadinfo.o: ../../../pikotools/space/space.h threadinfo.o: ../../../pikotools/textstream/types.h -threadinfo.o: ../../../pikotools/date/date.h ../../core/system.h -threadinfo.o: ../../core/job.h ../../core/basethread.h ../../core/synchro.h -threadinfo.o: ../../core/dirs.h ../../core/item.h ../../core/dircontainer.h -threadinfo.o: ../../db/db.h ../../db/dbbase.h ../../db/dbconn.h -threadinfo.o: ../../db/dbtextstream.h ../../core/textstream.h -threadinfo.o: ../../core/misc.h ../../core/requesttypes.h +threadinfo.o: ../../../pikotools/date/date.h ../../../winix/core/system.h +threadinfo.o: ../../../winix/core/job.h ../../../winix/core/basethread.h +threadinfo.o: ../../../winix/core/synchro.h ../../../winix/core/dirs.h +threadinfo.o: ../../../winix/core/item.h ../../../winix/core/dircontainer.h +threadinfo.o: ../../../winix/db/db.h ../../../winix/db/dbbase.h +threadinfo.o: ../../../winix/db/dbconn.h ../../../winix/db/dbtextstream.h +threadinfo.o: ../../../winix/core/textstream.h ../../../winix/core/misc.h +threadinfo.o: ../../../winix/core/requesttypes.h threadinfo.o: ../../../pikotools/textstream/textstream.h threadinfo.o: ../../../pikotools/convert/convert.h threadinfo.o: ../../../pikotools/convert/inttostr.h threadinfo.o: ../../../pikotools/membuffer/membuffer.h threadinfo.o: ../../../pikotools/textstream/types.h -threadinfo.o: ../../../pikotools/utf8/utf8.h ../../core/error.h +threadinfo.o: ../../../pikotools/utf8/utf8.h ../../../winix/core/error.h threadinfo.o: ../../../pikotools/space/spaceparser.h -threadinfo.o: ../../../pikotools/space/space.h ../../db/dbitemquery.h -threadinfo.o: ../../db/dbitemcolumns.h ../../core/user.h ../../core/group.h -threadinfo.o: ../../core/dircontainer.h ../../core/ugcontainer.h -threadinfo.o: ../../core/log.h ../../core/textstream.h -threadinfo.o: ../../core/logmanipulators.h ../../core/slog.h ../../core/cur.h -threadinfo.o: ../../core/request.h ../../core/error.h ../../core/config.h -threadinfo.o: ../../core/htmlfilter.h ../../templates/htmltextstream.h -threadinfo.o: ../../../pikotools/space/spacetojson.h ../../core/session.h -threadinfo.o: ../../core/user.h ../../core/plugindata.h ../../core/rebus.h -threadinfo.o: ../../core/ipban.h ../../core/mount.h ../../templates/locale.h -threadinfo.o: ../../notify/notify.h ../../notify/notifypool.h -threadinfo.o: ../../templates/patterns.h ../../templates/locale.h -threadinfo.o: ../../templates/localefilter.h ../../../ezc/src/ezc.h +threadinfo.o: ../../../pikotools/space/space.h +threadinfo.o: ../../../winix/db/dbitemquery.h +threadinfo.o: ../../../winix/db/dbitemcolumns.h ../../../winix/core/user.h +threadinfo.o: ../../../winix/core/group.h ../../../winix/core/dircontainer.h +threadinfo.o: ../../../winix/core/ugcontainer.h ../../../winix/core/log.h +threadinfo.o: ../../../winix/core/textstream.h +threadinfo.o: ../../../winix/core/logmanipulators.h +threadinfo.o: ../../../winix/core/slog.h ../../../winix/core/cur.h +threadinfo.o: ../../../winix/core/request.h ../../../winix/core/error.h +threadinfo.o: ../../../winix/core/config.h ../../../winix/core/htmlfilter.h +threadinfo.o: ../../../winix/templates/htmltextstream.h +threadinfo.o: ../../../pikotools/space/spacetojson.h +threadinfo.o: ../../../winix/core/session.h ../../../winix/core/user.h +threadinfo.o: ../../../winix/core/plugindata.h ../../../winix/core/rebus.h +threadinfo.o: ../../../winix/core/ipban.h ../../../winix/core/mount.h +threadinfo.o: ../../../winix/templates/locale.h +threadinfo.o: ../../../winix/notify/notify.h +threadinfo.o: ../../../winix/notify/notifypool.h +threadinfo.o: ../../../winix/templates/patterns.h +threadinfo.o: ../../../winix/templates/locale.h +threadinfo.o: ../../../winix/templates/localefilter.h ../../../ezc/src/ezc.h threadinfo.o: ../../../ezc/src/generator.h ../../../ezc/src/pattern.h threadinfo.o: ../../../ezc/src/functions.h ../../../ezc/src/funinfo.h -threadinfo.o: ../../../ezc/src/stringconv.h ../../notify/notifythread.h -threadinfo.o: ../../core/basethread.h ../../notify/templatesnotify.h -threadinfo.o: ../../core/config.h ../../core/users.h ../../core/ugcontainer.h -threadinfo.o: ../../core/lastcontainer.h ../../core/mounts.h -threadinfo.o: ../../core/mountparser.h ../../core/crypt.h ../../core/run.h -threadinfo.o: ../../core/users.h ../../core/groups.h ../../core/group.h -threadinfo.o: ../../core/loadavg.h ../../core/image.h -threadinfo.o: ../../core/threadmanager.h ../../core/timezones.h -threadinfo.o: ../../core/timezone.h thread.h tdb.h ../../db/dbbase.h -threadinfo.o: ../../core/plugin.h pluginmsg.h ../../core/system.h -threadinfo.o: ../../core/sessionmanager.h ../../core/sessioncontainer.h -threadinfo.o: ../../core/ipbancontainer.h ../../functions/functions.h -threadinfo.o: ../../functions/functionbase.h ../../functions/functionparser.h -threadinfo.o: ../../core/cur.h ../../functions/account.h -threadinfo.o: ../../functions/adduser.h ../../functions/cat.h -threadinfo.o: ../../functions/chmod.h ../../functions/privchanger.h -threadinfo.o: ../../core/request.h ../../functions/chown.h -threadinfo.o: ../../functions/ckeditor.h ../../functions/cp.h -threadinfo.o: ../../functions/default.h ../../functions/download.h -threadinfo.o: ../../functions/emacs.h ../../functions/env.h -threadinfo.o: ../../functions/imgcrop.h ../../functions/last.h -threadinfo.o: ../../functions/login.h ../../functions/logout.h -threadinfo.o: ../../functions/ln.h ../../functions/ls.h ../../functions/man.h -threadinfo.o: ../../functions/meta.h ../../functions/mkdir.h -threadinfo.o: ../../functions/mv.h ../../functions/nicedit.h -threadinfo.o: ../../functions/node.h ../../functions/passwd.h -threadinfo.o: ../../functions/priv.h ../../functions/pw.h -threadinfo.o: ../../functions/reload.h ../../functions/rm.h -threadinfo.o: ../../functions/rmuser.h ../../functions/sort.h -threadinfo.o: ../../functions/specialdefault.h ../../functions/stat.h -threadinfo.o: ../../functions/subject.h ../../functions/template.h -threadinfo.o: ../../functions/tinymce.h ../../functions/uname.h -threadinfo.o: ../../functions/upload.h ../../functions/uptime.h -threadinfo.o: ../../functions/who.h ../../functions/vim.h -threadinfo.o: ../../core/htmlfilter.h ../../templates/templates.h -threadinfo.o: ../../templates/patterncacher.h ../../templates/indexpatterns.h -threadinfo.o: ../../templates/patterns.h ../../templates/changepatterns.h -threadinfo.o: ../../templates/htmltextstream.h ../../core/sessionmanager.h +threadinfo.o: ../../../ezc/src/stringconv.h +threadinfo.o: ../../../winix/notify/notifythread.h +threadinfo.o: ../../../winix/core/basethread.h +threadinfo.o: ../../../winix/notify/templatesnotify.h +threadinfo.o: ../../../winix/core/config.h ../../../winix/core/users.h +threadinfo.o: ../../../winix/core/ugcontainer.h +threadinfo.o: ../../../winix/core/lastcontainer.h +threadinfo.o: ../../../winix/core/mounts.h ../../../winix/core/mountparser.h +threadinfo.o: ../../../winix/core/crypt.h ../../../winix/core/run.h +threadinfo.o: ../../../winix/core/users.h ../../../winix/core/groups.h +threadinfo.o: ../../../winix/core/group.h ../../../winix/core/loadavg.h +threadinfo.o: ../../../winix/core/image.h ../../../winix/core/threadmanager.h +threadinfo.o: ../../../winix/core/timezones.h ../../../winix/core/timezone.h +threadinfo.o: thread.h tdb.h ../../../winix/db/dbbase.h +threadinfo.o: ../../../winix/core/plugin.h pluginmsg.h +threadinfo.o: ../../../winix/core/system.h +threadinfo.o: ../../../winix/core/sessionmanager.h +threadinfo.o: ../../../winix/core/sessioncontainer.h +threadinfo.o: ../../../winix/core/ipbancontainer.h +threadinfo.o: ../../../winix/functions/functions.h +threadinfo.o: ../../../winix/functions/functionbase.h +threadinfo.o: ../../../winix/functions/functionparser.h +threadinfo.o: ../../../winix/core/cur.h ../../../winix/functions/account.h +threadinfo.o: ../../../winix/functions/adduser.h +threadinfo.o: ../../../winix/functions/cat.h ../../../winix/functions/chmod.h +threadinfo.o: ../../../winix/functions/privchanger.h +threadinfo.o: ../../../winix/core/request.h ../../../winix/functions/chown.h +threadinfo.o: ../../../winix/functions/ckeditor.h +threadinfo.o: ../../../winix/functions/cp.h +threadinfo.o: ../../../winix/functions/default.h +threadinfo.o: ../../../winix/functions/download.h +threadinfo.o: ../../../winix/functions/emacs.h ../../../winix/functions/env.h +threadinfo.o: ../../../winix/functions/imgcrop.h +threadinfo.o: ../../../winix/functions/last.h +threadinfo.o: ../../../winix/functions/login.h +threadinfo.o: ../../../winix/functions/logout.h ../../../winix/functions/ln.h +threadinfo.o: ../../../winix/functions/ls.h ../../../winix/functions/man.h +threadinfo.o: ../../../winix/functions/meta.h +threadinfo.o: ../../../winix/functions/mkdir.h ../../../winix/functions/mv.h +threadinfo.o: ../../../winix/functions/nicedit.h +threadinfo.o: ../../../winix/functions/node.h +threadinfo.o: ../../../winix/functions/passwd.h +threadinfo.o: ../../../winix/functions/priv.h ../../../winix/functions/pw.h +threadinfo.o: ../../../winix/functions/reload.h ../../../winix/functions/rm.h +threadinfo.o: ../../../winix/functions/rmuser.h +threadinfo.o: ../../../winix/functions/sort.h +threadinfo.o: ../../../winix/functions/specialdefault.h +threadinfo.o: ../../../winix/functions/stat.h +threadinfo.o: ../../../winix/functions/subject.h +threadinfo.o: ../../../winix/functions/template.h +threadinfo.o: ../../../winix/functions/tinymce.h +threadinfo.o: ../../../winix/functions/uname.h +threadinfo.o: ../../../winix/functions/upload.h +threadinfo.o: ../../../winix/functions/uptime.h +threadinfo.o: ../../../winix/functions/who.h ../../../winix/functions/vim.h +threadinfo.o: ../../../winix/core/htmlfilter.h +threadinfo.o: ../../../winix/templates/templates.h +threadinfo.o: ../../../winix/templates/patterncacher.h +threadinfo.o: ../../../winix/templates/indexpatterns.h +threadinfo.o: ../../../winix/templates/patterns.h +threadinfo.o: ../../../winix/templates/changepatterns.h +threadinfo.o: ../../../winix/templates/htmltextstream.h +threadinfo.o: ../../../winix/core/sessionmanager.h diff --git a/plugins/ticket/Makefile b/plugins/ticket/Makefile index fb9d6d2..82fd390 100755 --- a/plugins/ticket/Makefile +++ b/plugins/ticket/Makefile @@ -6,22 +6,23 @@ name = ticket.so all: $(name) $(name): $(o) - $(CXX) -shared -Wl,-soname,$(name).so -o $(name) $(CXXFLAGS) $(LDFLAGS) *.o + $(CXX) -shared -Wl,-soname,$(name) -o $(name) $(CXXFLAGS) $(CXXWINIXINCLUDEFLAGS) $(LDFLAGS) *.o %.o: %.cpp - $(CXX) -c $(CXXFLAGS) $< + $(CXX) -c $(CXXFLAGS) $(CXXWINIXINCLUDEFLAGS) $< depend: - makedepend -Y. -I../.. -I../../../ezc/src -I../../../pikotools -I../../../tito/src -f- *.cpp > Makefile.dep + makedepend -Y. $(CXXWINIXINCLUDEFLAGS) -f- *.cpp > Makefile.dep echo -n "o = " > Makefile.o.dep ls -1 *.cpp | xargs -I foo echo -n foo " " | sed -E "s/([^\.]*)\.cpp[ ]/\1\.o/g" >> Makefile.o.dep clean: rm -f *.o + rm -f *.so rm -f $(name) include Makefile.dep diff --git a/plugins/ticket/Makefile.dep b/plugins/ticket/Makefile.dep index 68df33b..40832b3 100755 --- a/plugins/ticket/Makefile.dep +++ b/plugins/ticket/Makefile.dep @@ -1,84 +1,131 @@ # DO NOT DELETE -createticket.o: ../../core/plugin.h pluginmsg.h ../../core/log.h -createticket.o: ../../core/textstream.h ../../core/misc.h ../../core/item.h +createticket.o: ../../../winix/core/plugin.h pluginmsg.h +createticket.o: ../../../winix/core/log.h ../../../winix/core/textstream.h +createticket.o: ../../../winix/core/misc.h ../../../winix/core/item.h createticket.o: ../../../pikotools/space/space.h createticket.o: ../../../pikotools/textstream/types.h -createticket.o: ../../../pikotools/date/date.h ../../core/requesttypes.h +createticket.o: ../../../pikotools/date/date.h +createticket.o: ../../../winix/core/requesttypes.h createticket.o: ../../../pikotools/textstream/textstream.h createticket.o: ../../../pikotools/convert/convert.h createticket.o: ../../../pikotools/convert/inttostr.h createticket.o: ../../../pikotools/membuffer/membuffer.h createticket.o: ../../../pikotools/textstream/types.h -createticket.o: ../../../pikotools/utf8/utf8.h ../../core/logmanipulators.h -createticket.o: ../../core/slog.h ../../core/cur.h ../../core/request.h -createticket.o: ../../core/error.h ../../core/config.h +createticket.o: ../../../pikotools/utf8/utf8.h +createticket.o: ../../../winix/core/logmanipulators.h +createticket.o: ../../../winix/core/slog.h ../../../winix/core/cur.h +createticket.o: ../../../winix/core/request.h ../../../winix/core/error.h +createticket.o: ../../../winix/core/config.h createticket.o: ../../../pikotools/space/spaceparser.h -createticket.o: ../../../pikotools/space/space.h ../../core/htmlfilter.h -createticket.o: ../../templates/htmltextstream.h ../../core/textstream.h -createticket.o: ../../../pikotools/space/spacetojson.h ../../core/session.h -createticket.o: ../../core/user.h ../../core/plugindata.h ../../core/rebus.h -createticket.o: ../../core/ipban.h ../../core/mount.h -createticket.o: ../../templates/locale.h ../../core/system.h ../../core/job.h -createticket.o: ../../core/basethread.h ../../core/synchro.h -createticket.o: ../../core/dirs.h ../../core/dircontainer.h ../../db/db.h -createticket.o: ../../db/dbbase.h ../../db/dbconn.h ../../db/dbtextstream.h -createticket.o: ../../core/error.h ../../db/dbitemquery.h ../../core/item.h -createticket.o: ../../db/dbitemcolumns.h ../../core/user.h ../../core/group.h -createticket.o: ../../core/dircontainer.h ../../core/ugcontainer.h -createticket.o: ../../notify/notify.h ../../notify/notifypool.h -createticket.o: ../../templates/patterns.h ../../templates/locale.h -createticket.o: ../../templates/localefilter.h ../../../ezc/src/ezc.h -createticket.o: ../../../ezc/src/generator.h ../../../ezc/src/pattern.h -createticket.o: ../../../ezc/src/functions.h ../../../ezc/src/funinfo.h -createticket.o: ../../../ezc/src/stringconv.h ../../notify/notifythread.h -createticket.o: ../../core/basethread.h ../../notify/templatesnotify.h -createticket.o: ../../core/config.h ../../core/users.h -createticket.o: ../../core/ugcontainer.h ../../core/lastcontainer.h -createticket.o: ../../core/mounts.h ../../core/mountparser.h -createticket.o: ../../core/crypt.h ../../core/run.h ../../core/users.h -createticket.o: ../../core/groups.h ../../core/group.h ../../core/loadavg.h -createticket.o: ../../core/image.h ../../core/threadmanager.h -createticket.o: ../../core/timezones.h ../../core/timezone.h -createticket.o: ../../core/sessionmanager.h ../../core/sessioncontainer.h -createticket.o: ../../core/ipbancontainer.h ../../functions/functions.h -createticket.o: ../../functions/functionbase.h ../../core/request.h -createticket.o: ../../core/system.h ../../core/synchro.h -createticket.o: ../../functions/functionparser.h ../../core/cur.h -createticket.o: ../../functions/account.h ../../functions/adduser.h -createticket.o: ../../functions/cat.h ../../functions/chmod.h -createticket.o: ../../functions/privchanger.h ../../functions/chown.h -createticket.o: ../../functions/ckeditor.h ../../functions/cp.h -createticket.o: ../../functions/default.h ../../functions/download.h -createticket.o: ../../functions/emacs.h ../../functions/env.h -createticket.o: ../../functions/imgcrop.h ../../functions/last.h -createticket.o: ../../functions/login.h ../../functions/logout.h -createticket.o: ../../functions/ln.h ../../functions/ls.h -createticket.o: ../../functions/man.h ../../functions/meta.h -createticket.o: ../../functions/mkdir.h ../../functions/mv.h -createticket.o: ../../functions/nicedit.h ../../functions/node.h -createticket.o: ../../functions/passwd.h ../../functions/priv.h -createticket.o: ../../functions/pw.h ../../functions/reload.h -createticket.o: ../../functions/rm.h ../../functions/rmuser.h -createticket.o: ../../functions/sort.h ../../functions/specialdefault.h -createticket.o: ../../functions/stat.h ../../functions/subject.h -createticket.o: ../../functions/template.h ../../functions/tinymce.h -createticket.o: ../../functions/uname.h ../../functions/upload.h -createticket.o: ../../functions/uptime.h ../../functions/who.h -createticket.o: ../../functions/vim.h ../../core/htmlfilter.h -createticket.o: ../../templates/templates.h ../../templates/patterncacher.h -createticket.o: ../../templates/indexpatterns.h ../../templates/patterns.h -createticket.o: ../../templates/changepatterns.h -createticket.o: ../../templates/htmltextstream.h ../../core/sessionmanager.h -createticket.o: createticket.h tdb.h ticket.h ../../db/dbbase.h -createticket.o: ../../functions/functionbase.h ticketinfo.h sessiondata.h -createticket.o: ../../core/plugindata.h ../../functions/rm.h -editticket.o: editticket.h tdb.h ticket.h ../../db/dbbase.h -editticket.o: ../../core/error.h ticketinfo.h ../../core/item.h -editticket.o: ../../core/system.h ../../functions/functions.h -editticket.o: ../../functions/functionbase.h ../../db/db.h ../../db/dbbase.h -editticket.o: ../../db/dbconn.h ../../db/dbtextstream.h -editticket.o: ../../core/textstream.h +createticket.o: ../../../pikotools/space/space.h +createticket.o: ../../../winix/core/htmlfilter.h +createticket.o: ../../../winix/templates/htmltextstream.h +createticket.o: ../../../winix/core/textstream.h +createticket.o: ../../../pikotools/space/spacetojson.h +createticket.o: ../../../winix/core/session.h ../../../winix/core/user.h +createticket.o: ../../../winix/core/plugindata.h ../../../winix/core/rebus.h +createticket.o: ../../../winix/core/ipban.h ../../../winix/core/mount.h +createticket.o: ../../../winix/templates/locale.h +createticket.o: ../../../winix/core/system.h ../../../winix/core/job.h +createticket.o: ../../../winix/core/basethread.h +createticket.o: ../../../winix/core/synchro.h ../../../winix/core/dirs.h +createticket.o: ../../../winix/core/dircontainer.h ../../../winix/db/db.h +createticket.o: ../../../winix/db/dbbase.h ../../../winix/db/dbconn.h +createticket.o: ../../../winix/db/dbtextstream.h ../../../winix/core/error.h +createticket.o: ../../../winix/db/dbitemquery.h ../../../winix/core/item.h +createticket.o: ../../../winix/db/dbitemcolumns.h ../../../winix/core/user.h +createticket.o: ../../../winix/core/group.h +createticket.o: ../../../winix/core/dircontainer.h +createticket.o: ../../../winix/core/ugcontainer.h +createticket.o: ../../../winix/notify/notify.h +createticket.o: ../../../winix/notify/notifypool.h +createticket.o: ../../../winix/templates/patterns.h +createticket.o: ../../../winix/templates/locale.h +createticket.o: ../../../winix/templates/localefilter.h +createticket.o: ../../../ezc/src/ezc.h ../../../ezc/src/generator.h +createticket.o: ../../../ezc/src/pattern.h ../../../ezc/src/functions.h +createticket.o: ../../../ezc/src/funinfo.h ../../../ezc/src/stringconv.h +createticket.o: ../../../winix/notify/notifythread.h +createticket.o: ../../../winix/core/basethread.h +createticket.o: ../../../winix/notify/templatesnotify.h +createticket.o: ../../../winix/core/config.h ../../../winix/core/users.h +createticket.o: ../../../winix/core/ugcontainer.h +createticket.o: ../../../winix/core/lastcontainer.h +createticket.o: ../../../winix/core/mounts.h +createticket.o: ../../../winix/core/mountparser.h ../../../winix/core/crypt.h +createticket.o: ../../../winix/core/run.h ../../../winix/core/users.h +createticket.o: ../../../winix/core/groups.h ../../../winix/core/group.h +createticket.o: ../../../winix/core/loadavg.h ../../../winix/core/image.h +createticket.o: ../../../winix/core/threadmanager.h +createticket.o: ../../../winix/core/timezones.h +createticket.o: ../../../winix/core/timezone.h +createticket.o: ../../../winix/core/sessionmanager.h +createticket.o: ../../../winix/core/sessioncontainer.h +createticket.o: ../../../winix/core/ipbancontainer.h +createticket.o: ../../../winix/functions/functions.h +createticket.o: ../../../winix/functions/functionbase.h +createticket.o: ../../../winix/core/request.h ../../../winix/core/system.h +createticket.o: ../../../winix/core/synchro.h +createticket.o: ../../../winix/functions/functionparser.h +createticket.o: ../../../winix/core/cur.h ../../../winix/functions/account.h +createticket.o: ../../../winix/functions/adduser.h +createticket.o: ../../../winix/functions/cat.h +createticket.o: ../../../winix/functions/chmod.h +createticket.o: ../../../winix/functions/privchanger.h +createticket.o: ../../../winix/functions/chown.h +createticket.o: ../../../winix/functions/ckeditor.h +createticket.o: ../../../winix/functions/cp.h +createticket.o: ../../../winix/functions/default.h +createticket.o: ../../../winix/functions/download.h +createticket.o: ../../../winix/functions/emacs.h +createticket.o: ../../../winix/functions/env.h +createticket.o: ../../../winix/functions/imgcrop.h +createticket.o: ../../../winix/functions/last.h +createticket.o: ../../../winix/functions/login.h +createticket.o: ../../../winix/functions/logout.h +createticket.o: ../../../winix/functions/ln.h ../../../winix/functions/ls.h +createticket.o: ../../../winix/functions/man.h +createticket.o: ../../../winix/functions/meta.h +createticket.o: ../../../winix/functions/mkdir.h +createticket.o: ../../../winix/functions/mv.h +createticket.o: ../../../winix/functions/nicedit.h +createticket.o: ../../../winix/functions/node.h +createticket.o: ../../../winix/functions/passwd.h +createticket.o: ../../../winix/functions/priv.h ../../../winix/functions/pw.h +createticket.o: ../../../winix/functions/reload.h +createticket.o: ../../../winix/functions/rm.h +createticket.o: ../../../winix/functions/rmuser.h +createticket.o: ../../../winix/functions/sort.h +createticket.o: ../../../winix/functions/specialdefault.h +createticket.o: ../../../winix/functions/stat.h +createticket.o: ../../../winix/functions/subject.h +createticket.o: ../../../winix/functions/template.h +createticket.o: ../../../winix/functions/tinymce.h +createticket.o: ../../../winix/functions/uname.h +createticket.o: ../../../winix/functions/upload.h +createticket.o: ../../../winix/functions/uptime.h +createticket.o: ../../../winix/functions/who.h ../../../winix/functions/vim.h +createticket.o: ../../../winix/core/htmlfilter.h +createticket.o: ../../../winix/templates/templates.h +createticket.o: ../../../winix/templates/patterncacher.h +createticket.o: ../../../winix/templates/indexpatterns.h +createticket.o: ../../../winix/templates/patterns.h +createticket.o: ../../../winix/templates/changepatterns.h +createticket.o: ../../../winix/templates/htmltextstream.h +createticket.o: ../../../winix/core/sessionmanager.h createticket.h tdb.h +createticket.o: ticket.h ../../../winix/db/dbbase.h +createticket.o: ../../../winix/functions/functionbase.h ticketinfo.h +createticket.o: sessiondata.h ../../../winix/core/plugindata.h +createticket.o: ../../../winix/functions/rm.h +editticket.o: editticket.h tdb.h ticket.h ../../../winix/db/dbbase.h +editticket.o: ../../../winix/core/error.h ticketinfo.h +editticket.o: ../../../winix/core/item.h ../../../winix/core/system.h +editticket.o: ../../../winix/functions/functions.h +editticket.o: ../../../winix/functions/functionbase.h ../../../winix/db/db.h +editticket.o: ../../../winix/db/dbbase.h ../../../winix/db/dbconn.h +editticket.o: ../../../winix/db/dbtextstream.h +editticket.o: ../../../winix/core/textstream.h editticket.o: ../../../pikotools/textstream/textstream.h editticket.o: ../../../pikotools/space/space.h editticket.o: ../../../pikotools/textstream/types.h @@ -88,69 +135,104 @@ editticket.o: ../../../pikotools/convert/inttostr.h editticket.o: ../../../pikotools/membuffer/membuffer.h editticket.o: ../../../pikotools/textstream/types.h editticket.o: ../../../pikotools/space/spaceparser.h -editticket.o: ../../../pikotools/space/space.h ../../db/dbitemquery.h -editticket.o: ../../db/dbitemcolumns.h ../../core/user.h ../../core/group.h -editticket.o: ../../core/dircontainer.h ../../core/ugcontainer.h -editticket.o: ../../core/log.h ../../core/textstream.h ../../core/misc.h -editticket.o: ../../core/item.h ../../core/requesttypes.h -editticket.o: ../../../pikotools/utf8/utf8.h ../../core/logmanipulators.h -editticket.o: ../../core/slog.h ../../core/cur.h ../../core/request.h -editticket.o: ../../core/error.h ../../core/config.h ../../core/htmlfilter.h -editticket.o: ../../templates/htmltextstream.h -editticket.o: ../../../pikotools/space/spacetojson.h ../../core/session.h -editticket.o: ../../core/user.h ../../core/plugindata.h ../../core/rebus.h -editticket.o: ../../core/ipban.h ../../core/mount.h ../../templates/locale.h -editticket.o: ../../core/request.h ../../core/config.h ../../core/synchro.h -editticket.o: ../../notify/notify.h ../../notify/notifypool.h -editticket.o: ../../templates/patterns.h ../../templates/locale.h -editticket.o: ../../templates/localefilter.h ../../../ezc/src/ezc.h +editticket.o: ../../../pikotools/space/space.h +editticket.o: ../../../winix/db/dbitemquery.h +editticket.o: ../../../winix/db/dbitemcolumns.h ../../../winix/core/user.h +editticket.o: ../../../winix/core/group.h ../../../winix/core/dircontainer.h +editticket.o: ../../../winix/core/ugcontainer.h ../../../winix/core/log.h +editticket.o: ../../../winix/core/textstream.h ../../../winix/core/misc.h +editticket.o: ../../../winix/core/item.h ../../../winix/core/requesttypes.h +editticket.o: ../../../pikotools/utf8/utf8.h +editticket.o: ../../../winix/core/logmanipulators.h +editticket.o: ../../../winix/core/slog.h ../../../winix/core/cur.h +editticket.o: ../../../winix/core/request.h ../../../winix/core/error.h +editticket.o: ../../../winix/core/config.h ../../../winix/core/htmlfilter.h +editticket.o: ../../../winix/templates/htmltextstream.h +editticket.o: ../../../pikotools/space/spacetojson.h +editticket.o: ../../../winix/core/session.h ../../../winix/core/user.h +editticket.o: ../../../winix/core/plugindata.h ../../../winix/core/rebus.h +editticket.o: ../../../winix/core/ipban.h ../../../winix/core/mount.h +editticket.o: ../../../winix/templates/locale.h ../../../winix/core/request.h +editticket.o: ../../../winix/core/config.h ../../../winix/core/synchro.h +editticket.o: ../../../winix/notify/notify.h +editticket.o: ../../../winix/notify/notifypool.h +editticket.o: ../../../winix/templates/patterns.h +editticket.o: ../../../winix/templates/locale.h +editticket.o: ../../../winix/templates/localefilter.h ../../../ezc/src/ezc.h editticket.o: ../../../ezc/src/generator.h ../../../ezc/src/pattern.h editticket.o: ../../../ezc/src/functions.h ../../../ezc/src/funinfo.h -editticket.o: ../../../ezc/src/stringconv.h ../../notify/notifythread.h -editticket.o: ../../core/basethread.h ../../notify/templatesnotify.h -editticket.o: ../../core/users.h ../../core/ugcontainer.h -editticket.o: ../../core/lastcontainer.h ../../functions/functionparser.h -editticket.o: ../../core/cur.h ../../functions/account.h -editticket.o: ../../functions/adduser.h ../../functions/cat.h -editticket.o: ../../functions/chmod.h ../../functions/privchanger.h -editticket.o: ../../functions/chown.h ../../functions/ckeditor.h -editticket.o: ../../functions/cp.h ../../functions/default.h -editticket.o: ../../functions/download.h ../../functions/emacs.h -editticket.o: ../../functions/env.h ../../functions/imgcrop.h -editticket.o: ../../functions/last.h ../../functions/login.h -editticket.o: ../../functions/logout.h ../../functions/ln.h -editticket.o: ../../functions/ls.h ../../functions/man.h -editticket.o: ../../functions/meta.h ../../functions/mkdir.h -editticket.o: ../../functions/mv.h ../../functions/nicedit.h -editticket.o: ../../functions/node.h ../../functions/passwd.h -editticket.o: ../../functions/priv.h ../../functions/pw.h -editticket.o: ../../functions/reload.h ../../functions/rm.h -editticket.o: ../../functions/rmuser.h ../../core/run.h -editticket.o: ../../functions/sort.h ../../functions/specialdefault.h -editticket.o: ../../functions/stat.h ../../functions/subject.h -editticket.o: ../../functions/template.h ../../core/timezone.h -editticket.o: ../../functions/tinymce.h ../../functions/uname.h -editticket.o: ../../functions/upload.h ../../functions/uptime.h -editticket.o: ../../functions/who.h ../../functions/vim.h -editticket.o: ../../core/htmlfilter.h ../../functions/functionbase.h -editticket.o: sessiondata.h ../../core/plugindata.h ../../functions/rm.h -editticket.o: ../../core/plugin.h pluginmsg.h ../../core/system.h -editticket.o: ../../core/job.h ../../core/basethread.h ../../core/synchro.h -editticket.o: ../../core/dirs.h ../../core/dircontainer.h ../../core/mounts.h -editticket.o: ../../core/mountparser.h ../../core/crypt.h ../../core/users.h -editticket.o: ../../core/groups.h ../../core/group.h ../../core/loadavg.h -editticket.o: ../../core/image.h ../../core/threadmanager.h -editticket.o: ../../core/timezones.h ../../core/sessionmanager.h -editticket.o: ../../core/sessioncontainer.h ../../core/ipbancontainer.h -editticket.o: ../../templates/templates.h ../../templates/patterncacher.h -editticket.o: ../../templates/indexpatterns.h ../../templates/patterns.h -editticket.o: ../../templates/changepatterns.h -editticket.o: ../../templates/htmltextstream.h ../../core/sessionmanager.h -funticket.o: funticket.h tdb.h ticket.h ../../db/dbbase.h ../../core/error.h -funticket.o: ticketinfo.h ../../core/item.h ../../core/system.h -funticket.o: ../../functions/functions.h ../../functions/functionbase.h -funticket.o: ../../db/db.h ../../db/dbbase.h ../../db/dbconn.h -funticket.o: ../../db/dbtextstream.h ../../core/textstream.h +editticket.o: ../../../ezc/src/stringconv.h +editticket.o: ../../../winix/notify/notifythread.h +editticket.o: ../../../winix/core/basethread.h +editticket.o: ../../../winix/notify/templatesnotify.h +editticket.o: ../../../winix/core/users.h ../../../winix/core/ugcontainer.h +editticket.o: ../../../winix/core/lastcontainer.h +editticket.o: ../../../winix/functions/functionparser.h +editticket.o: ../../../winix/core/cur.h ../../../winix/functions/account.h +editticket.o: ../../../winix/functions/adduser.h +editticket.o: ../../../winix/functions/cat.h ../../../winix/functions/chmod.h +editticket.o: ../../../winix/functions/privchanger.h +editticket.o: ../../../winix/functions/chown.h +editticket.o: ../../../winix/functions/ckeditor.h +editticket.o: ../../../winix/functions/cp.h +editticket.o: ../../../winix/functions/default.h +editticket.o: ../../../winix/functions/download.h +editticket.o: ../../../winix/functions/emacs.h ../../../winix/functions/env.h +editticket.o: ../../../winix/functions/imgcrop.h +editticket.o: ../../../winix/functions/last.h +editticket.o: ../../../winix/functions/login.h +editticket.o: ../../../winix/functions/logout.h ../../../winix/functions/ln.h +editticket.o: ../../../winix/functions/ls.h ../../../winix/functions/man.h +editticket.o: ../../../winix/functions/meta.h +editticket.o: ../../../winix/functions/mkdir.h ../../../winix/functions/mv.h +editticket.o: ../../../winix/functions/nicedit.h +editticket.o: ../../../winix/functions/node.h +editticket.o: ../../../winix/functions/passwd.h +editticket.o: ../../../winix/functions/priv.h ../../../winix/functions/pw.h +editticket.o: ../../../winix/functions/reload.h ../../../winix/functions/rm.h +editticket.o: ../../../winix/functions/rmuser.h ../../../winix/core/run.h +editticket.o: ../../../winix/functions/sort.h +editticket.o: ../../../winix/functions/specialdefault.h +editticket.o: ../../../winix/functions/stat.h +editticket.o: ../../../winix/functions/subject.h +editticket.o: ../../../winix/functions/template.h +editticket.o: ../../../winix/core/timezone.h +editticket.o: ../../../winix/functions/tinymce.h +editticket.o: ../../../winix/functions/uname.h +editticket.o: ../../../winix/functions/upload.h +editticket.o: ../../../winix/functions/uptime.h +editticket.o: ../../../winix/functions/who.h ../../../winix/functions/vim.h +editticket.o: ../../../winix/core/htmlfilter.h +editticket.o: ../../../winix/functions/functionbase.h sessiondata.h +editticket.o: ../../../winix/core/plugindata.h ../../../winix/functions/rm.h +editticket.o: ../../../winix/core/plugin.h pluginmsg.h +editticket.o: ../../../winix/core/system.h ../../../winix/core/job.h +editticket.o: ../../../winix/core/basethread.h ../../../winix/core/synchro.h +editticket.o: ../../../winix/core/dirs.h ../../../winix/core/dircontainer.h +editticket.o: ../../../winix/core/mounts.h ../../../winix/core/mountparser.h +editticket.o: ../../../winix/core/crypt.h ../../../winix/core/users.h +editticket.o: ../../../winix/core/groups.h ../../../winix/core/group.h +editticket.o: ../../../winix/core/loadavg.h ../../../winix/core/image.h +editticket.o: ../../../winix/core/threadmanager.h +editticket.o: ../../../winix/core/timezones.h +editticket.o: ../../../winix/core/sessionmanager.h +editticket.o: ../../../winix/core/sessioncontainer.h +editticket.o: ../../../winix/core/ipbancontainer.h +editticket.o: ../../../winix/templates/templates.h +editticket.o: ../../../winix/templates/patterncacher.h +editticket.o: ../../../winix/templates/indexpatterns.h +editticket.o: ../../../winix/templates/patterns.h +editticket.o: ../../../winix/templates/changepatterns.h +editticket.o: ../../../winix/templates/htmltextstream.h +editticket.o: ../../../winix/core/sessionmanager.h +funticket.o: funticket.h tdb.h ticket.h ../../../winix/db/dbbase.h +funticket.o: ../../../winix/core/error.h ticketinfo.h +funticket.o: ../../../winix/core/item.h ../../../winix/core/system.h +funticket.o: ../../../winix/functions/functions.h +funticket.o: ../../../winix/functions/functionbase.h ../../../winix/db/db.h +funticket.o: ../../../winix/db/dbbase.h ../../../winix/db/dbconn.h +funticket.o: ../../../winix/db/dbtextstream.h +funticket.o: ../../../winix/core/textstream.h funticket.o: ../../../pikotools/textstream/textstream.h funticket.o: ../../../pikotools/space/space.h funticket.o: ../../../pikotools/textstream/types.h @@ -160,68 +242,97 @@ funticket.o: ../../../pikotools/convert/inttostr.h funticket.o: ../../../pikotools/membuffer/membuffer.h funticket.o: ../../../pikotools/textstream/types.h funticket.o: ../../../pikotools/space/spaceparser.h -funticket.o: ../../../pikotools/space/space.h ../../db/dbitemquery.h -funticket.o: ../../db/dbitemcolumns.h ../../core/user.h ../../core/group.h -funticket.o: ../../core/dircontainer.h ../../core/ugcontainer.h -funticket.o: ../../core/log.h ../../core/textstream.h ../../core/misc.h -funticket.o: ../../core/item.h ../../core/requesttypes.h -funticket.o: ../../../pikotools/utf8/utf8.h ../../core/logmanipulators.h -funticket.o: ../../core/slog.h ../../core/cur.h ../../core/request.h -funticket.o: ../../core/error.h ../../core/config.h ../../core/htmlfilter.h -funticket.o: ../../templates/htmltextstream.h -funticket.o: ../../../pikotools/space/spacetojson.h ../../core/session.h -funticket.o: ../../core/user.h ../../core/plugindata.h ../../core/rebus.h -funticket.o: ../../core/ipban.h ../../core/mount.h ../../templates/locale.h -funticket.o: ../../core/request.h ../../core/config.h ../../core/synchro.h -funticket.o: ../../notify/notify.h ../../notify/notifypool.h -funticket.o: ../../templates/patterns.h ../../templates/locale.h -funticket.o: ../../templates/localefilter.h ../../../ezc/src/ezc.h +funticket.o: ../../../pikotools/space/space.h ../../../winix/db/dbitemquery.h +funticket.o: ../../../winix/db/dbitemcolumns.h ../../../winix/core/user.h +funticket.o: ../../../winix/core/group.h ../../../winix/core/dircontainer.h +funticket.o: ../../../winix/core/ugcontainer.h ../../../winix/core/log.h +funticket.o: ../../../winix/core/textstream.h ../../../winix/core/misc.h +funticket.o: ../../../winix/core/item.h ../../../winix/core/requesttypes.h +funticket.o: ../../../pikotools/utf8/utf8.h +funticket.o: ../../../winix/core/logmanipulators.h ../../../winix/core/slog.h +funticket.o: ../../../winix/core/cur.h ../../../winix/core/request.h +funticket.o: ../../../winix/core/error.h ../../../winix/core/config.h +funticket.o: ../../../winix/core/htmlfilter.h +funticket.o: ../../../winix/templates/htmltextstream.h +funticket.o: ../../../pikotools/space/spacetojson.h +funticket.o: ../../../winix/core/session.h ../../../winix/core/user.h +funticket.o: ../../../winix/core/plugindata.h ../../../winix/core/rebus.h +funticket.o: ../../../winix/core/ipban.h ../../../winix/core/mount.h +funticket.o: ../../../winix/templates/locale.h ../../../winix/core/request.h +funticket.o: ../../../winix/core/config.h ../../../winix/core/synchro.h +funticket.o: ../../../winix/notify/notify.h +funticket.o: ../../../winix/notify/notifypool.h +funticket.o: ../../../winix/templates/patterns.h +funticket.o: ../../../winix/templates/locale.h +funticket.o: ../../../winix/templates/localefilter.h ../../../ezc/src/ezc.h funticket.o: ../../../ezc/src/generator.h ../../../ezc/src/pattern.h funticket.o: ../../../ezc/src/functions.h ../../../ezc/src/funinfo.h -funticket.o: ../../../ezc/src/stringconv.h ../../notify/notifythread.h -funticket.o: ../../core/basethread.h ../../notify/templatesnotify.h -funticket.o: ../../core/users.h ../../core/ugcontainer.h -funticket.o: ../../core/lastcontainer.h ../../functions/functionparser.h -funticket.o: ../../core/cur.h ../../functions/account.h -funticket.o: ../../functions/adduser.h ../../functions/cat.h -funticket.o: ../../functions/chmod.h ../../functions/privchanger.h -funticket.o: ../../functions/chown.h ../../functions/ckeditor.h -funticket.o: ../../functions/cp.h ../../functions/default.h -funticket.o: ../../functions/download.h ../../functions/emacs.h -funticket.o: ../../functions/env.h ../../functions/imgcrop.h -funticket.o: ../../functions/last.h ../../functions/login.h -funticket.o: ../../functions/logout.h ../../functions/ln.h -funticket.o: ../../functions/ls.h ../../functions/man.h -funticket.o: ../../functions/meta.h ../../functions/mkdir.h -funticket.o: ../../functions/mv.h ../../functions/nicedit.h -funticket.o: ../../functions/node.h ../../functions/passwd.h -funticket.o: ../../functions/priv.h ../../functions/pw.h -funticket.o: ../../functions/reload.h ../../functions/rm.h -funticket.o: ../../functions/rmuser.h ../../core/run.h ../../functions/sort.h -funticket.o: ../../functions/specialdefault.h ../../functions/stat.h -funticket.o: ../../functions/subject.h ../../functions/template.h -funticket.o: ../../core/timezone.h ../../functions/tinymce.h -funticket.o: ../../functions/uname.h ../../functions/upload.h -funticket.o: ../../functions/uptime.h ../../functions/who.h -funticket.o: ../../functions/vim.h ../../core/htmlfilter.h -funticket.o: ../../functions/functionbase.h ../../core/plugin.h pluginmsg.h -funticket.o: ../../core/system.h ../../core/job.h ../../core/basethread.h -funticket.o: ../../core/synchro.h ../../core/dirs.h ../../core/dircontainer.h -funticket.o: ../../core/mounts.h ../../core/mountparser.h ../../core/crypt.h -funticket.o: ../../core/users.h ../../core/groups.h ../../core/group.h -funticket.o: ../../core/loadavg.h ../../core/image.h -funticket.o: ../../core/threadmanager.h ../../core/timezones.h -funticket.o: ../../core/sessionmanager.h ../../core/sessioncontainer.h -funticket.o: ../../core/ipbancontainer.h ../../templates/templates.h -funticket.o: ../../templates/patterncacher.h ../../templates/indexpatterns.h -funticket.o: ../../templates/patterns.h ../../templates/changepatterns.h -funticket.o: ../../templates/htmltextstream.h ../../core/sessionmanager.h -funticket.o: ../../plugins/thread/pluginmsg.h -init.o: tdb.h ticket.h ../../db/dbbase.h ../../core/error.h funticket.h -init.o: ticketinfo.h ../../core/item.h ../../core/system.h -init.o: ../../functions/functions.h ../../functions/functionbase.h -init.o: ../../db/db.h ../../db/dbbase.h ../../db/dbconn.h -init.o: ../../db/dbtextstream.h ../../core/textstream.h +funticket.o: ../../../ezc/src/stringconv.h +funticket.o: ../../../winix/notify/notifythread.h +funticket.o: ../../../winix/core/basethread.h +funticket.o: ../../../winix/notify/templatesnotify.h +funticket.o: ../../../winix/core/users.h ../../../winix/core/ugcontainer.h +funticket.o: ../../../winix/core/lastcontainer.h +funticket.o: ../../../winix/functions/functionparser.h +funticket.o: ../../../winix/core/cur.h ../../../winix/functions/account.h +funticket.o: ../../../winix/functions/adduser.h +funticket.o: ../../../winix/functions/cat.h ../../../winix/functions/chmod.h +funticket.o: ../../../winix/functions/privchanger.h +funticket.o: ../../../winix/functions/chown.h +funticket.o: ../../../winix/functions/ckeditor.h +funticket.o: ../../../winix/functions/cp.h ../../../winix/functions/default.h +funticket.o: ../../../winix/functions/download.h +funticket.o: ../../../winix/functions/emacs.h ../../../winix/functions/env.h +funticket.o: ../../../winix/functions/imgcrop.h +funticket.o: ../../../winix/functions/last.h ../../../winix/functions/login.h +funticket.o: ../../../winix/functions/logout.h ../../../winix/functions/ln.h +funticket.o: ../../../winix/functions/ls.h ../../../winix/functions/man.h +funticket.o: ../../../winix/functions/meta.h ../../../winix/functions/mkdir.h +funticket.o: ../../../winix/functions/mv.h ../../../winix/functions/nicedit.h +funticket.o: ../../../winix/functions/node.h +funticket.o: ../../../winix/functions/passwd.h +funticket.o: ../../../winix/functions/priv.h ../../../winix/functions/pw.h +funticket.o: ../../../winix/functions/reload.h ../../../winix/functions/rm.h +funticket.o: ../../../winix/functions/rmuser.h ../../../winix/core/run.h +funticket.o: ../../../winix/functions/sort.h +funticket.o: ../../../winix/functions/specialdefault.h +funticket.o: ../../../winix/functions/stat.h +funticket.o: ../../../winix/functions/subject.h +funticket.o: ../../../winix/functions/template.h +funticket.o: ../../../winix/core/timezone.h +funticket.o: ../../../winix/functions/tinymce.h +funticket.o: ../../../winix/functions/uname.h +funticket.o: ../../../winix/functions/upload.h +funticket.o: ../../../winix/functions/uptime.h ../../../winix/functions/who.h +funticket.o: ../../../winix/functions/vim.h ../../../winix/core/htmlfilter.h +funticket.o: ../../../winix/functions/functionbase.h +funticket.o: ../../../winix/core/plugin.h pluginmsg.h +funticket.o: ../../../winix/core/system.h ../../../winix/core/job.h +funticket.o: ../../../winix/core/basethread.h ../../../winix/core/synchro.h +funticket.o: ../../../winix/core/dirs.h ../../../winix/core/dircontainer.h +funticket.o: ../../../winix/core/mounts.h ../../../winix/core/mountparser.h +funticket.o: ../../../winix/core/crypt.h ../../../winix/core/users.h +funticket.o: ../../../winix/core/groups.h ../../../winix/core/group.h +funticket.o: ../../../winix/core/loadavg.h ../../../winix/core/image.h +funticket.o: ../../../winix/core/threadmanager.h +funticket.o: ../../../winix/core/timezones.h +funticket.o: ../../../winix/core/sessionmanager.h +funticket.o: ../../../winix/core/sessioncontainer.h +funticket.o: ../../../winix/core/ipbancontainer.h +funticket.o: ../../../winix/templates/templates.h +funticket.o: ../../../winix/templates/patterncacher.h +funticket.o: ../../../winix/templates/indexpatterns.h +funticket.o: ../../../winix/templates/patterns.h +funticket.o: ../../../winix/templates/changepatterns.h +funticket.o: ../../../winix/templates/htmltextstream.h +funticket.o: ../../../winix/core/sessionmanager.h +funticket.o: ../../../winix/plugins/thread/pluginmsg.h +init.o: tdb.h ticket.h ../../../winix/db/dbbase.h ../../../winix/core/error.h +init.o: funticket.h ticketinfo.h ../../../winix/core/item.h +init.o: ../../../winix/core/system.h ../../../winix/functions/functions.h +init.o: ../../../winix/functions/functionbase.h ../../../winix/db/db.h +init.o: ../../../winix/db/dbbase.h ../../../winix/db/dbconn.h +init.o: ../../../winix/db/dbtextstream.h ../../../winix/core/textstream.h init.o: ../../../pikotools/textstream/textstream.h init.o: ../../../pikotools/space/space.h init.o: ../../../pikotools/textstream/types.h ../../../pikotools/date/date.h @@ -230,71 +341,93 @@ init.o: ../../../pikotools/convert/inttostr.h init.o: ../../../pikotools/membuffer/membuffer.h init.o: ../../../pikotools/textstream/types.h init.o: ../../../pikotools/space/spaceparser.h -init.o: ../../../pikotools/space/space.h ../../db/dbitemquery.h -init.o: ../../db/dbitemcolumns.h ../../core/user.h ../../core/group.h -init.o: ../../core/dircontainer.h ../../core/ugcontainer.h ../../core/log.h -init.o: ../../core/textstream.h ../../core/misc.h ../../core/item.h -init.o: ../../core/requesttypes.h ../../../pikotools/utf8/utf8.h -init.o: ../../core/logmanipulators.h ../../core/slog.h ../../core/cur.h -init.o: ../../core/request.h ../../core/error.h ../../core/config.h -init.o: ../../core/htmlfilter.h ../../templates/htmltextstream.h -init.o: ../../../pikotools/space/spacetojson.h ../../core/session.h -init.o: ../../core/user.h ../../core/plugindata.h ../../core/rebus.h -init.o: ../../core/ipban.h ../../core/mount.h ../../templates/locale.h -init.o: ../../core/request.h ../../core/config.h ../../core/synchro.h -init.o: ../../notify/notify.h ../../notify/notifypool.h -init.o: ../../templates/patterns.h ../../templates/locale.h -init.o: ../../templates/localefilter.h ../../../ezc/src/ezc.h +init.o: ../../../pikotools/space/space.h ../../../winix/db/dbitemquery.h +init.o: ../../../winix/db/dbitemcolumns.h ../../../winix/core/user.h +init.o: ../../../winix/core/group.h ../../../winix/core/dircontainer.h +init.o: ../../../winix/core/ugcontainer.h ../../../winix/core/log.h +init.o: ../../../winix/core/textstream.h ../../../winix/core/misc.h +init.o: ../../../winix/core/item.h ../../../winix/core/requesttypes.h +init.o: ../../../pikotools/utf8/utf8.h ../../../winix/core/logmanipulators.h +init.o: ../../../winix/core/slog.h ../../../winix/core/cur.h +init.o: ../../../winix/core/request.h ../../../winix/core/error.h +init.o: ../../../winix/core/config.h ../../../winix/core/htmlfilter.h +init.o: ../../../winix/templates/htmltextstream.h +init.o: ../../../pikotools/space/spacetojson.h ../../../winix/core/session.h +init.o: ../../../winix/core/user.h ../../../winix/core/plugindata.h +init.o: ../../../winix/core/rebus.h ../../../winix/core/ipban.h +init.o: ../../../winix/core/mount.h ../../../winix/templates/locale.h +init.o: ../../../winix/core/request.h ../../../winix/core/config.h +init.o: ../../../winix/core/synchro.h ../../../winix/notify/notify.h +init.o: ../../../winix/notify/notifypool.h +init.o: ../../../winix/templates/patterns.h ../../../winix/templates/locale.h +init.o: ../../../winix/templates/localefilter.h ../../../ezc/src/ezc.h init.o: ../../../ezc/src/generator.h ../../../ezc/src/pattern.h init.o: ../../../ezc/src/functions.h ../../../ezc/src/funinfo.h -init.o: ../../../ezc/src/stringconv.h ../../notify/notifythread.h -init.o: ../../core/basethread.h ../../notify/templatesnotify.h -init.o: ../../core/users.h ../../core/ugcontainer.h -init.o: ../../core/lastcontainer.h ../../functions/functionparser.h -init.o: ../../core/cur.h ../../functions/account.h ../../functions/adduser.h -init.o: ../../functions/cat.h ../../functions/chmod.h -init.o: ../../functions/privchanger.h ../../functions/chown.h -init.o: ../../functions/ckeditor.h ../../functions/cp.h -init.o: ../../functions/default.h ../../functions/download.h -init.o: ../../functions/emacs.h ../../functions/env.h -init.o: ../../functions/imgcrop.h ../../functions/last.h -init.o: ../../functions/login.h ../../functions/logout.h ../../functions/ln.h -init.o: ../../functions/ls.h ../../functions/man.h ../../functions/meta.h -init.o: ../../functions/mkdir.h ../../functions/mv.h -init.o: ../../functions/nicedit.h ../../functions/node.h -init.o: ../../functions/passwd.h ../../functions/priv.h ../../functions/pw.h -init.o: ../../functions/reload.h ../../functions/rm.h -init.o: ../../functions/rmuser.h ../../core/run.h ../../functions/sort.h -init.o: ../../functions/specialdefault.h ../../functions/stat.h -init.o: ../../functions/subject.h ../../functions/template.h -init.o: ../../core/timezone.h ../../functions/tinymce.h -init.o: ../../functions/uname.h ../../functions/upload.h -init.o: ../../functions/uptime.h ../../functions/who.h ../../functions/vim.h -init.o: ../../core/htmlfilter.h ../../functions/functionbase.h editticket.h -init.o: createticket.h showtickets.h ../../core/log.h ../../core/plugin.h -init.o: pluginmsg.h ../../core/system.h ../../core/job.h -init.o: ../../core/basethread.h ../../core/synchro.h ../../core/dirs.h -init.o: ../../core/dircontainer.h ../../core/mounts.h -init.o: ../../core/mountparser.h ../../core/crypt.h ../../core/users.h -init.o: ../../core/groups.h ../../core/group.h ../../core/loadavg.h -init.o: ../../core/image.h ../../core/threadmanager.h ../../core/timezones.h -init.o: ../../core/sessionmanager.h ../../core/sessioncontainer.h -init.o: ../../core/ipbancontainer.h ../../templates/templates.h -init.o: ../../templates/patterncacher.h ../../templates/indexpatterns.h -init.o: ../../templates/patterns.h ../../templates/changepatterns.h -init.o: ../../templates/htmltextstream.h ../../core/sessionmanager.h -init.o: sessiondata.h ../../core/plugindata.h ../../functions/rm.h -init.o: ../../plugins/thread/showthreads.h ../../plugins/thread/threadinfo.h -init.o: ../../plugins/thread/thread.h ../../plugins/thread/pluginmsg.h -sessiondata.o: sessiondata.h ../../core/plugindata.h ticket.h -sessiondata.o: ../../functions/rm.h ../../../pikotools/space/space.h +init.o: ../../../ezc/src/stringconv.h ../../../winix/notify/notifythread.h +init.o: ../../../winix/core/basethread.h +init.o: ../../../winix/notify/templatesnotify.h ../../../winix/core/users.h +init.o: ../../../winix/core/ugcontainer.h ../../../winix/core/lastcontainer.h +init.o: ../../../winix/functions/functionparser.h ../../../winix/core/cur.h +init.o: ../../../winix/functions/account.h ../../../winix/functions/adduser.h +init.o: ../../../winix/functions/cat.h ../../../winix/functions/chmod.h +init.o: ../../../winix/functions/privchanger.h +init.o: ../../../winix/functions/chown.h ../../../winix/functions/ckeditor.h +init.o: ../../../winix/functions/cp.h ../../../winix/functions/default.h +init.o: ../../../winix/functions/download.h ../../../winix/functions/emacs.h +init.o: ../../../winix/functions/env.h ../../../winix/functions/imgcrop.h +init.o: ../../../winix/functions/last.h ../../../winix/functions/login.h +init.o: ../../../winix/functions/logout.h ../../../winix/functions/ln.h +init.o: ../../../winix/functions/ls.h ../../../winix/functions/man.h +init.o: ../../../winix/functions/meta.h ../../../winix/functions/mkdir.h +init.o: ../../../winix/functions/mv.h ../../../winix/functions/nicedit.h +init.o: ../../../winix/functions/node.h ../../../winix/functions/passwd.h +init.o: ../../../winix/functions/priv.h ../../../winix/functions/pw.h +init.o: ../../../winix/functions/reload.h ../../../winix/functions/rm.h +init.o: ../../../winix/functions/rmuser.h ../../../winix/core/run.h +init.o: ../../../winix/functions/sort.h +init.o: ../../../winix/functions/specialdefault.h +init.o: ../../../winix/functions/stat.h ../../../winix/functions/subject.h +init.o: ../../../winix/functions/template.h ../../../winix/core/timezone.h +init.o: ../../../winix/functions/tinymce.h ../../../winix/functions/uname.h +init.o: ../../../winix/functions/upload.h ../../../winix/functions/uptime.h +init.o: ../../../winix/functions/who.h ../../../winix/functions/vim.h +init.o: ../../../winix/core/htmlfilter.h +init.o: ../../../winix/functions/functionbase.h editticket.h createticket.h +init.o: showtickets.h ../../../winix/core/log.h ../../../winix/core/plugin.h +init.o: pluginmsg.h ../../../winix/core/system.h ../../../winix/core/job.h +init.o: ../../../winix/core/basethread.h ../../../winix/core/synchro.h +init.o: ../../../winix/core/dirs.h ../../../winix/core/dircontainer.h +init.o: ../../../winix/core/mounts.h ../../../winix/core/mountparser.h +init.o: ../../../winix/core/crypt.h ../../../winix/core/users.h +init.o: ../../../winix/core/groups.h ../../../winix/core/group.h +init.o: ../../../winix/core/loadavg.h ../../../winix/core/image.h +init.o: ../../../winix/core/threadmanager.h ../../../winix/core/timezones.h +init.o: ../../../winix/core/sessionmanager.h +init.o: ../../../winix/core/sessioncontainer.h +init.o: ../../../winix/core/ipbancontainer.h +init.o: ../../../winix/templates/templates.h +init.o: ../../../winix/templates/patterncacher.h +init.o: ../../../winix/templates/indexpatterns.h +init.o: ../../../winix/templates/patterns.h +init.o: ../../../winix/templates/changepatterns.h +init.o: ../../../winix/templates/htmltextstream.h +init.o: ../../../winix/core/sessionmanager.h sessiondata.h +init.o: ../../../winix/core/plugindata.h ../../../winix/functions/rm.h +init.o: ../../../winix/plugins/thread/showthreads.h +init.o: ../../../winix/plugins/thread/threadinfo.h +init.o: ../../../winix/plugins/thread/thread.h +init.o: ../../../winix/plugins/thread/pluginmsg.h +sessiondata.o: sessiondata.h ../../../winix/core/plugindata.h ticket.h +sessiondata.o: ../../../winix/functions/rm.h ../../../pikotools/space/space.h sessiondata.o: ../../../pikotools/textstream/types.h -showtickets.o: showtickets.h tdb.h ticket.h ../../db/dbbase.h -showtickets.o: ../../core/error.h ticketinfo.h ../../core/item.h -showtickets.o: ../../core/system.h ../../functions/functions.h -showtickets.o: ../../functions/functionbase.h ../../db/db.h ../../db/dbbase.h -showtickets.o: ../../db/dbconn.h ../../db/dbtextstream.h -showtickets.o: ../../core/textstream.h +showtickets.o: showtickets.h tdb.h ticket.h ../../../winix/db/dbbase.h +showtickets.o: ../../../winix/core/error.h ticketinfo.h +showtickets.o: ../../../winix/core/item.h ../../../winix/core/system.h +showtickets.o: ../../../winix/functions/functions.h +showtickets.o: ../../../winix/functions/functionbase.h ../../../winix/db/db.h +showtickets.o: ../../../winix/db/dbbase.h ../../../winix/db/dbconn.h +showtickets.o: ../../../winix/db/dbtextstream.h +showtickets.o: ../../../winix/core/textstream.h showtickets.o: ../../../pikotools/textstream/textstream.h showtickets.o: ../../../pikotools/space/space.h showtickets.o: ../../../pikotools/textstream/types.h @@ -304,142 +437,213 @@ showtickets.o: ../../../pikotools/convert/inttostr.h showtickets.o: ../../../pikotools/membuffer/membuffer.h showtickets.o: ../../../pikotools/textstream/types.h showtickets.o: ../../../pikotools/space/spaceparser.h -showtickets.o: ../../../pikotools/space/space.h ../../db/dbitemquery.h -showtickets.o: ../../db/dbitemcolumns.h ../../core/user.h ../../core/group.h -showtickets.o: ../../core/dircontainer.h ../../core/ugcontainer.h -showtickets.o: ../../core/log.h ../../core/textstream.h ../../core/misc.h -showtickets.o: ../../core/item.h ../../core/requesttypes.h -showtickets.o: ../../../pikotools/utf8/utf8.h ../../core/logmanipulators.h -showtickets.o: ../../core/slog.h ../../core/cur.h ../../core/request.h -showtickets.o: ../../core/error.h ../../core/config.h ../../core/htmlfilter.h -showtickets.o: ../../templates/htmltextstream.h -showtickets.o: ../../../pikotools/space/spacetojson.h ../../core/session.h -showtickets.o: ../../core/user.h ../../core/plugindata.h ../../core/rebus.h -showtickets.o: ../../core/ipban.h ../../core/mount.h ../../templates/locale.h -showtickets.o: ../../core/request.h ../../core/config.h ../../core/synchro.h -showtickets.o: ../../notify/notify.h ../../notify/notifypool.h -showtickets.o: ../../templates/patterns.h ../../templates/locale.h -showtickets.o: ../../templates/localefilter.h ../../../ezc/src/ezc.h +showtickets.o: ../../../pikotools/space/space.h +showtickets.o: ../../../winix/db/dbitemquery.h +showtickets.o: ../../../winix/db/dbitemcolumns.h ../../../winix/core/user.h +showtickets.o: ../../../winix/core/group.h ../../../winix/core/dircontainer.h +showtickets.o: ../../../winix/core/ugcontainer.h ../../../winix/core/log.h +showtickets.o: ../../../winix/core/textstream.h ../../../winix/core/misc.h +showtickets.o: ../../../winix/core/item.h ../../../winix/core/requesttypes.h +showtickets.o: ../../../pikotools/utf8/utf8.h +showtickets.o: ../../../winix/core/logmanipulators.h +showtickets.o: ../../../winix/core/slog.h ../../../winix/core/cur.h +showtickets.o: ../../../winix/core/request.h ../../../winix/core/error.h +showtickets.o: ../../../winix/core/config.h ../../../winix/core/htmlfilter.h +showtickets.o: ../../../winix/templates/htmltextstream.h +showtickets.o: ../../../pikotools/space/spacetojson.h +showtickets.o: ../../../winix/core/session.h ../../../winix/core/user.h +showtickets.o: ../../../winix/core/plugindata.h ../../../winix/core/rebus.h +showtickets.o: ../../../winix/core/ipban.h ../../../winix/core/mount.h +showtickets.o: ../../../winix/templates/locale.h +showtickets.o: ../../../winix/core/request.h ../../../winix/core/config.h +showtickets.o: ../../../winix/core/synchro.h ../../../winix/notify/notify.h +showtickets.o: ../../../winix/notify/notifypool.h +showtickets.o: ../../../winix/templates/patterns.h +showtickets.o: ../../../winix/templates/locale.h +showtickets.o: ../../../winix/templates/localefilter.h ../../../ezc/src/ezc.h showtickets.o: ../../../ezc/src/generator.h ../../../ezc/src/pattern.h showtickets.o: ../../../ezc/src/functions.h ../../../ezc/src/funinfo.h -showtickets.o: ../../../ezc/src/stringconv.h ../../notify/notifythread.h -showtickets.o: ../../core/basethread.h ../../notify/templatesnotify.h -showtickets.o: ../../core/users.h ../../core/ugcontainer.h -showtickets.o: ../../core/lastcontainer.h ../../functions/functionparser.h -showtickets.o: ../../core/cur.h ../../functions/account.h -showtickets.o: ../../functions/adduser.h ../../functions/cat.h -showtickets.o: ../../functions/chmod.h ../../functions/privchanger.h -showtickets.o: ../../functions/chown.h ../../functions/ckeditor.h -showtickets.o: ../../functions/cp.h ../../functions/default.h -showtickets.o: ../../functions/download.h ../../functions/emacs.h -showtickets.o: ../../functions/env.h ../../functions/imgcrop.h -showtickets.o: ../../functions/last.h ../../functions/login.h -showtickets.o: ../../functions/logout.h ../../functions/ln.h -showtickets.o: ../../functions/ls.h ../../functions/man.h -showtickets.o: ../../functions/meta.h ../../functions/mkdir.h -showtickets.o: ../../functions/mv.h ../../functions/nicedit.h -showtickets.o: ../../functions/node.h ../../functions/passwd.h -showtickets.o: ../../functions/priv.h ../../functions/pw.h -showtickets.o: ../../functions/reload.h ../../functions/rm.h -showtickets.o: ../../functions/rmuser.h ../../core/run.h -showtickets.o: ../../functions/sort.h ../../functions/specialdefault.h -showtickets.o: ../../functions/stat.h ../../functions/subject.h -showtickets.o: ../../functions/template.h ../../core/timezone.h -showtickets.o: ../../functions/tinymce.h ../../functions/uname.h -showtickets.o: ../../functions/upload.h ../../functions/uptime.h -showtickets.o: ../../functions/who.h ../../functions/vim.h -showtickets.o: ../../core/htmlfilter.h ../../functions/functionbase.h -showtickets.o: pluginmsg.h ../../plugins/thread/pluginmsg.h -showtickets.o: ../../core/plugin.h ../../core/system.h ../../core/job.h -showtickets.o: ../../core/basethread.h ../../core/synchro.h ../../core/dirs.h -showtickets.o: ../../core/dircontainer.h ../../core/mounts.h -showtickets.o: ../../core/mountparser.h ../../core/crypt.h ../../core/users.h -showtickets.o: ../../core/groups.h ../../core/group.h ../../core/loadavg.h -showtickets.o: ../../core/image.h ../../core/threadmanager.h -showtickets.o: ../../core/timezones.h ../../core/sessionmanager.h -showtickets.o: ../../core/sessioncontainer.h ../../core/ipbancontainer.h -showtickets.o: ../../templates/templates.h ../../templates/patterncacher.h -showtickets.o: ../../templates/indexpatterns.h ../../templates/patterns.h -showtickets.o: ../../templates/changepatterns.h -showtickets.o: ../../templates/htmltextstream.h ../../core/sessionmanager.h -tdb.o: tdb.h ticket.h ../../db/dbbase.h ../../core/error.h ../../core/log.h +showtickets.o: ../../../ezc/src/stringconv.h +showtickets.o: ../../../winix/notify/notifythread.h +showtickets.o: ../../../winix/core/basethread.h +showtickets.o: ../../../winix/notify/templatesnotify.h +showtickets.o: ../../../winix/core/users.h ../../../winix/core/ugcontainer.h +showtickets.o: ../../../winix/core/lastcontainer.h +showtickets.o: ../../../winix/functions/functionparser.h +showtickets.o: ../../../winix/core/cur.h ../../../winix/functions/account.h +showtickets.o: ../../../winix/functions/adduser.h +showtickets.o: ../../../winix/functions/cat.h +showtickets.o: ../../../winix/functions/chmod.h +showtickets.o: ../../../winix/functions/privchanger.h +showtickets.o: ../../../winix/functions/chown.h +showtickets.o: ../../../winix/functions/ckeditor.h +showtickets.o: ../../../winix/functions/cp.h +showtickets.o: ../../../winix/functions/default.h +showtickets.o: ../../../winix/functions/download.h +showtickets.o: ../../../winix/functions/emacs.h +showtickets.o: ../../../winix/functions/env.h +showtickets.o: ../../../winix/functions/imgcrop.h +showtickets.o: ../../../winix/functions/last.h +showtickets.o: ../../../winix/functions/login.h +showtickets.o: ../../../winix/functions/logout.h +showtickets.o: ../../../winix/functions/ln.h ../../../winix/functions/ls.h +showtickets.o: ../../../winix/functions/man.h ../../../winix/functions/meta.h +showtickets.o: ../../../winix/functions/mkdir.h ../../../winix/functions/mv.h +showtickets.o: ../../../winix/functions/nicedit.h +showtickets.o: ../../../winix/functions/node.h +showtickets.o: ../../../winix/functions/passwd.h +showtickets.o: ../../../winix/functions/priv.h ../../../winix/functions/pw.h +showtickets.o: ../../../winix/functions/reload.h +showtickets.o: ../../../winix/functions/rm.h +showtickets.o: ../../../winix/functions/rmuser.h ../../../winix/core/run.h +showtickets.o: ../../../winix/functions/sort.h +showtickets.o: ../../../winix/functions/specialdefault.h +showtickets.o: ../../../winix/functions/stat.h +showtickets.o: ../../../winix/functions/subject.h +showtickets.o: ../../../winix/functions/template.h +showtickets.o: ../../../winix/core/timezone.h +showtickets.o: ../../../winix/functions/tinymce.h +showtickets.o: ../../../winix/functions/uname.h +showtickets.o: ../../../winix/functions/upload.h +showtickets.o: ../../../winix/functions/uptime.h +showtickets.o: ../../../winix/functions/who.h ../../../winix/functions/vim.h +showtickets.o: ../../../winix/core/htmlfilter.h +showtickets.o: ../../../winix/functions/functionbase.h pluginmsg.h +showtickets.o: ../../../winix/plugins/thread/pluginmsg.h +showtickets.o: ../../../winix/core/plugin.h ../../../winix/core/system.h +showtickets.o: ../../../winix/core/job.h ../../../winix/core/basethread.h +showtickets.o: ../../../winix/core/synchro.h ../../../winix/core/dirs.h +showtickets.o: ../../../winix/core/dircontainer.h +showtickets.o: ../../../winix/core/mounts.h ../../../winix/core/mountparser.h +showtickets.o: ../../../winix/core/crypt.h ../../../winix/core/users.h +showtickets.o: ../../../winix/core/groups.h ../../../winix/core/group.h +showtickets.o: ../../../winix/core/loadavg.h ../../../winix/core/image.h +showtickets.o: ../../../winix/core/threadmanager.h +showtickets.o: ../../../winix/core/timezones.h +showtickets.o: ../../../winix/core/sessionmanager.h +showtickets.o: ../../../winix/core/sessioncontainer.h +showtickets.o: ../../../winix/core/ipbancontainer.h +showtickets.o: ../../../winix/templates/templates.h +showtickets.o: ../../../winix/templates/patterncacher.h +showtickets.o: ../../../winix/templates/indexpatterns.h +showtickets.o: ../../../winix/templates/patterns.h +showtickets.o: ../../../winix/templates/changepatterns.h +showtickets.o: ../../../winix/templates/htmltextstream.h +showtickets.o: ../../../winix/core/sessionmanager.h +tdb.o: tdb.h ticket.h ../../../winix/db/dbbase.h ../../../winix/core/error.h +tdb.o: ../../../winix/core/log.h templates.o: ../../../ezc/src/ezc.h ../../../ezc/src/generator.h -templates.o: ../../../ezc/src/pattern.h ../../core/item.h +templates.o: ../../../ezc/src/pattern.h ../../../winix/core/item.h templates.o: ../../../pikotools/space/space.h templates.o: ../../../pikotools/textstream/types.h templates.o: ../../../pikotools/date/date.h ../../../ezc/src/functions.h templates.o: ../../../ezc/src/funinfo.h ../../../ezc/src/stringconv.h templates.o: ../../../pikotools/utf8/utf8.h ticketinfo.h ticket.h -templates.o: ../../core/item.h ../../core/system.h -templates.o: ../../functions/functions.h ../../functions/functionbase.h -templates.o: ../../db/db.h ../../db/dbbase.h ../../db/dbconn.h -templates.o: ../../db/dbtextstream.h ../../core/textstream.h +templates.o: ../../../winix/core/item.h ../../../winix/core/system.h +templates.o: ../../../winix/functions/functions.h +templates.o: ../../../winix/functions/functionbase.h ../../../winix/db/db.h +templates.o: ../../../winix/db/dbbase.h ../../../winix/db/dbconn.h +templates.o: ../../../winix/db/dbtextstream.h +templates.o: ../../../winix/core/textstream.h templates.o: ../../../pikotools/textstream/textstream.h templates.o: ../../../pikotools/convert/convert.h templates.o: ../../../pikotools/convert/inttostr.h templates.o: ../../../pikotools/membuffer/membuffer.h -templates.o: ../../../pikotools/textstream/types.h ../../core/error.h +templates.o: ../../../pikotools/textstream/types.h +templates.o: ../../../winix/core/error.h templates.o: ../../../pikotools/space/spaceparser.h -templates.o: ../../../pikotools/space/space.h ../../db/dbitemquery.h -templates.o: ../../db/dbitemcolumns.h ../../core/user.h ../../core/group.h -templates.o: ../../core/dircontainer.h ../../core/ugcontainer.h -templates.o: ../../core/log.h ../../core/textstream.h ../../core/misc.h -templates.o: ../../core/requesttypes.h ../../core/logmanipulators.h -templates.o: ../../core/slog.h ../../core/cur.h ../../core/request.h -templates.o: ../../core/error.h ../../core/config.h ../../core/htmlfilter.h -templates.o: ../../templates/htmltextstream.h -templates.o: ../../../pikotools/space/spacetojson.h ../../core/session.h -templates.o: ../../core/user.h ../../core/plugindata.h ../../core/rebus.h -templates.o: ../../core/ipban.h ../../core/mount.h ../../templates/locale.h -templates.o: ../../core/request.h ../../core/config.h ../../core/synchro.h -templates.o: ../../notify/notify.h ../../notify/notifypool.h -templates.o: ../../templates/patterns.h ../../templates/locale.h -templates.o: ../../templates/localefilter.h ../../notify/notifythread.h -templates.o: ../../core/basethread.h ../../notify/templatesnotify.h -templates.o: ../../core/users.h ../../core/ugcontainer.h -templates.o: ../../core/lastcontainer.h ../../functions/functionparser.h -templates.o: ../../core/cur.h ../../functions/account.h -templates.o: ../../functions/adduser.h ../../functions/cat.h -templates.o: ../../functions/chmod.h ../../functions/privchanger.h -templates.o: ../../functions/chown.h ../../functions/ckeditor.h -templates.o: ../../functions/cp.h ../../functions/default.h -templates.o: ../../functions/download.h ../../functions/emacs.h -templates.o: ../../functions/env.h ../../functions/imgcrop.h -templates.o: ../../functions/last.h ../../functions/login.h -templates.o: ../../functions/logout.h ../../functions/ln.h -templates.o: ../../functions/ls.h ../../functions/man.h -templates.o: ../../functions/meta.h ../../functions/mkdir.h -templates.o: ../../functions/mv.h ../../functions/nicedit.h -templates.o: ../../functions/node.h ../../functions/passwd.h -templates.o: ../../functions/priv.h ../../functions/pw.h -templates.o: ../../functions/reload.h ../../functions/rm.h -templates.o: ../../functions/rmuser.h ../../core/run.h ../../functions/sort.h -templates.o: ../../functions/specialdefault.h ../../functions/stat.h -templates.o: ../../functions/subject.h ../../functions/template.h -templates.o: ../../core/timezone.h ../../functions/tinymce.h -templates.o: ../../functions/uname.h ../../functions/upload.h -templates.o: ../../functions/uptime.h ../../functions/who.h -templates.o: ../../functions/vim.h ../../core/htmlfilter.h tdb.h -templates.o: ../../db/dbbase.h editticket.h ../../functions/functionbase.h -templates.o: createticket.h ../../core/misc.h ../../core/plugin.h pluginmsg.h -templates.o: ../../core/system.h ../../core/job.h ../../core/basethread.h -templates.o: ../../core/synchro.h ../../core/dirs.h ../../core/dircontainer.h -templates.o: ../../core/mounts.h ../../core/mountparser.h ../../core/crypt.h -templates.o: ../../core/users.h ../../core/groups.h ../../core/group.h -templates.o: ../../core/loadavg.h ../../core/image.h -templates.o: ../../core/threadmanager.h ../../core/timezones.h -templates.o: ../../core/sessionmanager.h ../../core/sessioncontainer.h -templates.o: ../../core/ipbancontainer.h ../../templates/templates.h -templates.o: ../../templates/patterncacher.h ../../templates/indexpatterns.h -templates.o: ../../templates/patterns.h ../../templates/changepatterns.h -templates.o: ../../templates/htmltextstream.h ../../core/sessionmanager.h -templates.o: sessiondata.h ../../core/plugindata.h ../../functions/rm.h -templates.o: ../../plugins/thread/pluginmsg.h ../../templates/miscspace.h -templates.o: ../../templates/templates.h -ticketinfo.o: ticketinfo.h ticket.h ../../core/item.h ../../core/system.h -ticketinfo.o: ../../functions/functions.h ../../functions/functionbase.h -ticketinfo.o: ../../db/db.h ../../db/dbbase.h ../../db/dbconn.h -ticketinfo.o: ../../db/dbtextstream.h ../../core/textstream.h +templates.o: ../../../pikotools/space/space.h ../../../winix/db/dbitemquery.h +templates.o: ../../../winix/db/dbitemcolumns.h ../../../winix/core/user.h +templates.o: ../../../winix/core/group.h ../../../winix/core/dircontainer.h +templates.o: ../../../winix/core/ugcontainer.h ../../../winix/core/log.h +templates.o: ../../../winix/core/textstream.h ../../../winix/core/misc.h +templates.o: ../../../winix/core/requesttypes.h +templates.o: ../../../winix/core/logmanipulators.h ../../../winix/core/slog.h +templates.o: ../../../winix/core/cur.h ../../../winix/core/request.h +templates.o: ../../../winix/core/error.h ../../../winix/core/config.h +templates.o: ../../../winix/core/htmlfilter.h +templates.o: ../../../winix/templates/htmltextstream.h +templates.o: ../../../pikotools/space/spacetojson.h +templates.o: ../../../winix/core/session.h ../../../winix/core/user.h +templates.o: ../../../winix/core/plugindata.h ../../../winix/core/rebus.h +templates.o: ../../../winix/core/ipban.h ../../../winix/core/mount.h +templates.o: ../../../winix/templates/locale.h ../../../winix/core/request.h +templates.o: ../../../winix/core/config.h ../../../winix/core/synchro.h +templates.o: ../../../winix/notify/notify.h +templates.o: ../../../winix/notify/notifypool.h +templates.o: ../../../winix/templates/patterns.h +templates.o: ../../../winix/templates/locale.h +templates.o: ../../../winix/templates/localefilter.h +templates.o: ../../../winix/notify/notifythread.h +templates.o: ../../../winix/core/basethread.h +templates.o: ../../../winix/notify/templatesnotify.h +templates.o: ../../../winix/core/users.h ../../../winix/core/ugcontainer.h +templates.o: ../../../winix/core/lastcontainer.h +templates.o: ../../../winix/functions/functionparser.h +templates.o: ../../../winix/core/cur.h ../../../winix/functions/account.h +templates.o: ../../../winix/functions/adduser.h +templates.o: ../../../winix/functions/cat.h ../../../winix/functions/chmod.h +templates.o: ../../../winix/functions/privchanger.h +templates.o: ../../../winix/functions/chown.h +templates.o: ../../../winix/functions/ckeditor.h +templates.o: ../../../winix/functions/cp.h ../../../winix/functions/default.h +templates.o: ../../../winix/functions/download.h +templates.o: ../../../winix/functions/emacs.h ../../../winix/functions/env.h +templates.o: ../../../winix/functions/imgcrop.h +templates.o: ../../../winix/functions/last.h ../../../winix/functions/login.h +templates.o: ../../../winix/functions/logout.h ../../../winix/functions/ln.h +templates.o: ../../../winix/functions/ls.h ../../../winix/functions/man.h +templates.o: ../../../winix/functions/meta.h ../../../winix/functions/mkdir.h +templates.o: ../../../winix/functions/mv.h ../../../winix/functions/nicedit.h +templates.o: ../../../winix/functions/node.h +templates.o: ../../../winix/functions/passwd.h +templates.o: ../../../winix/functions/priv.h ../../../winix/functions/pw.h +templates.o: ../../../winix/functions/reload.h ../../../winix/functions/rm.h +templates.o: ../../../winix/functions/rmuser.h ../../../winix/core/run.h +templates.o: ../../../winix/functions/sort.h +templates.o: ../../../winix/functions/specialdefault.h +templates.o: ../../../winix/functions/stat.h +templates.o: ../../../winix/functions/subject.h +templates.o: ../../../winix/functions/template.h +templates.o: ../../../winix/core/timezone.h +templates.o: ../../../winix/functions/tinymce.h +templates.o: ../../../winix/functions/uname.h +templates.o: ../../../winix/functions/upload.h +templates.o: ../../../winix/functions/uptime.h ../../../winix/functions/who.h +templates.o: ../../../winix/functions/vim.h ../../../winix/core/htmlfilter.h +templates.o: tdb.h ../../../winix/db/dbbase.h editticket.h +templates.o: ../../../winix/functions/functionbase.h createticket.h +templates.o: ../../../winix/core/misc.h ../../../winix/core/plugin.h +templates.o: pluginmsg.h ../../../winix/core/system.h +templates.o: ../../../winix/core/job.h ../../../winix/core/basethread.h +templates.o: ../../../winix/core/synchro.h ../../../winix/core/dirs.h +templates.o: ../../../winix/core/dircontainer.h ../../../winix/core/mounts.h +templates.o: ../../../winix/core/mountparser.h ../../../winix/core/crypt.h +templates.o: ../../../winix/core/users.h ../../../winix/core/groups.h +templates.o: ../../../winix/core/group.h ../../../winix/core/loadavg.h +templates.o: ../../../winix/core/image.h ../../../winix/core/threadmanager.h +templates.o: ../../../winix/core/timezones.h +templates.o: ../../../winix/core/sessionmanager.h +templates.o: ../../../winix/core/sessioncontainer.h +templates.o: ../../../winix/core/ipbancontainer.h +templates.o: ../../../winix/templates/templates.h +templates.o: ../../../winix/templates/patterncacher.h +templates.o: ../../../winix/templates/indexpatterns.h +templates.o: ../../../winix/templates/patterns.h +templates.o: ../../../winix/templates/changepatterns.h +templates.o: ../../../winix/templates/htmltextstream.h +templates.o: ../../../winix/core/sessionmanager.h sessiondata.h +templates.o: ../../../winix/core/plugindata.h ../../../winix/functions/rm.h +templates.o: ../../../winix/plugins/thread/pluginmsg.h +templates.o: ../../../winix/templates/miscspace.h +templates.o: ../../../winix/templates/templates.h +ticketinfo.o: ticketinfo.h ticket.h ../../../winix/core/item.h +ticketinfo.o: ../../../winix/core/system.h +ticketinfo.o: ../../../winix/functions/functions.h +ticketinfo.o: ../../../winix/functions/functionbase.h ../../../winix/db/db.h +ticketinfo.o: ../../../winix/db/dbbase.h ../../../winix/db/dbconn.h +ticketinfo.o: ../../../winix/db/dbtextstream.h +ticketinfo.o: ../../../winix/core/textstream.h ticketinfo.o: ../../../pikotools/textstream/textstream.h ticketinfo.o: ../../../pikotools/space/space.h ticketinfo.o: ../../../pikotools/textstream/types.h @@ -447,64 +651,96 @@ ticketinfo.o: ../../../pikotools/date/date.h ticketinfo.o: ../../../pikotools/convert/convert.h ticketinfo.o: ../../../pikotools/convert/inttostr.h ticketinfo.o: ../../../pikotools/membuffer/membuffer.h -ticketinfo.o: ../../../pikotools/textstream/types.h ../../core/error.h +ticketinfo.o: ../../../pikotools/textstream/types.h +ticketinfo.o: ../../../winix/core/error.h ticketinfo.o: ../../../pikotools/space/spaceparser.h -ticketinfo.o: ../../../pikotools/space/space.h ../../db/dbitemquery.h -ticketinfo.o: ../../db/dbitemcolumns.h ../../core/user.h ../../core/group.h -ticketinfo.o: ../../core/dircontainer.h ../../core/ugcontainer.h -ticketinfo.o: ../../core/log.h ../../core/textstream.h ../../core/misc.h -ticketinfo.o: ../../core/item.h ../../core/requesttypes.h -ticketinfo.o: ../../../pikotools/utf8/utf8.h ../../core/logmanipulators.h -ticketinfo.o: ../../core/slog.h ../../core/cur.h ../../core/request.h -ticketinfo.o: ../../core/error.h ../../core/config.h ../../core/htmlfilter.h -ticketinfo.o: ../../templates/htmltextstream.h -ticketinfo.o: ../../../pikotools/space/spacetojson.h ../../core/session.h -ticketinfo.o: ../../core/user.h ../../core/plugindata.h ../../core/rebus.h -ticketinfo.o: ../../core/ipban.h ../../core/mount.h ../../templates/locale.h -ticketinfo.o: ../../core/request.h ../../core/config.h ../../core/synchro.h -ticketinfo.o: ../../notify/notify.h ../../notify/notifypool.h -ticketinfo.o: ../../templates/patterns.h ../../templates/locale.h -ticketinfo.o: ../../templates/localefilter.h ../../../ezc/src/ezc.h +ticketinfo.o: ../../../pikotools/space/space.h +ticketinfo.o: ../../../winix/db/dbitemquery.h +ticketinfo.o: ../../../winix/db/dbitemcolumns.h ../../../winix/core/user.h +ticketinfo.o: ../../../winix/core/group.h ../../../winix/core/dircontainer.h +ticketinfo.o: ../../../winix/core/ugcontainer.h ../../../winix/core/log.h +ticketinfo.o: ../../../winix/core/textstream.h ../../../winix/core/misc.h +ticketinfo.o: ../../../winix/core/item.h ../../../winix/core/requesttypes.h +ticketinfo.o: ../../../pikotools/utf8/utf8.h +ticketinfo.o: ../../../winix/core/logmanipulators.h +ticketinfo.o: ../../../winix/core/slog.h ../../../winix/core/cur.h +ticketinfo.o: ../../../winix/core/request.h ../../../winix/core/error.h +ticketinfo.o: ../../../winix/core/config.h ../../../winix/core/htmlfilter.h +ticketinfo.o: ../../../winix/templates/htmltextstream.h +ticketinfo.o: ../../../pikotools/space/spacetojson.h +ticketinfo.o: ../../../winix/core/session.h ../../../winix/core/user.h +ticketinfo.o: ../../../winix/core/plugindata.h ../../../winix/core/rebus.h +ticketinfo.o: ../../../winix/core/ipban.h ../../../winix/core/mount.h +ticketinfo.o: ../../../winix/templates/locale.h ../../../winix/core/request.h +ticketinfo.o: ../../../winix/core/config.h ../../../winix/core/synchro.h +ticketinfo.o: ../../../winix/notify/notify.h +ticketinfo.o: ../../../winix/notify/notifypool.h +ticketinfo.o: ../../../winix/templates/patterns.h +ticketinfo.o: ../../../winix/templates/locale.h +ticketinfo.o: ../../../winix/templates/localefilter.h ../../../ezc/src/ezc.h ticketinfo.o: ../../../ezc/src/generator.h ../../../ezc/src/pattern.h ticketinfo.o: ../../../ezc/src/functions.h ../../../ezc/src/funinfo.h -ticketinfo.o: ../../../ezc/src/stringconv.h ../../notify/notifythread.h -ticketinfo.o: ../../core/basethread.h ../../notify/templatesnotify.h -ticketinfo.o: ../../core/users.h ../../core/ugcontainer.h -ticketinfo.o: ../../core/lastcontainer.h ../../functions/functionparser.h -ticketinfo.o: ../../core/cur.h ../../functions/account.h -ticketinfo.o: ../../functions/adduser.h ../../functions/cat.h -ticketinfo.o: ../../functions/chmod.h ../../functions/privchanger.h -ticketinfo.o: ../../functions/chown.h ../../functions/ckeditor.h -ticketinfo.o: ../../functions/cp.h ../../functions/default.h -ticketinfo.o: ../../functions/download.h ../../functions/emacs.h -ticketinfo.o: ../../functions/env.h ../../functions/imgcrop.h -ticketinfo.o: ../../functions/last.h ../../functions/login.h -ticketinfo.o: ../../functions/logout.h ../../functions/ln.h -ticketinfo.o: ../../functions/ls.h ../../functions/man.h -ticketinfo.o: ../../functions/meta.h ../../functions/mkdir.h -ticketinfo.o: ../../functions/mv.h ../../functions/nicedit.h -ticketinfo.o: ../../functions/node.h ../../functions/passwd.h -ticketinfo.o: ../../functions/priv.h ../../functions/pw.h -ticketinfo.o: ../../functions/reload.h ../../functions/rm.h -ticketinfo.o: ../../functions/rmuser.h ../../core/run.h -ticketinfo.o: ../../functions/sort.h ../../functions/specialdefault.h -ticketinfo.o: ../../functions/stat.h ../../functions/subject.h -ticketinfo.o: ../../functions/template.h ../../core/timezone.h -ticketinfo.o: ../../functions/tinymce.h ../../functions/uname.h -ticketinfo.o: ../../functions/upload.h ../../functions/uptime.h -ticketinfo.o: ../../functions/who.h ../../functions/vim.h -ticketinfo.o: ../../core/htmlfilter.h tdb.h ../../db/dbbase.h -ticketinfo.o: ../../core/log.h ../../core/misc.h ../../core/plugin.h -ticketinfo.o: pluginmsg.h ../../core/system.h ../../core/job.h -ticketinfo.o: ../../core/basethread.h ../../core/synchro.h ../../core/dirs.h -ticketinfo.o: ../../core/dircontainer.h ../../core/mounts.h -ticketinfo.o: ../../core/mountparser.h ../../core/crypt.h ../../core/users.h -ticketinfo.o: ../../core/groups.h ../../core/group.h ../../core/loadavg.h -ticketinfo.o: ../../core/image.h ../../core/threadmanager.h -ticketinfo.o: ../../core/timezones.h ../../core/sessionmanager.h -ticketinfo.o: ../../core/sessioncontainer.h ../../core/ipbancontainer.h -ticketinfo.o: ../../templates/templates.h ../../templates/patterncacher.h -ticketinfo.o: ../../templates/indexpatterns.h ../../templates/patterns.h -ticketinfo.o: ../../templates/changepatterns.h -ticketinfo.o: ../../templates/htmltextstream.h ../../core/sessionmanager.h -ticketinfo.o: sessiondata.h ../../core/plugindata.h ../../functions/rm.h +ticketinfo.o: ../../../ezc/src/stringconv.h +ticketinfo.o: ../../../winix/notify/notifythread.h +ticketinfo.o: ../../../winix/core/basethread.h +ticketinfo.o: ../../../winix/notify/templatesnotify.h +ticketinfo.o: ../../../winix/core/users.h ../../../winix/core/ugcontainer.h +ticketinfo.o: ../../../winix/core/lastcontainer.h +ticketinfo.o: ../../../winix/functions/functionparser.h +ticketinfo.o: ../../../winix/core/cur.h ../../../winix/functions/account.h +ticketinfo.o: ../../../winix/functions/adduser.h +ticketinfo.o: ../../../winix/functions/cat.h ../../../winix/functions/chmod.h +ticketinfo.o: ../../../winix/functions/privchanger.h +ticketinfo.o: ../../../winix/functions/chown.h +ticketinfo.o: ../../../winix/functions/ckeditor.h +ticketinfo.o: ../../../winix/functions/cp.h +ticketinfo.o: ../../../winix/functions/default.h +ticketinfo.o: ../../../winix/functions/download.h +ticketinfo.o: ../../../winix/functions/emacs.h ../../../winix/functions/env.h +ticketinfo.o: ../../../winix/functions/imgcrop.h +ticketinfo.o: ../../../winix/functions/last.h +ticketinfo.o: ../../../winix/functions/login.h +ticketinfo.o: ../../../winix/functions/logout.h ../../../winix/functions/ln.h +ticketinfo.o: ../../../winix/functions/ls.h ../../../winix/functions/man.h +ticketinfo.o: ../../../winix/functions/meta.h +ticketinfo.o: ../../../winix/functions/mkdir.h ../../../winix/functions/mv.h +ticketinfo.o: ../../../winix/functions/nicedit.h +ticketinfo.o: ../../../winix/functions/node.h +ticketinfo.o: ../../../winix/functions/passwd.h +ticketinfo.o: ../../../winix/functions/priv.h ../../../winix/functions/pw.h +ticketinfo.o: ../../../winix/functions/reload.h ../../../winix/functions/rm.h +ticketinfo.o: ../../../winix/functions/rmuser.h ../../../winix/core/run.h +ticketinfo.o: ../../../winix/functions/sort.h +ticketinfo.o: ../../../winix/functions/specialdefault.h +ticketinfo.o: ../../../winix/functions/stat.h +ticketinfo.o: ../../../winix/functions/subject.h +ticketinfo.o: ../../../winix/functions/template.h +ticketinfo.o: ../../../winix/core/timezone.h +ticketinfo.o: ../../../winix/functions/tinymce.h +ticketinfo.o: ../../../winix/functions/uname.h +ticketinfo.o: ../../../winix/functions/upload.h +ticketinfo.o: ../../../winix/functions/uptime.h +ticketinfo.o: ../../../winix/functions/who.h ../../../winix/functions/vim.h +ticketinfo.o: ../../../winix/core/htmlfilter.h tdb.h +ticketinfo.o: ../../../winix/db/dbbase.h ../../../winix/core/log.h +ticketinfo.o: ../../../winix/core/misc.h ../../../winix/core/plugin.h +ticketinfo.o: pluginmsg.h ../../../winix/core/system.h +ticketinfo.o: ../../../winix/core/job.h ../../../winix/core/basethread.h +ticketinfo.o: ../../../winix/core/synchro.h ../../../winix/core/dirs.h +ticketinfo.o: ../../../winix/core/dircontainer.h ../../../winix/core/mounts.h +ticketinfo.o: ../../../winix/core/mountparser.h ../../../winix/core/crypt.h +ticketinfo.o: ../../../winix/core/users.h ../../../winix/core/groups.h +ticketinfo.o: ../../../winix/core/group.h ../../../winix/core/loadavg.h +ticketinfo.o: ../../../winix/core/image.h ../../../winix/core/threadmanager.h +ticketinfo.o: ../../../winix/core/timezones.h +ticketinfo.o: ../../../winix/core/sessionmanager.h +ticketinfo.o: ../../../winix/core/sessioncontainer.h +ticketinfo.o: ../../../winix/core/ipbancontainer.h +ticketinfo.o: ../../../winix/templates/templates.h +ticketinfo.o: ../../../winix/templates/patterncacher.h +ticketinfo.o: ../../../winix/templates/indexpatterns.h +ticketinfo.o: ../../../winix/templates/patterns.h +ticketinfo.o: ../../../winix/templates/changepatterns.h +ticketinfo.o: ../../../winix/templates/htmltextstream.h +ticketinfo.o: ../../../winix/core/sessionmanager.h sessiondata.h +ticketinfo.o: ../../../winix/core/plugindata.h ../../../winix/functions/rm.h diff --git a/templates/Makefile b/templates/Makefile index 14f7631..f25e1fc 100755 --- a/templates/Makefile +++ b/templates/Makefile @@ -5,11 +5,11 @@ all: $(o) %.o: %.cpp - $(CXX) -c $(CXXFLAGS) $< + $(CXX) -c $(CXXFLAGS) $(CXXWINIXINCLUDEFLAGS) $< depend: - makedepend -Y. -I.. -I../../ezc/src -I../../pikotools -I../../tito/src -f- *.cpp > Makefile.dep + makedepend -Y. $(CXXWINIXINCLUDEFLAGS) -f- *.cpp > Makefile.dep echo -n "o = " > Makefile.o.dep ls -1 *.cpp | xargs -I foo echo -n foo " " | sed -E "s/([^\.]*)\.cpp[ ]/\1\.o/g" >> Makefile.o.dep diff --git a/templates/Makefile.dep b/templates/Makefile.dep index 34c71ef..25910f2 100755 --- a/templates/Makefile.dep +++ b/templates/Makefile.dep @@ -12,30 +12,43 @@ adduser.o: ../../pikotools/convert/convert.h adduser.o: ../../pikotools/convert/inttostr.h adduser.o: ../../pikotools/membuffer/membuffer.h adduser.o: ../../pikotools/textstream/types.h htmltextstream.h -adduser.o: ../core/textstream.h patterncacher.h ../core/item.h -adduser.o: indexpatterns.h patterns.h changepatterns.h ../core/config.h -adduser.o: ../core/htmlfilter.h ../core/cur.h ../core/request.h -adduser.o: ../core/requesttypes.h ../core/error.h ../core/config.h -adduser.o: ../core/textstream.h ../templates/htmltextstream.h -adduser.o: ../../pikotools/space/spacetojson.h ../core/session.h -adduser.o: ../core/user.h ../core/plugindata.h ../core/rebus.h -adduser.o: ../core/ipban.h ../core/mount.h ../core/system.h ../core/job.h -adduser.o: ../core/basethread.h ../core/synchro.h ../core/dirs.h -adduser.o: ../core/dircontainer.h ../db/db.h ../db/dbbase.h ../db/dbconn.h -adduser.o: ../db/dbtextstream.h ../core/error.h ../db/dbitemquery.h -adduser.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -adduser.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -adduser.o: ../core/logmanipulators.h ../core/slog.h ../core/cur.h -adduser.o: ../templates/locale.h ../notify/notify.h ../notify/notifypool.h -adduser.o: ../templates/patterns.h ../notify/notifythread.h -adduser.o: ../core/basethread.h ../notify/templatesnotify.h ../core/users.h -adduser.o: ../core/ugcontainer.h ../core/lastcontainer.h ../core/mounts.h -adduser.o: ../core/mountparser.h ../core/crypt.h ../core/run.h -adduser.o: ../core/users.h ../core/groups.h ../core/group.h ../core/loadavg.h -adduser.o: ../core/image.h ../core/threadmanager.h ../core/timezones.h -adduser.o: ../core/timezone.h ../core/sessionmanager.h -adduser.o: ../core/sessioncontainer.h ../core/ipbancontainer.h -adduser.o: ../core/system.h ../core/htmlfilter.h ../core/request.h +adduser.o: ../../winix/core/textstream.h patterncacher.h +adduser.o: ../../winix/core/item.h indexpatterns.h patterns.h +adduser.o: changepatterns.h ../../winix/core/config.h +adduser.o: ../../winix/core/htmlfilter.h ../../winix/core/cur.h +adduser.o: ../../winix/core/request.h ../../winix/core/requesttypes.h +adduser.o: ../../winix/core/error.h ../../winix/core/config.h +adduser.o: ../../winix/core/textstream.h +adduser.o: ../../winix/templates/htmltextstream.h +adduser.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +adduser.o: ../../winix/core/user.h ../../winix/core/plugindata.h +adduser.o: ../../winix/core/rebus.h ../../winix/core/ipban.h +adduser.o: ../../winix/core/mount.h ../../winix/core/system.h +adduser.o: ../../winix/core/job.h ../../winix/core/basethread.h +adduser.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +adduser.o: ../../winix/core/dircontainer.h ../../winix/db/db.h +adduser.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +adduser.o: ../../winix/db/dbtextstream.h ../../winix/core/error.h +adduser.o: ../../winix/db/dbitemquery.h ../../winix/db/dbitemcolumns.h +adduser.o: ../../winix/core/user.h ../../winix/core/group.h +adduser.o: ../../winix/core/dircontainer.h ../../winix/core/ugcontainer.h +adduser.o: ../../winix/core/log.h ../../winix/core/logmanipulators.h +adduser.o: ../../winix/core/slog.h ../../winix/core/cur.h +adduser.o: ../../winix/templates/locale.h ../../winix/notify/notify.h +adduser.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +adduser.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +adduser.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +adduser.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +adduser.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +adduser.o: ../../winix/core/crypt.h ../../winix/core/run.h +adduser.o: ../../winix/core/users.h ../../winix/core/groups.h +adduser.o: ../../winix/core/group.h ../../winix/core/loadavg.h +adduser.o: ../../winix/core/image.h ../../winix/core/threadmanager.h +adduser.o: ../../winix/core/timezones.h ../../winix/core/timezone.h +adduser.o: ../../winix/core/sessionmanager.h +adduser.o: ../../winix/core/sessioncontainer.h +adduser.o: ../../winix/core/ipbancontainer.h ../../winix/core/system.h +adduser.o: ../../winix/core/htmlfilter.h ../../winix/core/request.h changepatterns.o: changepatterns.h patterns.h locale.h changepatterns.o: ../../pikotools/space/spaceparser.h changepatterns.o: ../../pikotools/space/space.h @@ -50,7 +63,7 @@ changepatterns.o: ../../ezc/src/ezc.h ../../ezc/src/generator.h changepatterns.o: ../../ezc/src/pattern.h ../../ezc/src/item.h changepatterns.o: ../../ezc/src/funinfo.h ../../ezc/src/functions.h changepatterns.o: ../../ezc/src/stringconv.h ../../pikotools/utf8/utf8.h -changepatterns.o: misc.h htmltextstream.h ../core/textstream.h +changepatterns.o: misc.h htmltextstream.h ../../winix/core/textstream.h config.o: templates.h ../../ezc/src/ezc.h ../../ezc/src/generator.h config.o: ../../ezc/src/pattern.h ../../ezc/src/item.h config.o: ../../ezc/src/funinfo.h ../../ezc/src/functions.h @@ -63,28 +76,42 @@ config.o: ../../pikotools/convert/convert.h config.o: ../../pikotools/convert/inttostr.h config.o: ../../pikotools/membuffer/membuffer.h config.o: ../../pikotools/textstream/types.h htmltextstream.h -config.o: ../core/textstream.h patterncacher.h ../core/item.h indexpatterns.h -config.o: patterns.h changepatterns.h ../core/config.h ../core/htmlfilter.h -config.o: ../core/cur.h ../core/request.h ../core/requesttypes.h -config.o: ../core/error.h ../core/config.h ../core/textstream.h -config.o: ../templates/htmltextstream.h ../../pikotools/space/spacetojson.h -config.o: ../core/session.h ../core/user.h ../core/plugindata.h -config.o: ../core/rebus.h ../core/ipban.h ../core/mount.h ../core/system.h -config.o: ../core/job.h ../core/basethread.h ../core/synchro.h ../core/dirs.h -config.o: ../core/dircontainer.h ../db/db.h ../db/dbbase.h ../db/dbconn.h -config.o: ../db/dbtextstream.h ../core/error.h ../db/dbitemquery.h -config.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -config.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -config.o: ../core/logmanipulators.h ../core/slog.h ../core/cur.h -config.o: ../templates/locale.h ../notify/notify.h ../notify/notifypool.h -config.o: ../templates/patterns.h ../notify/notifythread.h -config.o: ../core/basethread.h ../notify/templatesnotify.h ../core/users.h -config.o: ../core/ugcontainer.h ../core/lastcontainer.h ../core/mounts.h -config.o: ../core/mountparser.h ../core/crypt.h ../core/run.h ../core/users.h -config.o: ../core/groups.h ../core/group.h ../core/loadavg.h ../core/image.h -config.o: ../core/threadmanager.h ../core/timezones.h ../core/timezone.h -config.o: ../core/sessionmanager.h ../core/sessioncontainer.h -config.o: ../core/ipbancontainer.h ../core/system.h ../core/htmlfilter.h +config.o: ../../winix/core/textstream.h patterncacher.h +config.o: ../../winix/core/item.h indexpatterns.h patterns.h changepatterns.h +config.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h +config.o: ../../winix/core/cur.h ../../winix/core/request.h +config.o: ../../winix/core/requesttypes.h ../../winix/core/error.h +config.o: ../../winix/core/config.h ../../winix/core/textstream.h +config.o: ../../winix/templates/htmltextstream.h +config.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +config.o: ../../winix/core/user.h ../../winix/core/plugindata.h +config.o: ../../winix/core/rebus.h ../../winix/core/ipban.h +config.o: ../../winix/core/mount.h ../../winix/core/system.h +config.o: ../../winix/core/job.h ../../winix/core/basethread.h +config.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +config.o: ../../winix/core/dircontainer.h ../../winix/db/db.h +config.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +config.o: ../../winix/db/dbtextstream.h ../../winix/core/error.h +config.o: ../../winix/db/dbitemquery.h ../../winix/db/dbitemcolumns.h +config.o: ../../winix/core/user.h ../../winix/core/group.h +config.o: ../../winix/core/dircontainer.h ../../winix/core/ugcontainer.h +config.o: ../../winix/core/log.h ../../winix/core/logmanipulators.h +config.o: ../../winix/core/slog.h ../../winix/core/cur.h +config.o: ../../winix/templates/locale.h ../../winix/notify/notify.h +config.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +config.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +config.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +config.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +config.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +config.o: ../../winix/core/crypt.h ../../winix/core/run.h +config.o: ../../winix/core/users.h ../../winix/core/groups.h +config.o: ../../winix/core/group.h ../../winix/core/loadavg.h +config.o: ../../winix/core/image.h ../../winix/core/threadmanager.h +config.o: ../../winix/core/timezones.h ../../winix/core/timezone.h +config.o: ../../winix/core/sessionmanager.h +config.o: ../../winix/core/sessioncontainer.h +config.o: ../../winix/core/ipbancontainer.h ../../winix/core/system.h +config.o: ../../winix/core/htmlfilter.h dir.o: templates.h ../../ezc/src/ezc.h ../../ezc/src/generator.h dir.o: ../../ezc/src/pattern.h ../../ezc/src/item.h ../../ezc/src/funinfo.h dir.o: ../../ezc/src/functions.h ../../ezc/src/stringconv.h @@ -96,43 +123,63 @@ dir.o: ../../pikotools/date/date.h ../../pikotools/convert/convert.h dir.o: ../../pikotools/convert/inttostr.h dir.o: ../../pikotools/membuffer/membuffer.h dir.o: ../../pikotools/textstream/types.h htmltextstream.h -dir.o: ../core/textstream.h patterncacher.h ../core/item.h indexpatterns.h -dir.o: patterns.h changepatterns.h ../core/config.h ../core/htmlfilter.h -dir.o: ../core/cur.h ../core/request.h ../core/requesttypes.h ../core/error.h -dir.o: ../core/config.h ../core/textstream.h ../templates/htmltextstream.h -dir.o: ../../pikotools/space/spacetojson.h ../core/session.h ../core/user.h -dir.o: ../core/plugindata.h ../core/rebus.h ../core/ipban.h ../core/mount.h -dir.o: ../core/system.h ../core/job.h ../core/basethread.h ../core/synchro.h -dir.o: ../core/dirs.h ../core/dircontainer.h ../db/db.h ../db/dbbase.h -dir.o: ../db/dbconn.h ../db/dbtextstream.h ../core/error.h -dir.o: ../db/dbitemquery.h ../db/dbitemcolumns.h ../core/user.h -dir.o: ../core/group.h ../core/dircontainer.h ../core/ugcontainer.h -dir.o: ../core/log.h ../core/logmanipulators.h ../core/slog.h ../core/cur.h -dir.o: ../templates/locale.h ../notify/notify.h ../notify/notifypool.h -dir.o: ../templates/patterns.h ../notify/notifythread.h ../core/basethread.h -dir.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h -dir.o: ../core/lastcontainer.h ../core/mounts.h ../core/mountparser.h -dir.o: ../core/crypt.h ../core/run.h ../core/users.h ../core/groups.h -dir.o: ../core/group.h ../core/loadavg.h ../core/image.h -dir.o: ../core/threadmanager.h ../core/timezones.h ../core/timezone.h -dir.o: ../core/sessionmanager.h ../core/sessioncontainer.h -dir.o: ../core/ipbancontainer.h ../core/system.h ../core/htmlfilter.h -dir.o: ../core/misc.h ../functions/functions.h ../functions/functionbase.h -dir.o: ../core/request.h ../core/synchro.h ../functions/functionparser.h -dir.o: ../functions/account.h ../functions/adduser.h ../functions/cat.h -dir.o: ../functions/chmod.h ../functions/privchanger.h ../functions/chown.h -dir.o: ../functions/ckeditor.h ../functions/cp.h ../functions/default.h -dir.o: ../functions/download.h ../functions/emacs.h ../functions/env.h -dir.o: ../functions/imgcrop.h ../functions/last.h ../functions/login.h -dir.o: ../functions/logout.h ../functions/ln.h ../functions/ls.h -dir.o: ../functions/man.h ../functions/meta.h ../functions/mkdir.h -dir.o: ../functions/mv.h ../functions/nicedit.h ../functions/node.h -dir.o: ../functions/passwd.h ../functions/priv.h ../functions/pw.h -dir.o: ../functions/reload.h ../functions/rm.h ../functions/rmuser.h -dir.o: ../functions/sort.h ../functions/specialdefault.h ../functions/stat.h -dir.o: ../functions/subject.h ../functions/template.h ../functions/tinymce.h -dir.o: ../functions/uname.h ../functions/upload.h ../functions/uptime.h -dir.o: ../functions/who.h ../functions/vim.h miscspace.h +dir.o: ../../winix/core/textstream.h patterncacher.h ../../winix/core/item.h +dir.o: indexpatterns.h patterns.h changepatterns.h ../../winix/core/config.h +dir.o: ../../winix/core/htmlfilter.h ../../winix/core/cur.h +dir.o: ../../winix/core/request.h ../../winix/core/requesttypes.h +dir.o: ../../winix/core/error.h ../../winix/core/config.h +dir.o: ../../winix/core/textstream.h ../../winix/templates/htmltextstream.h +dir.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +dir.o: ../../winix/core/user.h ../../winix/core/plugindata.h +dir.o: ../../winix/core/rebus.h ../../winix/core/ipban.h +dir.o: ../../winix/core/mount.h ../../winix/core/system.h +dir.o: ../../winix/core/job.h ../../winix/core/basethread.h +dir.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +dir.o: ../../winix/core/dircontainer.h ../../winix/db/db.h +dir.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +dir.o: ../../winix/db/dbtextstream.h ../../winix/core/error.h +dir.o: ../../winix/db/dbitemquery.h ../../winix/db/dbitemcolumns.h +dir.o: ../../winix/core/user.h ../../winix/core/group.h +dir.o: ../../winix/core/dircontainer.h ../../winix/core/ugcontainer.h +dir.o: ../../winix/core/log.h ../../winix/core/logmanipulators.h +dir.o: ../../winix/core/slog.h ../../winix/core/cur.h +dir.o: ../../winix/templates/locale.h ../../winix/notify/notify.h +dir.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +dir.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +dir.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +dir.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +dir.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +dir.o: ../../winix/core/crypt.h ../../winix/core/run.h +dir.o: ../../winix/core/users.h ../../winix/core/groups.h +dir.o: ../../winix/core/group.h ../../winix/core/loadavg.h +dir.o: ../../winix/core/image.h ../../winix/core/threadmanager.h +dir.o: ../../winix/core/timezones.h ../../winix/core/timezone.h +dir.o: ../../winix/core/sessionmanager.h ../../winix/core/sessioncontainer.h +dir.o: ../../winix/core/ipbancontainer.h ../../winix/core/system.h +dir.o: ../../winix/core/htmlfilter.h ../../winix/core/misc.h +dir.o: ../../winix/functions/functions.h ../../winix/functions/functionbase.h +dir.o: ../../winix/core/request.h ../../winix/core/synchro.h +dir.o: ../../winix/functions/functionparser.h ../../winix/functions/account.h +dir.o: ../../winix/functions/adduser.h ../../winix/functions/cat.h +dir.o: ../../winix/functions/chmod.h ../../winix/functions/privchanger.h +dir.o: ../../winix/functions/chown.h ../../winix/functions/ckeditor.h +dir.o: ../../winix/functions/cp.h ../../winix/functions/default.h +dir.o: ../../winix/functions/download.h ../../winix/functions/emacs.h +dir.o: ../../winix/functions/env.h ../../winix/functions/imgcrop.h +dir.o: ../../winix/functions/last.h ../../winix/functions/login.h +dir.o: ../../winix/functions/logout.h ../../winix/functions/ln.h +dir.o: ../../winix/functions/ls.h ../../winix/functions/man.h +dir.o: ../../winix/functions/meta.h ../../winix/functions/mkdir.h +dir.o: ../../winix/functions/mv.h ../../winix/functions/nicedit.h +dir.o: ../../winix/functions/node.h ../../winix/functions/passwd.h +dir.o: ../../winix/functions/priv.h ../../winix/functions/pw.h +dir.o: ../../winix/functions/reload.h ../../winix/functions/rm.h +dir.o: ../../winix/functions/rmuser.h ../../winix/functions/sort.h +dir.o: ../../winix/functions/specialdefault.h ../../winix/functions/stat.h +dir.o: ../../winix/functions/subject.h ../../winix/functions/template.h +dir.o: ../../winix/functions/tinymce.h ../../winix/functions/uname.h +dir.o: ../../winix/functions/upload.h ../../winix/functions/uptime.h +dir.o: ../../winix/functions/who.h ../../winix/functions/vim.h miscspace.h doc.o: templates.h ../../ezc/src/ezc.h ../../ezc/src/generator.h doc.o: ../../ezc/src/pattern.h ../../ezc/src/item.h ../../ezc/src/funinfo.h doc.o: ../../ezc/src/functions.h ../../ezc/src/stringconv.h @@ -144,28 +191,41 @@ doc.o: ../../pikotools/date/date.h ../../pikotools/convert/convert.h doc.o: ../../pikotools/convert/inttostr.h doc.o: ../../pikotools/membuffer/membuffer.h doc.o: ../../pikotools/textstream/types.h htmltextstream.h -doc.o: ../core/textstream.h patterncacher.h ../core/item.h indexpatterns.h -doc.o: patterns.h changepatterns.h ../core/config.h ../core/htmlfilter.h -doc.o: ../core/cur.h ../core/request.h ../core/requesttypes.h ../core/error.h -doc.o: ../core/config.h ../core/textstream.h ../templates/htmltextstream.h -doc.o: ../../pikotools/space/spacetojson.h ../core/session.h ../core/user.h -doc.o: ../core/plugindata.h ../core/rebus.h ../core/ipban.h ../core/mount.h -doc.o: ../core/system.h ../core/job.h ../core/basethread.h ../core/synchro.h -doc.o: ../core/dirs.h ../core/dircontainer.h ../db/db.h ../db/dbbase.h -doc.o: ../db/dbconn.h ../db/dbtextstream.h ../core/error.h -doc.o: ../db/dbitemquery.h ../db/dbitemcolumns.h ../core/user.h -doc.o: ../core/group.h ../core/dircontainer.h ../core/ugcontainer.h -doc.o: ../core/log.h ../core/logmanipulators.h ../core/slog.h ../core/cur.h -doc.o: ../templates/locale.h ../notify/notify.h ../notify/notifypool.h -doc.o: ../templates/patterns.h ../notify/notifythread.h ../core/basethread.h -doc.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h -doc.o: ../core/lastcontainer.h ../core/mounts.h ../core/mountparser.h -doc.o: ../core/crypt.h ../core/run.h ../core/users.h ../core/groups.h -doc.o: ../core/group.h ../core/loadavg.h ../core/image.h -doc.o: ../core/threadmanager.h ../core/timezones.h ../core/timezone.h -doc.o: ../core/sessionmanager.h ../core/sessioncontainer.h -doc.o: ../core/ipbancontainer.h ../core/system.h ../core/htmlfilter.h -doc.o: ../core/request.h ../core/misc.h +doc.o: ../../winix/core/textstream.h patterncacher.h ../../winix/core/item.h +doc.o: indexpatterns.h patterns.h changepatterns.h ../../winix/core/config.h +doc.o: ../../winix/core/htmlfilter.h ../../winix/core/cur.h +doc.o: ../../winix/core/request.h ../../winix/core/requesttypes.h +doc.o: ../../winix/core/error.h ../../winix/core/config.h +doc.o: ../../winix/core/textstream.h ../../winix/templates/htmltextstream.h +doc.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +doc.o: ../../winix/core/user.h ../../winix/core/plugindata.h +doc.o: ../../winix/core/rebus.h ../../winix/core/ipban.h +doc.o: ../../winix/core/mount.h ../../winix/core/system.h +doc.o: ../../winix/core/job.h ../../winix/core/basethread.h +doc.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +doc.o: ../../winix/core/dircontainer.h ../../winix/db/db.h +doc.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +doc.o: ../../winix/db/dbtextstream.h ../../winix/core/error.h +doc.o: ../../winix/db/dbitemquery.h ../../winix/db/dbitemcolumns.h +doc.o: ../../winix/core/user.h ../../winix/core/group.h +doc.o: ../../winix/core/dircontainer.h ../../winix/core/ugcontainer.h +doc.o: ../../winix/core/log.h ../../winix/core/logmanipulators.h +doc.o: ../../winix/core/slog.h ../../winix/core/cur.h +doc.o: ../../winix/templates/locale.h ../../winix/notify/notify.h +doc.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +doc.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +doc.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +doc.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +doc.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +doc.o: ../../winix/core/crypt.h ../../winix/core/run.h +doc.o: ../../winix/core/users.h ../../winix/core/groups.h +doc.o: ../../winix/core/group.h ../../winix/core/loadavg.h +doc.o: ../../winix/core/image.h ../../winix/core/threadmanager.h +doc.o: ../../winix/core/timezones.h ../../winix/core/timezone.h +doc.o: ../../winix/core/sessionmanager.h ../../winix/core/sessioncontainer.h +doc.o: ../../winix/core/ipbancontainer.h ../../winix/core/system.h +doc.o: ../../winix/core/htmlfilter.h ../../winix/core/request.h +doc.o: ../../winix/core/misc.h env.o: templates.h ../../ezc/src/ezc.h ../../ezc/src/generator.h env.o: ../../ezc/src/pattern.h ../../ezc/src/item.h ../../ezc/src/funinfo.h env.o: ../../ezc/src/functions.h ../../ezc/src/stringconv.h @@ -177,43 +237,63 @@ env.o: ../../pikotools/date/date.h ../../pikotools/convert/convert.h env.o: ../../pikotools/convert/inttostr.h env.o: ../../pikotools/membuffer/membuffer.h env.o: ../../pikotools/textstream/types.h htmltextstream.h -env.o: ../core/textstream.h patterncacher.h ../core/item.h indexpatterns.h -env.o: patterns.h changepatterns.h ../core/config.h ../core/htmlfilter.h -env.o: ../core/cur.h ../core/request.h ../core/requesttypes.h ../core/error.h -env.o: ../core/config.h ../core/textstream.h ../templates/htmltextstream.h -env.o: ../../pikotools/space/spacetojson.h ../core/session.h ../core/user.h -env.o: ../core/plugindata.h ../core/rebus.h ../core/ipban.h ../core/mount.h -env.o: ../core/system.h ../core/job.h ../core/basethread.h ../core/synchro.h -env.o: ../core/dirs.h ../core/dircontainer.h ../db/db.h ../db/dbbase.h -env.o: ../db/dbconn.h ../db/dbtextstream.h ../core/error.h -env.o: ../db/dbitemquery.h ../db/dbitemcolumns.h ../core/user.h -env.o: ../core/group.h ../core/dircontainer.h ../core/ugcontainer.h -env.o: ../core/log.h ../core/logmanipulators.h ../core/slog.h ../core/cur.h -env.o: ../templates/locale.h ../notify/notify.h ../notify/notifypool.h -env.o: ../templates/patterns.h ../notify/notifythread.h ../core/basethread.h -env.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h -env.o: ../core/lastcontainer.h ../core/mounts.h ../core/mountparser.h -env.o: ../core/crypt.h ../core/run.h ../core/users.h ../core/groups.h -env.o: ../core/group.h ../core/loadavg.h ../core/image.h -env.o: ../core/threadmanager.h ../core/timezones.h ../core/timezone.h -env.o: ../core/sessionmanager.h ../core/sessioncontainer.h -env.o: ../core/ipbancontainer.h ../core/system.h ../core/htmlfilter.h -env.o: ../core/misc.h ../functions/functions.h ../functions/functionbase.h -env.o: ../core/request.h ../core/synchro.h ../functions/functionparser.h -env.o: ../functions/account.h ../functions/adduser.h ../functions/cat.h -env.o: ../functions/chmod.h ../functions/privchanger.h ../functions/chown.h -env.o: ../functions/ckeditor.h ../functions/cp.h ../functions/default.h -env.o: ../functions/download.h ../functions/emacs.h ../functions/env.h -env.o: ../functions/imgcrop.h ../functions/last.h ../functions/login.h -env.o: ../functions/logout.h ../functions/ln.h ../functions/ls.h -env.o: ../functions/man.h ../functions/meta.h ../functions/mkdir.h -env.o: ../functions/mv.h ../functions/nicedit.h ../functions/node.h -env.o: ../functions/passwd.h ../functions/priv.h ../functions/pw.h -env.o: ../functions/reload.h ../functions/rm.h ../functions/rmuser.h -env.o: ../functions/sort.h ../functions/specialdefault.h ../functions/stat.h -env.o: ../functions/subject.h ../functions/template.h ../functions/tinymce.h -env.o: ../functions/uname.h ../functions/upload.h ../functions/uptime.h -env.o: ../functions/who.h ../functions/vim.h +env.o: ../../winix/core/textstream.h patterncacher.h ../../winix/core/item.h +env.o: indexpatterns.h patterns.h changepatterns.h ../../winix/core/config.h +env.o: ../../winix/core/htmlfilter.h ../../winix/core/cur.h +env.o: ../../winix/core/request.h ../../winix/core/requesttypes.h +env.o: ../../winix/core/error.h ../../winix/core/config.h +env.o: ../../winix/core/textstream.h ../../winix/templates/htmltextstream.h +env.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +env.o: ../../winix/core/user.h ../../winix/core/plugindata.h +env.o: ../../winix/core/rebus.h ../../winix/core/ipban.h +env.o: ../../winix/core/mount.h ../../winix/core/system.h +env.o: ../../winix/core/job.h ../../winix/core/basethread.h +env.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +env.o: ../../winix/core/dircontainer.h ../../winix/db/db.h +env.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +env.o: ../../winix/db/dbtextstream.h ../../winix/core/error.h +env.o: ../../winix/db/dbitemquery.h ../../winix/db/dbitemcolumns.h +env.o: ../../winix/core/user.h ../../winix/core/group.h +env.o: ../../winix/core/dircontainer.h ../../winix/core/ugcontainer.h +env.o: ../../winix/core/log.h ../../winix/core/logmanipulators.h +env.o: ../../winix/core/slog.h ../../winix/core/cur.h +env.o: ../../winix/templates/locale.h ../../winix/notify/notify.h +env.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +env.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +env.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +env.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +env.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +env.o: ../../winix/core/crypt.h ../../winix/core/run.h +env.o: ../../winix/core/users.h ../../winix/core/groups.h +env.o: ../../winix/core/group.h ../../winix/core/loadavg.h +env.o: ../../winix/core/image.h ../../winix/core/threadmanager.h +env.o: ../../winix/core/timezones.h ../../winix/core/timezone.h +env.o: ../../winix/core/sessionmanager.h ../../winix/core/sessioncontainer.h +env.o: ../../winix/core/ipbancontainer.h ../../winix/core/system.h +env.o: ../../winix/core/htmlfilter.h ../../winix/core/misc.h +env.o: ../../winix/functions/functions.h ../../winix/functions/functionbase.h +env.o: ../../winix/core/request.h ../../winix/core/synchro.h +env.o: ../../winix/functions/functionparser.h ../../winix/functions/account.h +env.o: ../../winix/functions/adduser.h ../../winix/functions/cat.h +env.o: ../../winix/functions/chmod.h ../../winix/functions/privchanger.h +env.o: ../../winix/functions/chown.h ../../winix/functions/ckeditor.h +env.o: ../../winix/functions/cp.h ../../winix/functions/default.h +env.o: ../../winix/functions/download.h ../../winix/functions/emacs.h +env.o: ../../winix/functions/env.h ../../winix/functions/imgcrop.h +env.o: ../../winix/functions/last.h ../../winix/functions/login.h +env.o: ../../winix/functions/logout.h ../../winix/functions/ln.h +env.o: ../../winix/functions/ls.h ../../winix/functions/man.h +env.o: ../../winix/functions/meta.h ../../winix/functions/mkdir.h +env.o: ../../winix/functions/mv.h ../../winix/functions/nicedit.h +env.o: ../../winix/functions/node.h ../../winix/functions/passwd.h +env.o: ../../winix/functions/priv.h ../../winix/functions/pw.h +env.o: ../../winix/functions/reload.h ../../winix/functions/rm.h +env.o: ../../winix/functions/rmuser.h ../../winix/functions/sort.h +env.o: ../../winix/functions/specialdefault.h ../../winix/functions/stat.h +env.o: ../../winix/functions/subject.h ../../winix/functions/template.h +env.o: ../../winix/functions/tinymce.h ../../winix/functions/uname.h +env.o: ../../winix/functions/upload.h ../../winix/functions/uptime.h +env.o: ../../winix/functions/who.h ../../winix/functions/vim.h filters.o: templates.h ../../ezc/src/ezc.h ../../ezc/src/generator.h filters.o: ../../ezc/src/pattern.h ../../ezc/src/item.h filters.o: ../../ezc/src/funinfo.h ../../ezc/src/functions.h @@ -226,32 +306,45 @@ filters.o: ../../pikotools/convert/convert.h filters.o: ../../pikotools/convert/inttostr.h filters.o: ../../pikotools/membuffer/membuffer.h filters.o: ../../pikotools/textstream/types.h htmltextstream.h -filters.o: ../core/textstream.h patterncacher.h ../core/item.h -filters.o: indexpatterns.h patterns.h changepatterns.h ../core/config.h -filters.o: ../core/htmlfilter.h ../core/cur.h ../core/request.h -filters.o: ../core/requesttypes.h ../core/error.h ../core/config.h -filters.o: ../core/textstream.h ../templates/htmltextstream.h -filters.o: ../../pikotools/space/spacetojson.h ../core/session.h -filters.o: ../core/user.h ../core/plugindata.h ../core/rebus.h -filters.o: ../core/ipban.h ../core/mount.h ../core/system.h ../core/job.h -filters.o: ../core/basethread.h ../core/synchro.h ../core/dirs.h -filters.o: ../core/dircontainer.h ../db/db.h ../db/dbbase.h ../db/dbconn.h -filters.o: ../db/dbtextstream.h ../core/error.h ../db/dbitemquery.h -filters.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -filters.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -filters.o: ../core/logmanipulators.h ../core/slog.h ../core/cur.h -filters.o: ../templates/locale.h ../notify/notify.h ../notify/notifypool.h -filters.o: ../templates/patterns.h ../notify/notifythread.h -filters.o: ../core/basethread.h ../notify/templatesnotify.h ../core/users.h -filters.o: ../core/ugcontainer.h ../core/lastcontainer.h ../core/mounts.h -filters.o: ../core/mountparser.h ../core/crypt.h ../core/run.h -filters.o: ../core/users.h ../core/groups.h ../core/group.h ../core/loadavg.h -filters.o: ../core/image.h ../core/threadmanager.h ../core/timezones.h -filters.o: ../core/timezone.h ../core/sessionmanager.h -filters.o: ../core/sessioncontainer.h ../core/ipbancontainer.h -filters.o: ../core/system.h ../core/htmlfilter.h ../core/misc.h -htmltextstream.o: htmltextstream.h ../core/textstream.h misc.h localefilter.h -htmltextstream.o: locale.h ../../pikotools/space/spaceparser.h +filters.o: ../../winix/core/textstream.h patterncacher.h +filters.o: ../../winix/core/item.h indexpatterns.h patterns.h +filters.o: changepatterns.h ../../winix/core/config.h +filters.o: ../../winix/core/htmlfilter.h ../../winix/core/cur.h +filters.o: ../../winix/core/request.h ../../winix/core/requesttypes.h +filters.o: ../../winix/core/error.h ../../winix/core/config.h +filters.o: ../../winix/core/textstream.h +filters.o: ../../winix/templates/htmltextstream.h +filters.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +filters.o: ../../winix/core/user.h ../../winix/core/plugindata.h +filters.o: ../../winix/core/rebus.h ../../winix/core/ipban.h +filters.o: ../../winix/core/mount.h ../../winix/core/system.h +filters.o: ../../winix/core/job.h ../../winix/core/basethread.h +filters.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +filters.o: ../../winix/core/dircontainer.h ../../winix/db/db.h +filters.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +filters.o: ../../winix/db/dbtextstream.h ../../winix/core/error.h +filters.o: ../../winix/db/dbitemquery.h ../../winix/db/dbitemcolumns.h +filters.o: ../../winix/core/user.h ../../winix/core/group.h +filters.o: ../../winix/core/dircontainer.h ../../winix/core/ugcontainer.h +filters.o: ../../winix/core/log.h ../../winix/core/logmanipulators.h +filters.o: ../../winix/core/slog.h ../../winix/core/cur.h +filters.o: ../../winix/templates/locale.h ../../winix/notify/notify.h +filters.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +filters.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +filters.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +filters.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +filters.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +filters.o: ../../winix/core/crypt.h ../../winix/core/run.h +filters.o: ../../winix/core/users.h ../../winix/core/groups.h +filters.o: ../../winix/core/group.h ../../winix/core/loadavg.h +filters.o: ../../winix/core/image.h ../../winix/core/threadmanager.h +filters.o: ../../winix/core/timezones.h ../../winix/core/timezone.h +filters.o: ../../winix/core/sessionmanager.h +filters.o: ../../winix/core/sessioncontainer.h +filters.o: ../../winix/core/ipbancontainer.h ../../winix/core/system.h +filters.o: ../../winix/core/htmlfilter.h ../../winix/core/misc.h +htmltextstream.o: htmltextstream.h ../../winix/core/textstream.h misc.h +htmltextstream.o: localefilter.h locale.h ../../pikotools/space/spaceparser.h htmltextstream.o: ../../pikotools/space/space.h htmltextstream.o: ../../pikotools/textstream/types.h htmltextstream.o: ../../pikotools/textstream/textstream.h @@ -278,9 +371,10 @@ indexpatterns.o: ../../pikotools/convert/convert.h indexpatterns.o: ../../pikotools/convert/inttostr.h indexpatterns.o: ../../pikotools/membuffer/membuffer.h indexpatterns.o: ../../pikotools/textstream/types.h localefilter.h misc.h -indexpatterns.o: htmltextstream.h ../core/textstream.h ../core/log.h -indexpatterns.o: ../core/textstream.h ../core/logmanipulators.h -indexpatterns.o: ../core/slog.h ../core/cur.h ../templates/locale.h +indexpatterns.o: htmltextstream.h ../../winix/core/textstream.h +indexpatterns.o: ../../winix/core/log.h ../../winix/core/textstream.h +indexpatterns.o: ../../winix/core/logmanipulators.h ../../winix/core/slog.h +indexpatterns.o: ../../winix/core/cur.h ../../winix/templates/locale.h insert.o: templates.h ../../ezc/src/ezc.h ../../ezc/src/generator.h insert.o: ../../ezc/src/pattern.h ../../ezc/src/item.h insert.o: ../../ezc/src/funinfo.h ../../ezc/src/functions.h @@ -293,29 +387,43 @@ insert.o: ../../pikotools/convert/convert.h insert.o: ../../pikotools/convert/inttostr.h insert.o: ../../pikotools/membuffer/membuffer.h insert.o: ../../pikotools/textstream/types.h htmltextstream.h -insert.o: ../core/textstream.h patterncacher.h ../core/item.h indexpatterns.h -insert.o: patterns.h changepatterns.h ../core/config.h ../core/htmlfilter.h -insert.o: ../core/cur.h ../core/request.h ../core/requesttypes.h -insert.o: ../core/error.h ../core/config.h ../core/textstream.h -insert.o: ../templates/htmltextstream.h ../../pikotools/space/spacetojson.h -insert.o: ../core/session.h ../core/user.h ../core/plugindata.h -insert.o: ../core/rebus.h ../core/ipban.h ../core/mount.h ../core/system.h -insert.o: ../core/job.h ../core/basethread.h ../core/synchro.h ../core/dirs.h -insert.o: ../core/dircontainer.h ../db/db.h ../db/dbbase.h ../db/dbconn.h -insert.o: ../db/dbtextstream.h ../core/error.h ../db/dbitemquery.h -insert.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -insert.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -insert.o: ../core/logmanipulators.h ../core/slog.h ../core/cur.h -insert.o: ../templates/locale.h ../notify/notify.h ../notify/notifypool.h -insert.o: ../templates/patterns.h ../notify/notifythread.h -insert.o: ../core/basethread.h ../notify/templatesnotify.h ../core/users.h -insert.o: ../core/ugcontainer.h ../core/lastcontainer.h ../core/mounts.h -insert.o: ../core/mountparser.h ../core/crypt.h ../core/run.h ../core/users.h -insert.o: ../core/groups.h ../core/group.h ../core/loadavg.h ../core/image.h -insert.o: ../core/threadmanager.h ../core/timezones.h ../core/timezone.h -insert.o: ../core/sessionmanager.h ../core/sessioncontainer.h -insert.o: ../core/ipbancontainer.h ../core/system.h ../core/htmlfilter.h -insert.o: ../core/request.h ../core/misc.h +insert.o: ../../winix/core/textstream.h patterncacher.h +insert.o: ../../winix/core/item.h indexpatterns.h patterns.h changepatterns.h +insert.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h +insert.o: ../../winix/core/cur.h ../../winix/core/request.h +insert.o: ../../winix/core/requesttypes.h ../../winix/core/error.h +insert.o: ../../winix/core/config.h ../../winix/core/textstream.h +insert.o: ../../winix/templates/htmltextstream.h +insert.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +insert.o: ../../winix/core/user.h ../../winix/core/plugindata.h +insert.o: ../../winix/core/rebus.h ../../winix/core/ipban.h +insert.o: ../../winix/core/mount.h ../../winix/core/system.h +insert.o: ../../winix/core/job.h ../../winix/core/basethread.h +insert.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +insert.o: ../../winix/core/dircontainer.h ../../winix/db/db.h +insert.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +insert.o: ../../winix/db/dbtextstream.h ../../winix/core/error.h +insert.o: ../../winix/db/dbitemquery.h ../../winix/db/dbitemcolumns.h +insert.o: ../../winix/core/user.h ../../winix/core/group.h +insert.o: ../../winix/core/dircontainer.h ../../winix/core/ugcontainer.h +insert.o: ../../winix/core/log.h ../../winix/core/logmanipulators.h +insert.o: ../../winix/core/slog.h ../../winix/core/cur.h +insert.o: ../../winix/templates/locale.h ../../winix/notify/notify.h +insert.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +insert.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +insert.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +insert.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +insert.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +insert.o: ../../winix/core/crypt.h ../../winix/core/run.h +insert.o: ../../winix/core/users.h ../../winix/core/groups.h +insert.o: ../../winix/core/group.h ../../winix/core/loadavg.h +insert.o: ../../winix/core/image.h ../../winix/core/threadmanager.h +insert.o: ../../winix/core/timezones.h ../../winix/core/timezone.h +insert.o: ../../winix/core/sessionmanager.h +insert.o: ../../winix/core/sessioncontainer.h +insert.o: ../../winix/core/ipbancontainer.h ../../winix/core/system.h +insert.o: ../../winix/core/htmlfilter.h ../../winix/core/request.h +insert.o: ../../winix/core/misc.h ipban.o: templates.h ../../ezc/src/ezc.h ../../ezc/src/generator.h ipban.o: ../../ezc/src/pattern.h ../../ezc/src/item.h ../../ezc/src/funinfo.h ipban.o: ../../ezc/src/functions.h ../../ezc/src/stringconv.h @@ -327,45 +435,66 @@ ipban.o: ../../pikotools/space/space.h ../../pikotools/date/date.h ipban.o: ../../pikotools/convert/convert.h ../../pikotools/convert/inttostr.h ipban.o: ../../pikotools/membuffer/membuffer.h ipban.o: ../../pikotools/textstream/types.h htmltextstream.h -ipban.o: ../core/textstream.h patterncacher.h ../core/item.h indexpatterns.h -ipban.o: patterns.h changepatterns.h ../core/config.h ../core/htmlfilter.h -ipban.o: ../core/cur.h ../core/request.h ../core/requesttypes.h -ipban.o: ../core/error.h ../core/config.h ../core/textstream.h -ipban.o: ../templates/htmltextstream.h ../../pikotools/space/spacetojson.h -ipban.o: ../core/session.h ../core/user.h ../core/plugindata.h -ipban.o: ../core/rebus.h ../core/ipban.h ../core/mount.h ../core/system.h -ipban.o: ../core/job.h ../core/basethread.h ../core/synchro.h ../core/dirs.h -ipban.o: ../core/dircontainer.h ../db/db.h ../db/dbbase.h ../db/dbconn.h -ipban.o: ../db/dbtextstream.h ../core/error.h ../db/dbitemquery.h -ipban.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -ipban.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -ipban.o: ../core/logmanipulators.h ../core/slog.h ../core/cur.h -ipban.o: ../templates/locale.h ../notify/notify.h ../notify/notifypool.h -ipban.o: ../templates/patterns.h ../notify/notifythread.h -ipban.o: ../core/basethread.h ../notify/templatesnotify.h ../core/users.h -ipban.o: ../core/ugcontainer.h ../core/lastcontainer.h ../core/mounts.h -ipban.o: ../core/mountparser.h ../core/crypt.h ../core/run.h ../core/users.h -ipban.o: ../core/groups.h ../core/group.h ../core/loadavg.h ../core/image.h -ipban.o: ../core/threadmanager.h ../core/timezones.h ../core/timezone.h -ipban.o: ../core/sessionmanager.h ../core/sessioncontainer.h -ipban.o: ../core/ipbancontainer.h ../core/system.h ../core/htmlfilter.h -ipban.o: ../core/request.h ../core/misc.h ../functions/functions.h -ipban.o: ../functions/functionbase.h ../core/synchro.h -ipban.o: ../functions/functionparser.h ../functions/account.h -ipban.o: ../functions/adduser.h ../functions/cat.h ../functions/chmod.h -ipban.o: ../functions/privchanger.h ../functions/chown.h -ipban.o: ../functions/ckeditor.h ../functions/cp.h ../functions/default.h -ipban.o: ../functions/download.h ../functions/emacs.h ../functions/env.h -ipban.o: ../functions/imgcrop.h ../functions/last.h ../functions/login.h -ipban.o: ../functions/logout.h ../functions/ln.h ../functions/ls.h -ipban.o: ../functions/man.h ../functions/meta.h ../functions/mkdir.h -ipban.o: ../functions/mv.h ../functions/nicedit.h ../functions/node.h -ipban.o: ../functions/passwd.h ../functions/priv.h ../functions/pw.h -ipban.o: ../functions/reload.h ../functions/rm.h ../functions/rmuser.h -ipban.o: ../functions/sort.h ../functions/specialdefault.h -ipban.o: ../functions/stat.h ../functions/subject.h ../functions/template.h -ipban.o: ../functions/tinymce.h ../functions/uname.h ../functions/upload.h -ipban.o: ../functions/uptime.h ../functions/who.h ../functions/vim.h +ipban.o: ../../winix/core/textstream.h patterncacher.h +ipban.o: ../../winix/core/item.h indexpatterns.h patterns.h changepatterns.h +ipban.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h +ipban.o: ../../winix/core/cur.h ../../winix/core/request.h +ipban.o: ../../winix/core/requesttypes.h ../../winix/core/error.h +ipban.o: ../../winix/core/config.h ../../winix/core/textstream.h +ipban.o: ../../winix/templates/htmltextstream.h +ipban.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +ipban.o: ../../winix/core/user.h ../../winix/core/plugindata.h +ipban.o: ../../winix/core/rebus.h ../../winix/core/ipban.h +ipban.o: ../../winix/core/mount.h ../../winix/core/system.h +ipban.o: ../../winix/core/job.h ../../winix/core/basethread.h +ipban.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +ipban.o: ../../winix/core/dircontainer.h ../../winix/db/db.h +ipban.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +ipban.o: ../../winix/db/dbtextstream.h ../../winix/core/error.h +ipban.o: ../../winix/db/dbitemquery.h ../../winix/db/dbitemcolumns.h +ipban.o: ../../winix/core/user.h ../../winix/core/group.h +ipban.o: ../../winix/core/dircontainer.h ../../winix/core/ugcontainer.h +ipban.o: ../../winix/core/log.h ../../winix/core/logmanipulators.h +ipban.o: ../../winix/core/slog.h ../../winix/core/cur.h +ipban.o: ../../winix/templates/locale.h ../../winix/notify/notify.h +ipban.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +ipban.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +ipban.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +ipban.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +ipban.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +ipban.o: ../../winix/core/crypt.h ../../winix/core/run.h +ipban.o: ../../winix/core/users.h ../../winix/core/groups.h +ipban.o: ../../winix/core/group.h ../../winix/core/loadavg.h +ipban.o: ../../winix/core/image.h ../../winix/core/threadmanager.h +ipban.o: ../../winix/core/timezones.h ../../winix/core/timezone.h +ipban.o: ../../winix/core/sessionmanager.h +ipban.o: ../../winix/core/sessioncontainer.h +ipban.o: ../../winix/core/ipbancontainer.h ../../winix/core/system.h +ipban.o: ../../winix/core/htmlfilter.h ../../winix/core/request.h +ipban.o: ../../winix/core/misc.h ../../winix/functions/functions.h +ipban.o: ../../winix/functions/functionbase.h ../../winix/core/synchro.h +ipban.o: ../../winix/functions/functionparser.h +ipban.o: ../../winix/functions/account.h ../../winix/functions/adduser.h +ipban.o: ../../winix/functions/cat.h ../../winix/functions/chmod.h +ipban.o: ../../winix/functions/privchanger.h ../../winix/functions/chown.h +ipban.o: ../../winix/functions/ckeditor.h ../../winix/functions/cp.h +ipban.o: ../../winix/functions/default.h ../../winix/functions/download.h +ipban.o: ../../winix/functions/emacs.h ../../winix/functions/env.h +ipban.o: ../../winix/functions/imgcrop.h ../../winix/functions/last.h +ipban.o: ../../winix/functions/login.h ../../winix/functions/logout.h +ipban.o: ../../winix/functions/ln.h ../../winix/functions/ls.h +ipban.o: ../../winix/functions/man.h ../../winix/functions/meta.h +ipban.o: ../../winix/functions/mkdir.h ../../winix/functions/mv.h +ipban.o: ../../winix/functions/nicedit.h ../../winix/functions/node.h +ipban.o: ../../winix/functions/passwd.h ../../winix/functions/priv.h +ipban.o: ../../winix/functions/pw.h ../../winix/functions/reload.h +ipban.o: ../../winix/functions/rm.h ../../winix/functions/rmuser.h +ipban.o: ../../winix/functions/sort.h ../../winix/functions/specialdefault.h +ipban.o: ../../winix/functions/stat.h ../../winix/functions/subject.h +ipban.o: ../../winix/functions/template.h ../../winix/functions/tinymce.h +ipban.o: ../../winix/functions/uname.h ../../winix/functions/upload.h +ipban.o: ../../winix/functions/uptime.h ../../winix/functions/who.h +ipban.o: ../../winix/functions/vim.h item.o: templates.h ../../ezc/src/ezc.h ../../ezc/src/generator.h item.o: ../../ezc/src/pattern.h ../../ezc/src/item.h ../../ezc/src/funinfo.h item.o: ../../ezc/src/functions.h ../../ezc/src/stringconv.h @@ -377,29 +506,41 @@ item.o: ../../pikotools/date/date.h ../../pikotools/convert/convert.h item.o: ../../pikotools/convert/inttostr.h item.o: ../../pikotools/membuffer/membuffer.h item.o: ../../pikotools/textstream/types.h htmltextstream.h -item.o: ../core/textstream.h patterncacher.h ../core/item.h indexpatterns.h -item.o: patterns.h changepatterns.h ../core/config.h ../core/htmlfilter.h -item.o: ../core/cur.h ../core/request.h ../core/requesttypes.h -item.o: ../core/error.h ../core/config.h ../core/textstream.h -item.o: ../templates/htmltextstream.h ../../pikotools/space/spacetojson.h -item.o: ../core/session.h ../core/user.h ../core/plugindata.h ../core/rebus.h -item.o: ../core/ipban.h ../core/mount.h ../core/system.h ../core/job.h -item.o: ../core/basethread.h ../core/synchro.h ../core/dirs.h -item.o: ../core/dircontainer.h ../db/db.h ../db/dbbase.h ../db/dbconn.h -item.o: ../db/dbtextstream.h ../core/error.h ../db/dbitemquery.h -item.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -item.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -item.o: ../core/logmanipulators.h ../core/slog.h ../core/cur.h -item.o: ../templates/locale.h ../notify/notify.h ../notify/notifypool.h -item.o: ../templates/patterns.h ../notify/notifythread.h ../core/basethread.h -item.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h -item.o: ../core/lastcontainer.h ../core/mounts.h ../core/mountparser.h -item.o: ../core/crypt.h ../core/run.h ../core/users.h ../core/groups.h -item.o: ../core/group.h ../core/loadavg.h ../core/image.h -item.o: ../core/threadmanager.h ../core/timezones.h ../core/timezone.h -item.o: ../core/sessionmanager.h ../core/sessioncontainer.h -item.o: ../core/ipbancontainer.h ../core/system.h ../core/htmlfilter.h -item.o: ../core/request.h ../core/misc.h ../core/bbcodeparser.h miscspace.h +item.o: ../../winix/core/textstream.h patterncacher.h ../../winix/core/item.h +item.o: indexpatterns.h patterns.h changepatterns.h ../../winix/core/config.h +item.o: ../../winix/core/htmlfilter.h ../../winix/core/cur.h +item.o: ../../winix/core/request.h ../../winix/core/requesttypes.h +item.o: ../../winix/core/error.h ../../winix/core/config.h +item.o: ../../winix/core/textstream.h ../../winix/templates/htmltextstream.h +item.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +item.o: ../../winix/core/user.h ../../winix/core/plugindata.h +item.o: ../../winix/core/rebus.h ../../winix/core/ipban.h +item.o: ../../winix/core/mount.h ../../winix/core/system.h +item.o: ../../winix/core/job.h ../../winix/core/basethread.h +item.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +item.o: ../../winix/core/dircontainer.h ../../winix/db/db.h +item.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +item.o: ../../winix/db/dbtextstream.h ../../winix/core/error.h +item.o: ../../winix/db/dbitemquery.h ../../winix/db/dbitemcolumns.h +item.o: ../../winix/core/user.h ../../winix/core/group.h +item.o: ../../winix/core/dircontainer.h ../../winix/core/ugcontainer.h +item.o: ../../winix/core/log.h ../../winix/core/logmanipulators.h +item.o: ../../winix/core/slog.h ../../winix/core/cur.h +item.o: ../../winix/templates/locale.h ../../winix/notify/notify.h +item.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +item.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +item.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +item.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +item.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +item.o: ../../winix/core/crypt.h ../../winix/core/run.h +item.o: ../../winix/core/users.h ../../winix/core/groups.h +item.o: ../../winix/core/group.h ../../winix/core/loadavg.h +item.o: ../../winix/core/image.h ../../winix/core/threadmanager.h +item.o: ../../winix/core/timezones.h ../../winix/core/timezone.h +item.o: ../../winix/core/sessionmanager.h ../../winix/core/sessioncontainer.h +item.o: ../../winix/core/ipbancontainer.h ../../winix/core/system.h +item.o: ../../winix/core/htmlfilter.h ../../winix/core/request.h +item.o: ../../winix/core/misc.h ../../winix/core/bbcodeparser.h miscspace.h last.o: templates.h ../../ezc/src/ezc.h ../../ezc/src/generator.h last.o: ../../ezc/src/pattern.h ../../ezc/src/item.h ../../ezc/src/funinfo.h last.o: ../../ezc/src/functions.h ../../ezc/src/stringconv.h @@ -411,29 +552,41 @@ last.o: ../../pikotools/date/date.h ../../pikotools/convert/convert.h last.o: ../../pikotools/convert/inttostr.h last.o: ../../pikotools/membuffer/membuffer.h last.o: ../../pikotools/textstream/types.h htmltextstream.h -last.o: ../core/textstream.h patterncacher.h ../core/item.h indexpatterns.h -last.o: patterns.h changepatterns.h ../core/config.h ../core/htmlfilter.h -last.o: ../core/cur.h ../core/request.h ../core/requesttypes.h -last.o: ../core/error.h ../core/config.h ../core/textstream.h -last.o: ../templates/htmltextstream.h ../../pikotools/space/spacetojson.h -last.o: ../core/session.h ../core/user.h ../core/plugindata.h ../core/rebus.h -last.o: ../core/ipban.h ../core/mount.h ../core/system.h ../core/job.h -last.o: ../core/basethread.h ../core/synchro.h ../core/dirs.h -last.o: ../core/dircontainer.h ../db/db.h ../db/dbbase.h ../db/dbconn.h -last.o: ../db/dbtextstream.h ../core/error.h ../db/dbitemquery.h -last.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -last.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -last.o: ../core/logmanipulators.h ../core/slog.h ../core/cur.h -last.o: ../templates/locale.h ../notify/notify.h ../notify/notifypool.h -last.o: ../templates/patterns.h ../notify/notifythread.h ../core/basethread.h -last.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h -last.o: ../core/lastcontainer.h ../core/mounts.h ../core/mountparser.h -last.o: ../core/crypt.h ../core/run.h ../core/users.h ../core/groups.h -last.o: ../core/group.h ../core/loadavg.h ../core/image.h -last.o: ../core/threadmanager.h ../core/timezones.h ../core/timezone.h -last.o: ../core/sessionmanager.h ../core/sessioncontainer.h -last.o: ../core/ipbancontainer.h ../core/system.h ../core/htmlfilter.h -last.o: ../core/lastcontainer.h ../core/request.h ../core/misc.h +last.o: ../../winix/core/textstream.h patterncacher.h ../../winix/core/item.h +last.o: indexpatterns.h patterns.h changepatterns.h ../../winix/core/config.h +last.o: ../../winix/core/htmlfilter.h ../../winix/core/cur.h +last.o: ../../winix/core/request.h ../../winix/core/requesttypes.h +last.o: ../../winix/core/error.h ../../winix/core/config.h +last.o: ../../winix/core/textstream.h ../../winix/templates/htmltextstream.h +last.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +last.o: ../../winix/core/user.h ../../winix/core/plugindata.h +last.o: ../../winix/core/rebus.h ../../winix/core/ipban.h +last.o: ../../winix/core/mount.h ../../winix/core/system.h +last.o: ../../winix/core/job.h ../../winix/core/basethread.h +last.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +last.o: ../../winix/core/dircontainer.h ../../winix/db/db.h +last.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +last.o: ../../winix/db/dbtextstream.h ../../winix/core/error.h +last.o: ../../winix/db/dbitemquery.h ../../winix/db/dbitemcolumns.h +last.o: ../../winix/core/user.h ../../winix/core/group.h +last.o: ../../winix/core/dircontainer.h ../../winix/core/ugcontainer.h +last.o: ../../winix/core/log.h ../../winix/core/logmanipulators.h +last.o: ../../winix/core/slog.h ../../winix/core/cur.h +last.o: ../../winix/templates/locale.h ../../winix/notify/notify.h +last.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +last.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +last.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +last.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +last.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +last.o: ../../winix/core/crypt.h ../../winix/core/run.h +last.o: ../../winix/core/users.h ../../winix/core/groups.h +last.o: ../../winix/core/group.h ../../winix/core/loadavg.h +last.o: ../../winix/core/image.h ../../winix/core/threadmanager.h +last.o: ../../winix/core/timezones.h ../../winix/core/timezone.h +last.o: ../../winix/core/sessionmanager.h ../../winix/core/sessioncontainer.h +last.o: ../../winix/core/ipbancontainer.h ../../winix/core/system.h +last.o: ../../winix/core/htmlfilter.h ../core/lastcontainer.h +last.o: ../core/request.h ../core/misc.h locale.o: locale.h ../../pikotools/space/spaceparser.h locale.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h locale.o: ../../pikotools/textstream/textstream.h @@ -441,11 +594,12 @@ locale.o: ../../pikotools/space/space.h ../../pikotools/date/date.h locale.o: ../../pikotools/convert/convert.h locale.o: ../../pikotools/convert/inttostr.h locale.o: ../../pikotools/membuffer/membuffer.h -locale.o: ../../pikotools/textstream/types.h ../core/log.h -locale.o: ../core/textstream.h ../core/logmanipulators.h ../core/slog.h -locale.o: ../core/cur.h ../templates/locale.h ../core/misc.h -locale.o: ../../ezc/src/item.h ../../ezc/src/funinfo.h ../core/requesttypes.h -locale.o: ../../pikotools/utf8/utf8.h +locale.o: ../../pikotools/textstream/types.h ../../winix/core/log.h +locale.o: ../../winix/core/textstream.h ../../winix/core/logmanipulators.h +locale.o: ../../winix/core/slog.h ../../winix/core/cur.h +locale.o: ../../winix/templates/locale.h ../../winix/core/misc.h +locale.o: ../../ezc/src/item.h ../../ezc/src/funinfo.h +locale.o: ../../winix/core/requesttypes.h ../../pikotools/utf8/utf8.h localefilter.o: localefilter.h locale.h ../../pikotools/space/spaceparser.h localefilter.o: ../../pikotools/space/space.h localefilter.o: ../../pikotools/textstream/types.h @@ -459,7 +613,7 @@ localefilter.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h localefilter.o: ../../ezc/src/item.h ../../ezc/src/funinfo.h localefilter.o: ../../ezc/src/functions.h ../../ezc/src/stringconv.h localefilter.o: ../../pikotools/utf8/utf8.h ../core/misc.h -localefilter.o: ../core/requesttypes.h +localefilter.o: ../../winix/core/requesttypes.h login.o: templates.h ../../ezc/src/ezc.h ../../ezc/src/generator.h login.o: ../../ezc/src/pattern.h ../../ezc/src/item.h ../../ezc/src/funinfo.h login.o: ../../ezc/src/functions.h ../../ezc/src/stringconv.h @@ -471,44 +625,65 @@ login.o: ../../pikotools/space/space.h ../../pikotools/date/date.h login.o: ../../pikotools/convert/convert.h ../../pikotools/convert/inttostr.h login.o: ../../pikotools/membuffer/membuffer.h login.o: ../../pikotools/textstream/types.h htmltextstream.h -login.o: ../core/textstream.h patterncacher.h ../core/item.h indexpatterns.h -login.o: patterns.h changepatterns.h ../core/config.h ../core/htmlfilter.h -login.o: ../core/cur.h ../core/request.h ../core/requesttypes.h -login.o: ../core/error.h ../core/config.h ../core/textstream.h -login.o: ../templates/htmltextstream.h ../../pikotools/space/spacetojson.h -login.o: ../core/session.h ../core/user.h ../core/plugindata.h -login.o: ../core/rebus.h ../core/ipban.h ../core/mount.h ../core/system.h -login.o: ../core/job.h ../core/basethread.h ../core/synchro.h ../core/dirs.h -login.o: ../core/dircontainer.h ../db/db.h ../db/dbbase.h ../db/dbconn.h -login.o: ../db/dbtextstream.h ../core/error.h ../db/dbitemquery.h -login.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -login.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -login.o: ../core/logmanipulators.h ../core/slog.h ../core/cur.h -login.o: ../templates/locale.h ../notify/notify.h ../notify/notifypool.h -login.o: ../templates/patterns.h ../notify/notifythread.h -login.o: ../core/basethread.h ../notify/templatesnotify.h ../core/users.h -login.o: ../core/ugcontainer.h ../core/lastcontainer.h ../core/mounts.h -login.o: ../core/mountparser.h ../core/crypt.h ../core/run.h ../core/users.h -login.o: ../core/groups.h ../core/group.h ../core/loadavg.h ../core/image.h -login.o: ../core/threadmanager.h ../core/timezones.h ../core/timezone.h -login.o: ../core/sessionmanager.h ../core/sessioncontainer.h -login.o: ../core/ipbancontainer.h ../core/system.h ../core/htmlfilter.h -login.o: ../functions/functions.h ../functions/functionbase.h -login.o: ../core/request.h ../core/synchro.h ../functions/functionparser.h -login.o: ../functions/account.h ../functions/adduser.h ../functions/cat.h -login.o: ../functions/chmod.h ../functions/privchanger.h ../functions/chown.h -login.o: ../functions/ckeditor.h ../functions/cp.h ../functions/default.h -login.o: ../functions/download.h ../functions/emacs.h ../functions/env.h -login.o: ../functions/imgcrop.h ../functions/last.h ../functions/login.h -login.o: ../functions/logout.h ../functions/ln.h ../functions/ls.h -login.o: ../functions/man.h ../functions/meta.h ../functions/mkdir.h -login.o: ../functions/mv.h ../functions/nicedit.h ../functions/node.h -login.o: ../functions/passwd.h ../functions/priv.h ../functions/pw.h -login.o: ../functions/reload.h ../functions/rm.h ../functions/rmuser.h -login.o: ../functions/sort.h ../functions/specialdefault.h -login.o: ../functions/stat.h ../functions/subject.h ../functions/template.h -login.o: ../functions/tinymce.h ../functions/uname.h ../functions/upload.h -login.o: ../functions/uptime.h ../functions/who.h ../functions/vim.h +login.o: ../../winix/core/textstream.h patterncacher.h +login.o: ../../winix/core/item.h indexpatterns.h patterns.h changepatterns.h +login.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h +login.o: ../../winix/core/cur.h ../../winix/core/request.h +login.o: ../../winix/core/requesttypes.h ../../winix/core/error.h +login.o: ../../winix/core/config.h ../../winix/core/textstream.h +login.o: ../../winix/templates/htmltextstream.h +login.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +login.o: ../../winix/core/user.h ../../winix/core/plugindata.h +login.o: ../../winix/core/rebus.h ../../winix/core/ipban.h +login.o: ../../winix/core/mount.h ../../winix/core/system.h +login.o: ../../winix/core/job.h ../../winix/core/basethread.h +login.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +login.o: ../../winix/core/dircontainer.h ../../winix/db/db.h +login.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +login.o: ../../winix/db/dbtextstream.h ../../winix/core/error.h +login.o: ../../winix/db/dbitemquery.h ../../winix/db/dbitemcolumns.h +login.o: ../../winix/core/user.h ../../winix/core/group.h +login.o: ../../winix/core/dircontainer.h ../../winix/core/ugcontainer.h +login.o: ../../winix/core/log.h ../../winix/core/logmanipulators.h +login.o: ../../winix/core/slog.h ../../winix/core/cur.h +login.o: ../../winix/templates/locale.h ../../winix/notify/notify.h +login.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +login.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +login.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +login.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +login.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +login.o: ../../winix/core/crypt.h ../../winix/core/run.h +login.o: ../../winix/core/users.h ../../winix/core/groups.h +login.o: ../../winix/core/group.h ../../winix/core/loadavg.h +login.o: ../../winix/core/image.h ../../winix/core/threadmanager.h +login.o: ../../winix/core/timezones.h ../../winix/core/timezone.h +login.o: ../../winix/core/sessionmanager.h +login.o: ../../winix/core/sessioncontainer.h +login.o: ../../winix/core/ipbancontainer.h ../../winix/core/system.h +login.o: ../../winix/core/htmlfilter.h ../../winix/functions/functions.h +login.o: ../../winix/functions/functionbase.h ../../winix/core/request.h +login.o: ../../winix/core/synchro.h ../../winix/functions/functionparser.h +login.o: ../../winix/functions/account.h ../../winix/functions/adduser.h +login.o: ../../winix/functions/cat.h ../../winix/functions/chmod.h +login.o: ../../winix/functions/privchanger.h ../../winix/functions/chown.h +login.o: ../../winix/functions/ckeditor.h ../../winix/functions/cp.h +login.o: ../../winix/functions/default.h ../../winix/functions/download.h +login.o: ../../winix/functions/emacs.h ../../winix/functions/env.h +login.o: ../../winix/functions/imgcrop.h ../../winix/functions/last.h +login.o: ../../winix/functions/login.h ../../winix/functions/logout.h +login.o: ../../winix/functions/ln.h ../../winix/functions/ls.h +login.o: ../../winix/functions/man.h ../../winix/functions/meta.h +login.o: ../../winix/functions/mkdir.h ../../winix/functions/mv.h +login.o: ../../winix/functions/nicedit.h ../../winix/functions/node.h +login.o: ../../winix/functions/passwd.h ../../winix/functions/priv.h +login.o: ../../winix/functions/pw.h ../../winix/functions/reload.h +login.o: ../../winix/functions/rm.h ../../winix/functions/rmuser.h +login.o: ../../winix/functions/sort.h ../../winix/functions/specialdefault.h +login.o: ../../winix/functions/stat.h ../../winix/functions/subject.h +login.o: ../../winix/functions/template.h ../../winix/functions/tinymce.h +login.o: ../../winix/functions/uname.h ../../winix/functions/upload.h +login.o: ../../winix/functions/uptime.h ../../winix/functions/who.h +login.o: ../../winix/functions/vim.h ls.o: templates.h ../../ezc/src/ezc.h ../../ezc/src/generator.h ls.o: ../../ezc/src/pattern.h ../../ezc/src/item.h ../../ezc/src/funinfo.h ls.o: ../../ezc/src/functions.h ../../ezc/src/stringconv.h @@ -520,28 +695,40 @@ ls.o: ../../pikotools/date/date.h ../../pikotools/convert/convert.h ls.o: ../../pikotools/convert/inttostr.h ls.o: ../../pikotools/membuffer/membuffer.h ls.o: ../../pikotools/textstream/types.h htmltextstream.h -ls.o: ../core/textstream.h patterncacher.h ../core/item.h indexpatterns.h -ls.o: patterns.h changepatterns.h ../core/config.h ../core/htmlfilter.h -ls.o: ../core/cur.h ../core/request.h ../core/requesttypes.h ../core/error.h -ls.o: ../core/config.h ../core/textstream.h ../templates/htmltextstream.h -ls.o: ../../pikotools/space/spacetojson.h ../core/session.h ../core/user.h -ls.o: ../core/plugindata.h ../core/rebus.h ../core/ipban.h ../core/mount.h -ls.o: ../core/system.h ../core/job.h ../core/basethread.h ../core/synchro.h -ls.o: ../core/dirs.h ../core/dircontainer.h ../db/db.h ../db/dbbase.h -ls.o: ../db/dbconn.h ../db/dbtextstream.h ../core/error.h ../db/dbitemquery.h -ls.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -ls.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -ls.o: ../core/logmanipulators.h ../core/slog.h ../core/cur.h -ls.o: ../templates/locale.h ../notify/notify.h ../notify/notifypool.h -ls.o: ../templates/patterns.h ../notify/notifythread.h ../core/basethread.h -ls.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h -ls.o: ../core/lastcontainer.h ../core/mounts.h ../core/mountparser.h -ls.o: ../core/crypt.h ../core/run.h ../core/users.h ../core/groups.h -ls.o: ../core/group.h ../core/loadavg.h ../core/image.h -ls.o: ../core/threadmanager.h ../core/timezones.h ../core/timezone.h -ls.o: ../core/sessionmanager.h ../core/sessioncontainer.h -ls.o: ../core/ipbancontainer.h ../core/system.h ../core/htmlfilter.h -ls.o: ../core/request.h +ls.o: ../../winix/core/textstream.h patterncacher.h ../../winix/core/item.h +ls.o: indexpatterns.h patterns.h changepatterns.h ../../winix/core/config.h +ls.o: ../../winix/core/htmlfilter.h ../../winix/core/cur.h +ls.o: ../../winix/core/request.h ../../winix/core/requesttypes.h +ls.o: ../../winix/core/error.h ../../winix/core/config.h +ls.o: ../../winix/core/textstream.h ../../winix/templates/htmltextstream.h +ls.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +ls.o: ../../winix/core/user.h ../../winix/core/plugindata.h +ls.o: ../../winix/core/rebus.h ../../winix/core/ipban.h +ls.o: ../../winix/core/mount.h ../../winix/core/system.h +ls.o: ../../winix/core/job.h ../../winix/core/basethread.h +ls.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +ls.o: ../../winix/core/dircontainer.h ../../winix/db/db.h +ls.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +ls.o: ../../winix/db/dbtextstream.h ../../winix/core/error.h +ls.o: ../../winix/db/dbitemquery.h ../../winix/db/dbitemcolumns.h +ls.o: ../../winix/core/user.h ../../winix/core/group.h +ls.o: ../../winix/core/dircontainer.h ../../winix/core/ugcontainer.h +ls.o: ../../winix/core/log.h ../../winix/core/logmanipulators.h +ls.o: ../../winix/core/slog.h ../../winix/core/cur.h +ls.o: ../../winix/templates/locale.h ../../winix/notify/notify.h +ls.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +ls.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +ls.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +ls.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +ls.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +ls.o: ../../winix/core/crypt.h ../../winix/core/run.h +ls.o: ../../winix/core/users.h ../../winix/core/groups.h +ls.o: ../../winix/core/group.h ../../winix/core/loadavg.h +ls.o: ../../winix/core/image.h ../../winix/core/threadmanager.h +ls.o: ../../winix/core/timezones.h ../../winix/core/timezone.h +ls.o: ../../winix/core/sessionmanager.h ../../winix/core/sessioncontainer.h +ls.o: ../../winix/core/ipbancontainer.h ../../winix/core/system.h +ls.o: ../../winix/core/htmlfilter.h ../../winix/core/request.h man.o: templates.h ../../ezc/src/ezc.h ../../ezc/src/generator.h man.o: ../../ezc/src/pattern.h ../../ezc/src/item.h ../../ezc/src/funinfo.h man.o: ../../ezc/src/functions.h ../../ezc/src/stringconv.h @@ -553,44 +740,63 @@ man.o: ../../pikotools/date/date.h ../../pikotools/convert/convert.h man.o: ../../pikotools/convert/inttostr.h man.o: ../../pikotools/membuffer/membuffer.h man.o: ../../pikotools/textstream/types.h htmltextstream.h -man.o: ../core/textstream.h patterncacher.h ../core/item.h indexpatterns.h -man.o: patterns.h changepatterns.h ../core/config.h ../core/htmlfilter.h -man.o: ../core/cur.h ../core/request.h ../core/requesttypes.h ../core/error.h -man.o: ../core/config.h ../core/textstream.h ../templates/htmltextstream.h -man.o: ../../pikotools/space/spacetojson.h ../core/session.h ../core/user.h -man.o: ../core/plugindata.h ../core/rebus.h ../core/ipban.h ../core/mount.h -man.o: ../core/system.h ../core/job.h ../core/basethread.h ../core/synchro.h -man.o: ../core/dirs.h ../core/dircontainer.h ../db/db.h ../db/dbbase.h -man.o: ../db/dbconn.h ../db/dbtextstream.h ../core/error.h -man.o: ../db/dbitemquery.h ../db/dbitemcolumns.h ../core/user.h -man.o: ../core/group.h ../core/dircontainer.h ../core/ugcontainer.h -man.o: ../core/log.h ../core/logmanipulators.h ../core/slog.h ../core/cur.h -man.o: ../templates/locale.h ../notify/notify.h ../notify/notifypool.h -man.o: ../templates/patterns.h ../notify/notifythread.h ../core/basethread.h -man.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h -man.o: ../core/lastcontainer.h ../core/mounts.h ../core/mountparser.h -man.o: ../core/crypt.h ../core/run.h ../core/users.h ../core/groups.h -man.o: ../core/group.h ../core/loadavg.h ../core/image.h -man.o: ../core/threadmanager.h ../core/timezones.h ../core/timezone.h -man.o: ../core/sessionmanager.h ../core/sessioncontainer.h -man.o: ../core/ipbancontainer.h ../core/system.h ../core/htmlfilter.h -man.o: ../core/request.h ../core/misc.h ../functions/functions.h -man.o: ../functions/functionbase.h ../core/synchro.h -man.o: ../functions/functionparser.h ../functions/account.h -man.o: ../functions/adduser.h ../functions/cat.h ../functions/chmod.h -man.o: ../functions/privchanger.h ../functions/chown.h -man.o: ../functions/ckeditor.h ../functions/cp.h ../functions/default.h -man.o: ../functions/download.h ../functions/emacs.h ../functions/env.h -man.o: ../functions/imgcrop.h ../functions/last.h ../functions/login.h -man.o: ../functions/logout.h ../functions/ln.h ../functions/ls.h -man.o: ../functions/man.h ../functions/meta.h ../functions/mkdir.h -man.o: ../functions/mv.h ../functions/nicedit.h ../functions/node.h -man.o: ../functions/passwd.h ../functions/priv.h ../functions/pw.h -man.o: ../functions/reload.h ../functions/rm.h ../functions/rmuser.h -man.o: ../functions/sort.h ../functions/specialdefault.h ../functions/stat.h -man.o: ../functions/subject.h ../functions/template.h ../functions/tinymce.h -man.o: ../functions/uname.h ../functions/upload.h ../functions/uptime.h -man.o: ../functions/who.h ../functions/vim.h +man.o: ../../winix/core/textstream.h patterncacher.h ../../winix/core/item.h +man.o: indexpatterns.h patterns.h changepatterns.h ../../winix/core/config.h +man.o: ../../winix/core/htmlfilter.h ../../winix/core/cur.h +man.o: ../../winix/core/request.h ../../winix/core/requesttypes.h +man.o: ../../winix/core/error.h ../../winix/core/config.h +man.o: ../../winix/core/textstream.h ../../winix/templates/htmltextstream.h +man.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +man.o: ../../winix/core/user.h ../../winix/core/plugindata.h +man.o: ../../winix/core/rebus.h ../../winix/core/ipban.h +man.o: ../../winix/core/mount.h ../../winix/core/system.h +man.o: ../../winix/core/job.h ../../winix/core/basethread.h +man.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +man.o: ../../winix/core/dircontainer.h ../../winix/db/db.h +man.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +man.o: ../../winix/db/dbtextstream.h ../../winix/core/error.h +man.o: ../../winix/db/dbitemquery.h ../../winix/db/dbitemcolumns.h +man.o: ../../winix/core/user.h ../../winix/core/group.h +man.o: ../../winix/core/dircontainer.h ../../winix/core/ugcontainer.h +man.o: ../../winix/core/log.h ../../winix/core/logmanipulators.h +man.o: ../../winix/core/slog.h ../../winix/core/cur.h +man.o: ../../winix/templates/locale.h ../../winix/notify/notify.h +man.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +man.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +man.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +man.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +man.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +man.o: ../../winix/core/crypt.h ../../winix/core/run.h +man.o: ../../winix/core/users.h ../../winix/core/groups.h +man.o: ../../winix/core/group.h ../../winix/core/loadavg.h +man.o: ../../winix/core/image.h ../../winix/core/threadmanager.h +man.o: ../../winix/core/timezones.h ../../winix/core/timezone.h +man.o: ../../winix/core/sessionmanager.h ../../winix/core/sessioncontainer.h +man.o: ../../winix/core/ipbancontainer.h ../../winix/core/system.h +man.o: ../../winix/core/htmlfilter.h ../../winix/core/request.h +man.o: ../../winix/core/misc.h ../../winix/functions/functions.h +man.o: ../../winix/functions/functionbase.h ../../winix/core/synchro.h +man.o: ../../winix/functions/functionparser.h ../../winix/functions/account.h +man.o: ../../winix/functions/adduser.h ../../winix/functions/cat.h +man.o: ../../winix/functions/chmod.h ../../winix/functions/privchanger.h +man.o: ../../winix/functions/chown.h ../../winix/functions/ckeditor.h +man.o: ../../winix/functions/cp.h ../../winix/functions/default.h +man.o: ../../winix/functions/download.h ../../winix/functions/emacs.h +man.o: ../../winix/functions/env.h ../../winix/functions/imgcrop.h +man.o: ../../winix/functions/last.h ../../winix/functions/login.h +man.o: ../../winix/functions/logout.h ../../winix/functions/ln.h +man.o: ../../winix/functions/ls.h ../../winix/functions/man.h +man.o: ../../winix/functions/meta.h ../../winix/functions/mkdir.h +man.o: ../../winix/functions/mv.h ../../winix/functions/nicedit.h +man.o: ../../winix/functions/node.h ../../winix/functions/passwd.h +man.o: ../../winix/functions/priv.h ../../winix/functions/pw.h +man.o: ../../winix/functions/reload.h ../../winix/functions/rm.h +man.o: ../../winix/functions/rmuser.h ../../winix/functions/sort.h +man.o: ../../winix/functions/specialdefault.h ../../winix/functions/stat.h +man.o: ../../winix/functions/subject.h ../../winix/functions/template.h +man.o: ../../winix/functions/tinymce.h ../../winix/functions/uname.h +man.o: ../../winix/functions/upload.h ../../winix/functions/uptime.h +man.o: ../../winix/functions/who.h ../../winix/functions/vim.h misc.o: templates.h ../../ezc/src/ezc.h ../../ezc/src/generator.h misc.o: ../../ezc/src/pattern.h ../../ezc/src/item.h ../../ezc/src/funinfo.h misc.o: ../../ezc/src/functions.h ../../ezc/src/stringconv.h @@ -602,29 +808,41 @@ misc.o: ../../pikotools/date/date.h ../../pikotools/convert/convert.h misc.o: ../../pikotools/convert/inttostr.h misc.o: ../../pikotools/membuffer/membuffer.h misc.o: ../../pikotools/textstream/types.h htmltextstream.h -misc.o: ../core/textstream.h patterncacher.h ../core/item.h indexpatterns.h -misc.o: patterns.h changepatterns.h ../core/config.h ../core/htmlfilter.h -misc.o: ../core/cur.h ../core/request.h ../core/requesttypes.h -misc.o: ../core/error.h ../core/config.h ../core/textstream.h -misc.o: ../templates/htmltextstream.h ../../pikotools/space/spacetojson.h -misc.o: ../core/session.h ../core/user.h ../core/plugindata.h ../core/rebus.h -misc.o: ../core/ipban.h ../core/mount.h ../core/system.h ../core/job.h -misc.o: ../core/basethread.h ../core/synchro.h ../core/dirs.h -misc.o: ../core/dircontainer.h ../db/db.h ../db/dbbase.h ../db/dbconn.h -misc.o: ../db/dbtextstream.h ../core/error.h ../db/dbitemquery.h -misc.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -misc.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -misc.o: ../core/logmanipulators.h ../core/slog.h ../core/cur.h -misc.o: ../templates/locale.h ../notify/notify.h ../notify/notifypool.h -misc.o: ../templates/patterns.h ../notify/notifythread.h ../core/basethread.h -misc.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h -misc.o: ../core/lastcontainer.h ../core/mounts.h ../core/mountparser.h -misc.o: ../core/crypt.h ../core/run.h ../core/users.h ../core/groups.h -misc.o: ../core/group.h ../core/loadavg.h ../core/image.h -misc.o: ../core/threadmanager.h ../core/timezones.h ../core/timezone.h -misc.o: ../core/sessionmanager.h ../core/sessioncontainer.h -misc.o: ../core/ipbancontainer.h ../core/system.h ../core/htmlfilter.h -misc.o: ../core/misc.h ../core/request.h +misc.o: ../../winix/core/textstream.h patterncacher.h ../../winix/core/item.h +misc.o: indexpatterns.h patterns.h changepatterns.h ../../winix/core/config.h +misc.o: ../../winix/core/htmlfilter.h ../../winix/core/cur.h +misc.o: ../../winix/core/request.h ../../winix/core/requesttypes.h +misc.o: ../../winix/core/error.h ../../winix/core/config.h +misc.o: ../../winix/core/textstream.h ../../winix/templates/htmltextstream.h +misc.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +misc.o: ../../winix/core/user.h ../../winix/core/plugindata.h +misc.o: ../../winix/core/rebus.h ../../winix/core/ipban.h +misc.o: ../../winix/core/mount.h ../../winix/core/system.h +misc.o: ../../winix/core/job.h ../../winix/core/basethread.h +misc.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +misc.o: ../../winix/core/dircontainer.h ../../winix/db/db.h +misc.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +misc.o: ../../winix/db/dbtextstream.h ../../winix/core/error.h +misc.o: ../../winix/db/dbitemquery.h ../../winix/db/dbitemcolumns.h +misc.o: ../../winix/core/user.h ../../winix/core/group.h +misc.o: ../../winix/core/dircontainer.h ../../winix/core/ugcontainer.h +misc.o: ../../winix/core/log.h ../../winix/core/logmanipulators.h +misc.o: ../../winix/core/slog.h ../../winix/core/cur.h +misc.o: ../../winix/templates/locale.h ../../winix/notify/notify.h +misc.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +misc.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +misc.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +misc.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +misc.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +misc.o: ../../winix/core/crypt.h ../../winix/core/run.h +misc.o: ../../winix/core/users.h ../../winix/core/groups.h +misc.o: ../../winix/core/group.h ../../winix/core/loadavg.h +misc.o: ../../winix/core/image.h ../../winix/core/threadmanager.h +misc.o: ../../winix/core/timezones.h ../../winix/core/timezone.h +misc.o: ../../winix/core/sessionmanager.h ../../winix/core/sessioncontainer.h +misc.o: ../../winix/core/ipbancontainer.h ../../winix/core/system.h +misc.o: ../../winix/core/htmlfilter.h ../../winix/core/misc.h +misc.o: ../../winix/core/request.h miscspace.o: templates.h ../../ezc/src/ezc.h ../../ezc/src/generator.h miscspace.o: ../../ezc/src/pattern.h ../../ezc/src/item.h miscspace.o: ../../ezc/src/funinfo.h ../../ezc/src/functions.h @@ -637,30 +855,43 @@ miscspace.o: ../../pikotools/convert/convert.h miscspace.o: ../../pikotools/convert/inttostr.h miscspace.o: ../../pikotools/membuffer/membuffer.h miscspace.o: ../../pikotools/textstream/types.h htmltextstream.h -miscspace.o: ../core/textstream.h patterncacher.h ../core/item.h -miscspace.o: indexpatterns.h patterns.h changepatterns.h ../core/config.h -miscspace.o: ../core/htmlfilter.h ../core/cur.h ../core/request.h -miscspace.o: ../core/requesttypes.h ../core/error.h ../core/config.h -miscspace.o: ../core/textstream.h ../templates/htmltextstream.h -miscspace.o: ../../pikotools/space/spacetojson.h ../core/session.h -miscspace.o: ../core/user.h ../core/plugindata.h ../core/rebus.h -miscspace.o: ../core/ipban.h ../core/mount.h ../core/system.h ../core/job.h -miscspace.o: ../core/basethread.h ../core/synchro.h ../core/dirs.h -miscspace.o: ../core/dircontainer.h ../db/db.h ../db/dbbase.h ../db/dbconn.h -miscspace.o: ../db/dbtextstream.h ../core/error.h ../db/dbitemquery.h -miscspace.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -miscspace.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -miscspace.o: ../core/logmanipulators.h ../core/slog.h ../core/cur.h -miscspace.o: ../templates/locale.h ../notify/notify.h ../notify/notifypool.h -miscspace.o: ../templates/patterns.h ../notify/notifythread.h -miscspace.o: ../core/basethread.h ../notify/templatesnotify.h ../core/users.h -miscspace.o: ../core/ugcontainer.h ../core/lastcontainer.h ../core/mounts.h -miscspace.o: ../core/mountparser.h ../core/crypt.h ../core/run.h -miscspace.o: ../core/users.h ../core/groups.h ../core/group.h -miscspace.o: ../core/loadavg.h ../core/image.h ../core/threadmanager.h -miscspace.o: ../core/timezones.h ../core/timezone.h ../core/sessionmanager.h -miscspace.o: ../core/sessioncontainer.h ../core/ipbancontainer.h -miscspace.o: ../core/system.h ../core/htmlfilter.h +miscspace.o: ../../winix/core/textstream.h patterncacher.h +miscspace.o: ../../winix/core/item.h indexpatterns.h patterns.h +miscspace.o: changepatterns.h ../../winix/core/config.h +miscspace.o: ../../winix/core/htmlfilter.h ../../winix/core/cur.h +miscspace.o: ../../winix/core/request.h ../../winix/core/requesttypes.h +miscspace.o: ../../winix/core/error.h ../../winix/core/config.h +miscspace.o: ../../winix/core/textstream.h +miscspace.o: ../../winix/templates/htmltextstream.h +miscspace.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +miscspace.o: ../../winix/core/user.h ../../winix/core/plugindata.h +miscspace.o: ../../winix/core/rebus.h ../../winix/core/ipban.h +miscspace.o: ../../winix/core/mount.h ../../winix/core/system.h +miscspace.o: ../../winix/core/job.h ../../winix/core/basethread.h +miscspace.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +miscspace.o: ../../winix/core/dircontainer.h ../../winix/db/db.h +miscspace.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +miscspace.o: ../../winix/db/dbtextstream.h ../../winix/core/error.h +miscspace.o: ../../winix/db/dbitemquery.h ../../winix/db/dbitemcolumns.h +miscspace.o: ../../winix/core/user.h ../../winix/core/group.h +miscspace.o: ../../winix/core/dircontainer.h ../../winix/core/ugcontainer.h +miscspace.o: ../../winix/core/log.h ../../winix/core/logmanipulators.h +miscspace.o: ../../winix/core/slog.h ../../winix/core/cur.h +miscspace.o: ../../winix/templates/locale.h ../../winix/notify/notify.h +miscspace.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +miscspace.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +miscspace.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +miscspace.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +miscspace.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +miscspace.o: ../../winix/core/crypt.h ../../winix/core/run.h +miscspace.o: ../../winix/core/users.h ../../winix/core/groups.h +miscspace.o: ../../winix/core/group.h ../../winix/core/loadavg.h +miscspace.o: ../../winix/core/image.h ../../winix/core/threadmanager.h +miscspace.o: ../../winix/core/timezones.h ../../winix/core/timezone.h +miscspace.o: ../../winix/core/sessionmanager.h +miscspace.o: ../../winix/core/sessioncontainer.h +miscspace.o: ../../winix/core/ipbancontainer.h ../../winix/core/system.h +miscspace.o: ../../winix/core/htmlfilter.h mount.o: templates.h ../../ezc/src/ezc.h ../../ezc/src/generator.h mount.o: ../../ezc/src/pattern.h ../../ezc/src/item.h ../../ezc/src/funinfo.h mount.o: ../../ezc/src/functions.h ../../ezc/src/stringconv.h @@ -672,30 +903,44 @@ mount.o: ../../pikotools/space/space.h ../../pikotools/date/date.h mount.o: ../../pikotools/convert/convert.h ../../pikotools/convert/inttostr.h mount.o: ../../pikotools/membuffer/membuffer.h mount.o: ../../pikotools/textstream/types.h htmltextstream.h -mount.o: ../core/textstream.h patterncacher.h ../core/item.h indexpatterns.h -mount.o: patterns.h changepatterns.h ../core/config.h ../core/htmlfilter.h -mount.o: ../core/cur.h ../core/request.h ../core/requesttypes.h -mount.o: ../core/error.h ../core/config.h ../core/textstream.h -mount.o: ../templates/htmltextstream.h ../../pikotools/space/spacetojson.h -mount.o: ../core/session.h ../core/user.h ../core/plugindata.h -mount.o: ../core/rebus.h ../core/ipban.h ../core/mount.h ../core/system.h -mount.o: ../core/job.h ../core/basethread.h ../core/synchro.h ../core/dirs.h -mount.o: ../core/dircontainer.h ../db/db.h ../db/dbbase.h ../db/dbconn.h -mount.o: ../db/dbtextstream.h ../core/error.h ../db/dbitemquery.h -mount.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -mount.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -mount.o: ../core/logmanipulators.h ../core/slog.h ../core/cur.h -mount.o: ../templates/locale.h ../notify/notify.h ../notify/notifypool.h -mount.o: ../templates/patterns.h ../notify/notifythread.h -mount.o: ../core/basethread.h ../notify/templatesnotify.h ../core/users.h -mount.o: ../core/ugcontainer.h ../core/lastcontainer.h ../core/mounts.h -mount.o: ../core/mountparser.h ../core/crypt.h ../core/run.h ../core/users.h -mount.o: ../core/groups.h ../core/group.h ../core/loadavg.h ../core/image.h -mount.o: ../core/threadmanager.h ../core/timezones.h ../core/timezone.h -mount.o: ../core/sessionmanager.h ../core/sessioncontainer.h -mount.o: ../core/ipbancontainer.h ../core/system.h ../core/htmlfilter.h -mount.o: ../core/misc.h ../core/mounts.h -passwd.o: ../core/request.h templates.h ../../ezc/src/ezc.h +mount.o: ../../winix/core/textstream.h patterncacher.h +mount.o: ../../winix/core/item.h indexpatterns.h patterns.h changepatterns.h +mount.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h +mount.o: ../../winix/core/cur.h ../../winix/core/request.h +mount.o: ../../winix/core/requesttypes.h ../../winix/core/error.h +mount.o: ../../winix/core/config.h ../../winix/core/textstream.h +mount.o: ../../winix/templates/htmltextstream.h +mount.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +mount.o: ../../winix/core/user.h ../../winix/core/plugindata.h +mount.o: ../../winix/core/rebus.h ../../winix/core/ipban.h +mount.o: ../../winix/core/mount.h ../../winix/core/system.h +mount.o: ../../winix/core/job.h ../../winix/core/basethread.h +mount.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +mount.o: ../../winix/core/dircontainer.h ../../winix/db/db.h +mount.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +mount.o: ../../winix/db/dbtextstream.h ../../winix/core/error.h +mount.o: ../../winix/db/dbitemquery.h ../../winix/db/dbitemcolumns.h +mount.o: ../../winix/core/user.h ../../winix/core/group.h +mount.o: ../../winix/core/dircontainer.h ../../winix/core/ugcontainer.h +mount.o: ../../winix/core/log.h ../../winix/core/logmanipulators.h +mount.o: ../../winix/core/slog.h ../../winix/core/cur.h +mount.o: ../../winix/templates/locale.h ../../winix/notify/notify.h +mount.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +mount.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +mount.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +mount.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +mount.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +mount.o: ../../winix/core/crypt.h ../../winix/core/run.h +mount.o: ../../winix/core/users.h ../../winix/core/groups.h +mount.o: ../../winix/core/group.h ../../winix/core/loadavg.h +mount.o: ../../winix/core/image.h ../../winix/core/threadmanager.h +mount.o: ../../winix/core/timezones.h ../../winix/core/timezone.h +mount.o: ../../winix/core/sessionmanager.h +mount.o: ../../winix/core/sessioncontainer.h +mount.o: ../../winix/core/ipbancontainer.h ../../winix/core/system.h +mount.o: ../../winix/core/htmlfilter.h ../../winix/core/misc.h +mount.o: ../../winix/core/mounts.h +passwd.o: ../../winix/core/request.h templates.h ../../ezc/src/ezc.h passwd.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h passwd.o: ../../ezc/src/item.h ../../ezc/src/funinfo.h passwd.o: ../../ezc/src/functions.h ../../ezc/src/stringconv.h @@ -708,30 +953,45 @@ passwd.o: ../../pikotools/convert/convert.h passwd.o: ../../pikotools/convert/inttostr.h passwd.o: ../../pikotools/membuffer/membuffer.h passwd.o: ../../pikotools/textstream/types.h htmltextstream.h -passwd.o: ../core/textstream.h patterncacher.h ../core/item.h indexpatterns.h -passwd.o: patterns.h changepatterns.h ../core/config.h ../core/htmlfilter.h -passwd.o: ../core/cur.h ../core/request.h ../core/requesttypes.h -passwd.o: ../core/error.h ../core/config.h ../core/textstream.h -passwd.o: ../templates/htmltextstream.h ../../pikotools/space/spacetojson.h -passwd.o: ../core/session.h ../core/user.h ../core/plugindata.h -passwd.o: ../core/rebus.h ../core/ipban.h ../core/mount.h ../core/system.h -passwd.o: ../core/job.h ../core/basethread.h ../core/synchro.h ../core/dirs.h -passwd.o: ../core/dircontainer.h ../db/db.h ../db/dbbase.h ../db/dbconn.h -passwd.o: ../db/dbtextstream.h ../core/error.h ../db/dbitemquery.h -passwd.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -passwd.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -passwd.o: ../core/logmanipulators.h ../core/slog.h ../core/cur.h -passwd.o: ../templates/locale.h ../notify/notify.h ../notify/notifypool.h -passwd.o: ../templates/patterns.h ../notify/notifythread.h -passwd.o: ../core/basethread.h ../notify/templatesnotify.h ../core/users.h -passwd.o: ../core/ugcontainer.h ../core/lastcontainer.h ../core/mounts.h -passwd.o: ../core/mountparser.h ../core/crypt.h ../core/run.h ../core/users.h -passwd.o: ../core/groups.h ../core/group.h ../core/loadavg.h ../core/image.h -passwd.o: ../core/threadmanager.h ../core/timezones.h ../core/timezone.h -passwd.o: ../core/sessionmanager.h ../core/sessioncontainer.h -passwd.o: ../core/ipbancontainer.h ../core/system.h ../core/htmlfilter.h -patterncacher.o: patterncacher.h ../core/item.h ../../pikotools/space/space.h -patterncacher.o: ../../pikotools/date/date.h misc.h localefilter.h locale.h +passwd.o: ../../winix/core/textstream.h patterncacher.h +passwd.o: ../../winix/core/item.h indexpatterns.h patterns.h changepatterns.h +passwd.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h +passwd.o: ../../winix/core/cur.h ../../winix/core/request.h +passwd.o: ../../winix/core/requesttypes.h ../../winix/core/error.h +passwd.o: ../../winix/core/config.h ../../winix/core/textstream.h +passwd.o: ../../winix/templates/htmltextstream.h +passwd.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +passwd.o: ../../winix/core/user.h ../../winix/core/plugindata.h +passwd.o: ../../winix/core/rebus.h ../../winix/core/ipban.h +passwd.o: ../../winix/core/mount.h ../../winix/core/system.h +passwd.o: ../../winix/core/job.h ../../winix/core/basethread.h +passwd.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +passwd.o: ../../winix/core/dircontainer.h ../../winix/db/db.h +passwd.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +passwd.o: ../../winix/db/dbtextstream.h ../../winix/core/error.h +passwd.o: ../../winix/db/dbitemquery.h ../../winix/db/dbitemcolumns.h +passwd.o: ../../winix/core/user.h ../../winix/core/group.h +passwd.o: ../../winix/core/dircontainer.h ../../winix/core/ugcontainer.h +passwd.o: ../../winix/core/log.h ../../winix/core/logmanipulators.h +passwd.o: ../../winix/core/slog.h ../../winix/core/cur.h +passwd.o: ../../winix/templates/locale.h ../../winix/notify/notify.h +passwd.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +passwd.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +passwd.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +passwd.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +passwd.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +passwd.o: ../../winix/core/crypt.h ../../winix/core/run.h +passwd.o: ../../winix/core/users.h ../../winix/core/groups.h +passwd.o: ../../winix/core/group.h ../../winix/core/loadavg.h +passwd.o: ../../winix/core/image.h ../../winix/core/threadmanager.h +passwd.o: ../../winix/core/timezones.h ../../winix/core/timezone.h +passwd.o: ../../winix/core/sessionmanager.h +passwd.o: ../../winix/core/sessioncontainer.h +passwd.o: ../../winix/core/ipbancontainer.h ../../winix/core/system.h +passwd.o: ../../winix/core/htmlfilter.h +patterncacher.o: patterncacher.h ../../winix/core/item.h +patterncacher.o: ../../pikotools/space/space.h ../../pikotools/date/date.h +patterncacher.o: misc.h localefilter.h locale.h patterncacher.o: ../../pikotools/space/spaceparser.h patterncacher.o: ../../pikotools/space/space.h patterncacher.o: ../../pikotools/textstream/types.h @@ -744,9 +1004,10 @@ patterncacher.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h patterncacher.o: ../../ezc/src/item.h ../../ezc/src/funinfo.h patterncacher.o: ../../ezc/src/functions.h ../../ezc/src/stringconv.h patterncacher.o: ../../pikotools/utf8/utf8.h htmltextstream.h -patterncacher.o: ../core/textstream.h ../core/log.h ../core/textstream.h -patterncacher.o: ../core/logmanipulators.h ../core/slog.h ../core/cur.h -patterncacher.o: ../templates/locale.h +patterncacher.o: ../../winix/core/textstream.h ../../winix/core/log.h +patterncacher.o: ../../winix/core/textstream.h +patterncacher.o: ../../winix/core/logmanipulators.h ../../winix/core/slog.h +patterncacher.o: ../../winix/core/cur.h ../../winix/templates/locale.h patterns.o: patterns.h locale.h ../../pikotools/space/spaceparser.h patterns.o: ../../pikotools/space/space.h ../../pikotools/textstream/types.h patterns.o: ../../pikotools/textstream/textstream.h @@ -759,9 +1020,10 @@ patterns.o: ../../ezc/src/ezc.h ../../ezc/src/generator.h patterns.o: ../../ezc/src/pattern.h ../../ezc/src/item.h patterns.o: ../../ezc/src/funinfo.h ../../ezc/src/functions.h patterns.o: ../../ezc/src/stringconv.h ../../pikotools/utf8/utf8.h misc.h -patterns.o: htmltextstream.h ../core/textstream.h ../core/log.h -patterns.o: ../core/textstream.h ../core/logmanipulators.h ../core/slog.h -patterns.o: ../core/cur.h ../templates/locale.h +patterns.o: htmltextstream.h ../../winix/core/textstream.h +patterns.o: ../../winix/core/log.h ../../winix/core/textstream.h +patterns.o: ../../winix/core/logmanipulators.h ../../winix/core/slog.h +patterns.o: ../../winix/core/cur.h ../../winix/templates/locale.h priv.o: templates.h ../../ezc/src/ezc.h ../../ezc/src/generator.h priv.o: ../../ezc/src/pattern.h ../../ezc/src/item.h ../../ezc/src/funinfo.h priv.o: ../../ezc/src/functions.h ../../ezc/src/stringconv.h @@ -773,46 +1035,65 @@ priv.o: ../../pikotools/date/date.h ../../pikotools/convert/convert.h priv.o: ../../pikotools/convert/inttostr.h priv.o: ../../pikotools/membuffer/membuffer.h priv.o: ../../pikotools/textstream/types.h htmltextstream.h -priv.o: ../core/textstream.h patterncacher.h ../core/item.h indexpatterns.h -priv.o: patterns.h changepatterns.h ../core/config.h ../core/htmlfilter.h -priv.o: ../core/cur.h ../core/request.h ../core/requesttypes.h -priv.o: ../core/error.h ../core/config.h ../core/textstream.h -priv.o: ../templates/htmltextstream.h ../../pikotools/space/spacetojson.h -priv.o: ../core/session.h ../core/user.h ../core/plugindata.h ../core/rebus.h -priv.o: ../core/ipban.h ../core/mount.h ../core/system.h ../core/job.h -priv.o: ../core/basethread.h ../core/synchro.h ../core/dirs.h -priv.o: ../core/dircontainer.h ../db/db.h ../db/dbbase.h ../db/dbconn.h -priv.o: ../db/dbtextstream.h ../core/error.h ../db/dbitemquery.h -priv.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -priv.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -priv.o: ../core/logmanipulators.h ../core/slog.h ../core/cur.h -priv.o: ../templates/locale.h ../notify/notify.h ../notify/notifypool.h -priv.o: ../templates/patterns.h ../notify/notifythread.h ../core/basethread.h -priv.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h -priv.o: ../core/lastcontainer.h ../core/mounts.h ../core/mountparser.h -priv.o: ../core/crypt.h ../core/run.h ../core/users.h ../core/groups.h -priv.o: ../core/group.h ../core/loadavg.h ../core/image.h -priv.o: ../core/threadmanager.h ../core/timezones.h ../core/timezone.h -priv.o: ../core/sessionmanager.h ../core/sessioncontainer.h -priv.o: ../core/ipbancontainer.h ../core/system.h ../core/htmlfilter.h -priv.o: ../core/request.h ../core/misc.h ../functions/functions.h -priv.o: ../functions/functionbase.h ../core/synchro.h -priv.o: ../functions/functionparser.h ../functions/account.h -priv.o: ../functions/adduser.h ../functions/cat.h ../functions/chmod.h -priv.o: ../functions/privchanger.h ../functions/chown.h -priv.o: ../functions/ckeditor.h ../functions/cp.h ../functions/default.h -priv.o: ../functions/download.h ../functions/emacs.h ../functions/env.h -priv.o: ../functions/imgcrop.h ../functions/last.h ../functions/login.h -priv.o: ../functions/logout.h ../functions/ln.h ../functions/ls.h -priv.o: ../functions/man.h ../functions/meta.h ../functions/mkdir.h -priv.o: ../functions/mv.h ../functions/nicedit.h ../functions/node.h -priv.o: ../functions/passwd.h ../functions/priv.h ../functions/pw.h -priv.o: ../functions/reload.h ../functions/rm.h ../functions/rmuser.h -priv.o: ../functions/sort.h ../functions/specialdefault.h ../functions/stat.h -priv.o: ../functions/subject.h ../functions/template.h ../functions/tinymce.h -priv.o: ../functions/uname.h ../functions/upload.h ../functions/uptime.h -priv.o: ../functions/who.h ../functions/vim.h -rebus.o: ../core/request.h templates.h ../../ezc/src/ezc.h +priv.o: ../../winix/core/textstream.h patterncacher.h ../../winix/core/item.h +priv.o: indexpatterns.h patterns.h changepatterns.h ../../winix/core/config.h +priv.o: ../../winix/core/htmlfilter.h ../../winix/core/cur.h +priv.o: ../../winix/core/request.h ../../winix/core/requesttypes.h +priv.o: ../../winix/core/error.h ../../winix/core/config.h +priv.o: ../../winix/core/textstream.h ../../winix/templates/htmltextstream.h +priv.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +priv.o: ../../winix/core/user.h ../../winix/core/plugindata.h +priv.o: ../../winix/core/rebus.h ../../winix/core/ipban.h +priv.o: ../../winix/core/mount.h ../../winix/core/system.h +priv.o: ../../winix/core/job.h ../../winix/core/basethread.h +priv.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +priv.o: ../../winix/core/dircontainer.h ../../winix/db/db.h +priv.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +priv.o: ../../winix/db/dbtextstream.h ../../winix/core/error.h +priv.o: ../../winix/db/dbitemquery.h ../../winix/db/dbitemcolumns.h +priv.o: ../../winix/core/user.h ../../winix/core/group.h +priv.o: ../../winix/core/dircontainer.h ../../winix/core/ugcontainer.h +priv.o: ../../winix/core/log.h ../../winix/core/logmanipulators.h +priv.o: ../../winix/core/slog.h ../../winix/core/cur.h +priv.o: ../../winix/templates/locale.h ../../winix/notify/notify.h +priv.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +priv.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +priv.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +priv.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +priv.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +priv.o: ../../winix/core/crypt.h ../../winix/core/run.h +priv.o: ../../winix/core/users.h ../../winix/core/groups.h +priv.o: ../../winix/core/group.h ../../winix/core/loadavg.h +priv.o: ../../winix/core/image.h ../../winix/core/threadmanager.h +priv.o: ../../winix/core/timezones.h ../../winix/core/timezone.h +priv.o: ../../winix/core/sessionmanager.h ../../winix/core/sessioncontainer.h +priv.o: ../../winix/core/ipbancontainer.h ../../winix/core/system.h +priv.o: ../../winix/core/htmlfilter.h ../../winix/core/request.h +priv.o: ../../winix/core/misc.h ../../winix/functions/functions.h +priv.o: ../../winix/functions/functionbase.h ../../winix/core/synchro.h +priv.o: ../../winix/functions/functionparser.h +priv.o: ../../winix/functions/account.h ../../winix/functions/adduser.h +priv.o: ../../winix/functions/cat.h ../../winix/functions/chmod.h +priv.o: ../../winix/functions/privchanger.h ../../winix/functions/chown.h +priv.o: ../../winix/functions/ckeditor.h ../../winix/functions/cp.h +priv.o: ../../winix/functions/default.h ../../winix/functions/download.h +priv.o: ../../winix/functions/emacs.h ../../winix/functions/env.h +priv.o: ../../winix/functions/imgcrop.h ../../winix/functions/last.h +priv.o: ../../winix/functions/login.h ../../winix/functions/logout.h +priv.o: ../../winix/functions/ln.h ../../winix/functions/ls.h +priv.o: ../../winix/functions/man.h ../../winix/functions/meta.h +priv.o: ../../winix/functions/mkdir.h ../../winix/functions/mv.h +priv.o: ../../winix/functions/nicedit.h ../../winix/functions/node.h +priv.o: ../../winix/functions/passwd.h ../../winix/functions/priv.h +priv.o: ../../winix/functions/pw.h ../../winix/functions/reload.h +priv.o: ../../winix/functions/rm.h ../../winix/functions/rmuser.h +priv.o: ../../winix/functions/sort.h ../../winix/functions/specialdefault.h +priv.o: ../../winix/functions/stat.h ../../winix/functions/subject.h +priv.o: ../../winix/functions/template.h ../../winix/functions/tinymce.h +priv.o: ../../winix/functions/uname.h ../../winix/functions/upload.h +priv.o: ../../winix/functions/uptime.h ../../winix/functions/who.h +priv.o: ../../winix/functions/vim.h +rebus.o: ../../winix/core/request.h templates.h ../../ezc/src/ezc.h rebus.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h rebus.o: ../../ezc/src/item.h ../../ezc/src/funinfo.h rebus.o: ../../ezc/src/functions.h ../../ezc/src/stringconv.h @@ -824,32 +1105,47 @@ rebus.o: ../../pikotools/space/space.h ../../pikotools/date/date.h rebus.o: ../../pikotools/convert/convert.h ../../pikotools/convert/inttostr.h rebus.o: ../../pikotools/membuffer/membuffer.h rebus.o: ../../pikotools/textstream/types.h htmltextstream.h -rebus.o: ../core/textstream.h patterncacher.h ../core/item.h indexpatterns.h -rebus.o: patterns.h changepatterns.h ../core/config.h ../core/htmlfilter.h -rebus.o: ../core/cur.h ../core/request.h ../core/requesttypes.h -rebus.o: ../core/error.h ../core/config.h ../core/textstream.h -rebus.o: ../templates/htmltextstream.h ../../pikotools/space/spacetojson.h -rebus.o: ../core/session.h ../core/user.h ../core/plugindata.h -rebus.o: ../core/rebus.h ../core/ipban.h ../core/mount.h ../core/system.h -rebus.o: ../core/job.h ../core/basethread.h ../core/synchro.h ../core/dirs.h -rebus.o: ../core/dircontainer.h ../db/db.h ../db/dbbase.h ../db/dbconn.h -rebus.o: ../db/dbtextstream.h ../core/error.h ../db/dbitemquery.h -rebus.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -rebus.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -rebus.o: ../core/logmanipulators.h ../core/slog.h ../core/cur.h -rebus.o: ../templates/locale.h ../notify/notify.h ../notify/notifypool.h -rebus.o: ../templates/patterns.h ../notify/notifythread.h -rebus.o: ../core/basethread.h ../notify/templatesnotify.h ../core/users.h -rebus.o: ../core/ugcontainer.h ../core/lastcontainer.h ../core/mounts.h -rebus.o: ../core/mountparser.h ../core/crypt.h ../core/run.h ../core/users.h -rebus.o: ../core/groups.h ../core/group.h ../core/loadavg.h ../core/image.h -rebus.o: ../core/threadmanager.h ../core/timezones.h ../core/timezone.h -rebus.o: ../core/sessionmanager.h ../core/sessioncontainer.h -rebus.o: ../core/ipbancontainer.h ../core/system.h ../core/htmlfilter.h -slog.o: ../core/slog.h ../core/cur.h ../core/logmanipulators.h -slog.o: ../templates/locale.h ../../pikotools/textstream/textstream.h -slog.o: ../../pikotools/space/space.h ../../pikotools/date/date.h -slog.o: ../../pikotools/convert/convert.h ../../pikotools/convert/inttostr.h +rebus.o: ../../winix/core/textstream.h patterncacher.h +rebus.o: ../../winix/core/item.h indexpatterns.h patterns.h changepatterns.h +rebus.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h +rebus.o: ../../winix/core/cur.h ../../winix/core/request.h +rebus.o: ../../winix/core/requesttypes.h ../../winix/core/error.h +rebus.o: ../../winix/core/config.h ../../winix/core/textstream.h +rebus.o: ../../winix/templates/htmltextstream.h +rebus.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +rebus.o: ../../winix/core/user.h ../../winix/core/plugindata.h +rebus.o: ../../winix/core/rebus.h ../../winix/core/ipban.h +rebus.o: ../../winix/core/mount.h ../../winix/core/system.h +rebus.o: ../../winix/core/job.h ../../winix/core/basethread.h +rebus.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +rebus.o: ../../winix/core/dircontainer.h ../../winix/db/db.h +rebus.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +rebus.o: ../../winix/db/dbtextstream.h ../../winix/core/error.h +rebus.o: ../../winix/db/dbitemquery.h ../../winix/db/dbitemcolumns.h +rebus.o: ../../winix/core/user.h ../../winix/core/group.h +rebus.o: ../../winix/core/dircontainer.h ../../winix/core/ugcontainer.h +rebus.o: ../../winix/core/log.h ../../winix/core/logmanipulators.h +rebus.o: ../../winix/core/slog.h ../../winix/core/cur.h +rebus.o: ../../winix/templates/locale.h ../../winix/notify/notify.h +rebus.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +rebus.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +rebus.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +rebus.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +rebus.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +rebus.o: ../../winix/core/crypt.h ../../winix/core/run.h +rebus.o: ../../winix/core/users.h ../../winix/core/groups.h +rebus.o: ../../winix/core/group.h ../../winix/core/loadavg.h +rebus.o: ../../winix/core/image.h ../../winix/core/threadmanager.h +rebus.o: ../../winix/core/timezones.h ../../winix/core/timezone.h +rebus.o: ../../winix/core/sessionmanager.h +rebus.o: ../../winix/core/sessioncontainer.h +rebus.o: ../../winix/core/ipbancontainer.h ../../winix/core/system.h +rebus.o: ../../winix/core/htmlfilter.h +slog.o: ../../winix/core/slog.h ../../winix/core/cur.h +slog.o: ../../winix/core/logmanipulators.h ../../winix/templates/locale.h +slog.o: ../../pikotools/textstream/textstream.h ../../pikotools/space/space.h +slog.o: ../../pikotools/date/date.h ../../pikotools/convert/convert.h +slog.o: ../../pikotools/convert/inttostr.h slog.o: ../../pikotools/membuffer/membuffer.h slog.o: ../../pikotools/textstream/types.h templates.h ../../ezc/src/ezc.h slog.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h @@ -858,27 +1154,38 @@ slog.o: ../../ezc/src/functions.h ../../ezc/src/stringconv.h slog.o: ../../pikotools/utf8/utf8.h misc.h localefilter.h locale.h slog.o: ../../pikotools/space/spaceparser.h ../../pikotools/space/space.h slog.o: ../../pikotools/textstream/types.h htmltextstream.h -slog.o: ../core/textstream.h patterncacher.h ../core/item.h indexpatterns.h -slog.o: patterns.h changepatterns.h ../core/config.h ../core/htmlfilter.h -slog.o: ../core/cur.h ../core/request.h ../core/requesttypes.h -slog.o: ../core/error.h ../core/config.h ../core/textstream.h -slog.o: ../templates/htmltextstream.h ../../pikotools/space/spacetojson.h -slog.o: ../core/session.h ../core/user.h ../core/plugindata.h ../core/rebus.h -slog.o: ../core/ipban.h ../core/mount.h ../core/system.h ../core/job.h -slog.o: ../core/basethread.h ../core/synchro.h ../core/dirs.h -slog.o: ../core/dircontainer.h ../db/db.h ../db/dbbase.h ../db/dbconn.h -slog.o: ../db/dbtextstream.h ../core/error.h ../db/dbitemquery.h -slog.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -slog.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -slog.o: ../core/slog.h ../notify/notify.h ../notify/notifypool.h -slog.o: ../templates/patterns.h ../notify/notifythread.h ../core/basethread.h -slog.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h -slog.o: ../core/lastcontainer.h ../core/mounts.h ../core/mountparser.h -slog.o: ../core/crypt.h ../core/run.h ../core/users.h ../core/groups.h -slog.o: ../core/group.h ../core/loadavg.h ../core/image.h -slog.o: ../core/threadmanager.h ../core/timezones.h ../core/timezone.h -slog.o: ../core/sessionmanager.h ../core/sessioncontainer.h -slog.o: ../core/ipbancontainer.h ../core/system.h ../core/htmlfilter.h +slog.o: ../../winix/core/textstream.h patterncacher.h ../../winix/core/item.h +slog.o: indexpatterns.h patterns.h changepatterns.h ../../winix/core/config.h +slog.o: ../../winix/core/htmlfilter.h ../../winix/core/cur.h +slog.o: ../../winix/core/request.h ../../winix/core/requesttypes.h +slog.o: ../../winix/core/error.h ../../winix/core/config.h +slog.o: ../../winix/core/textstream.h ../../winix/templates/htmltextstream.h +slog.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +slog.o: ../../winix/core/user.h ../../winix/core/plugindata.h +slog.o: ../../winix/core/rebus.h ../../winix/core/ipban.h +slog.o: ../../winix/core/mount.h ../../winix/core/system.h +slog.o: ../../winix/core/job.h ../../winix/core/basethread.h +slog.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +slog.o: ../../winix/core/dircontainer.h ../../winix/db/db.h +slog.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +slog.o: ../../winix/db/dbtextstream.h ../../winix/core/error.h +slog.o: ../../winix/db/dbitemquery.h ../../winix/db/dbitemcolumns.h +slog.o: ../../winix/core/user.h ../../winix/core/group.h +slog.o: ../../winix/core/dircontainer.h ../../winix/core/ugcontainer.h +slog.o: ../../winix/core/log.h ../../winix/core/slog.h +slog.o: ../../winix/notify/notify.h ../../winix/notify/notifypool.h +slog.o: ../../winix/templates/patterns.h ../../winix/notify/notifythread.h +slog.o: ../../winix/core/basethread.h ../../winix/notify/templatesnotify.h +slog.o: ../../winix/core/users.h ../../winix/core/ugcontainer.h +slog.o: ../../winix/core/lastcontainer.h ../../winix/core/mounts.h +slog.o: ../../winix/core/mountparser.h ../../winix/core/crypt.h +slog.o: ../../winix/core/run.h ../../winix/core/users.h +slog.o: ../../winix/core/groups.h ../../winix/core/group.h +slog.o: ../../winix/core/loadavg.h ../../winix/core/image.h +slog.o: ../../winix/core/threadmanager.h ../../winix/core/timezones.h +slog.o: ../../winix/core/timezone.h ../../winix/core/sessionmanager.h +slog.o: ../../winix/core/sessioncontainer.h ../../winix/core/ipbancontainer.h +slog.o: ../../winix/core/system.h ../../winix/core/htmlfilter.h stat.o: templates.h ../../ezc/src/ezc.h ../../ezc/src/generator.h stat.o: ../../ezc/src/pattern.h ../../ezc/src/item.h ../../ezc/src/funinfo.h stat.o: ../../ezc/src/functions.h ../../ezc/src/stringconv.h @@ -890,29 +1197,41 @@ stat.o: ../../pikotools/date/date.h ../../pikotools/convert/convert.h stat.o: ../../pikotools/convert/inttostr.h stat.o: ../../pikotools/membuffer/membuffer.h stat.o: ../../pikotools/textstream/types.h htmltextstream.h -stat.o: ../core/textstream.h patterncacher.h ../core/item.h indexpatterns.h -stat.o: patterns.h changepatterns.h ../core/config.h ../core/htmlfilter.h -stat.o: ../core/cur.h ../core/request.h ../core/requesttypes.h -stat.o: ../core/error.h ../core/config.h ../core/textstream.h -stat.o: ../templates/htmltextstream.h ../../pikotools/space/spacetojson.h -stat.o: ../core/session.h ../core/user.h ../core/plugindata.h ../core/rebus.h -stat.o: ../core/ipban.h ../core/mount.h ../core/system.h ../core/job.h -stat.o: ../core/basethread.h ../core/synchro.h ../core/dirs.h -stat.o: ../core/dircontainer.h ../db/db.h ../db/dbbase.h ../db/dbconn.h -stat.o: ../db/dbtextstream.h ../core/error.h ../db/dbitemquery.h -stat.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -stat.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -stat.o: ../core/logmanipulators.h ../core/slog.h ../core/cur.h -stat.o: ../templates/locale.h ../notify/notify.h ../notify/notifypool.h -stat.o: ../templates/patterns.h ../notify/notifythread.h ../core/basethread.h -stat.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h -stat.o: ../core/lastcontainer.h ../core/mounts.h ../core/mountparser.h -stat.o: ../core/crypt.h ../core/run.h ../core/users.h ../core/groups.h -stat.o: ../core/group.h ../core/loadavg.h ../core/image.h -stat.o: ../core/threadmanager.h ../core/timezones.h ../core/timezone.h -stat.o: ../core/sessionmanager.h ../core/sessioncontainer.h -stat.o: ../core/ipbancontainer.h ../core/system.h ../core/htmlfilter.h -stat.o: ../core/request.h ../core/misc.h +stat.o: ../../winix/core/textstream.h patterncacher.h ../../winix/core/item.h +stat.o: indexpatterns.h patterns.h changepatterns.h ../../winix/core/config.h +stat.o: ../../winix/core/htmlfilter.h ../../winix/core/cur.h +stat.o: ../../winix/core/request.h ../../winix/core/requesttypes.h +stat.o: ../../winix/core/error.h ../../winix/core/config.h +stat.o: ../../winix/core/textstream.h ../../winix/templates/htmltextstream.h +stat.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +stat.o: ../../winix/core/user.h ../../winix/core/plugindata.h +stat.o: ../../winix/core/rebus.h ../../winix/core/ipban.h +stat.o: ../../winix/core/mount.h ../../winix/core/system.h +stat.o: ../../winix/core/job.h ../../winix/core/basethread.h +stat.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +stat.o: ../../winix/core/dircontainer.h ../../winix/db/db.h +stat.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +stat.o: ../../winix/db/dbtextstream.h ../../winix/core/error.h +stat.o: ../../winix/db/dbitemquery.h ../../winix/db/dbitemcolumns.h +stat.o: ../../winix/core/user.h ../../winix/core/group.h +stat.o: ../../winix/core/dircontainer.h ../../winix/core/ugcontainer.h +stat.o: ../../winix/core/log.h ../../winix/core/logmanipulators.h +stat.o: ../../winix/core/slog.h ../../winix/core/cur.h +stat.o: ../../winix/templates/locale.h ../../winix/notify/notify.h +stat.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +stat.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +stat.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +stat.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +stat.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +stat.o: ../../winix/core/crypt.h ../../winix/core/run.h +stat.o: ../../winix/core/users.h ../../winix/core/groups.h +stat.o: ../../winix/core/group.h ../../winix/core/loadavg.h +stat.o: ../../winix/core/image.h ../../winix/core/threadmanager.h +stat.o: ../../winix/core/timezones.h ../../winix/core/timezone.h +stat.o: ../../winix/core/sessionmanager.h ../../winix/core/sessioncontainer.h +stat.o: ../../winix/core/ipbancontainer.h ../../winix/core/system.h +stat.o: ../../winix/core/htmlfilter.h ../../winix/core/request.h +stat.o: ../../winix/core/misc.h sys.o: templates.h ../../ezc/src/ezc.h ../../ezc/src/generator.h sys.o: ../../ezc/src/pattern.h ../../ezc/src/item.h ../../ezc/src/funinfo.h sys.o: ../../ezc/src/functions.h ../../ezc/src/stringconv.h @@ -924,45 +1243,65 @@ sys.o: ../../pikotools/date/date.h ../../pikotools/convert/convert.h sys.o: ../../pikotools/convert/inttostr.h sys.o: ../../pikotools/membuffer/membuffer.h sys.o: ../../pikotools/textstream/types.h htmltextstream.h -sys.o: ../core/textstream.h patterncacher.h ../core/item.h indexpatterns.h -sys.o: patterns.h changepatterns.h ../core/config.h ../core/htmlfilter.h -sys.o: ../core/cur.h ../core/request.h ../core/requesttypes.h ../core/error.h -sys.o: ../core/config.h ../core/textstream.h ../templates/htmltextstream.h -sys.o: ../../pikotools/space/spacetojson.h ../core/session.h ../core/user.h -sys.o: ../core/plugindata.h ../core/rebus.h ../core/ipban.h ../core/mount.h -sys.o: ../core/system.h ../core/job.h ../core/basethread.h ../core/synchro.h -sys.o: ../core/dirs.h ../core/dircontainer.h ../db/db.h ../db/dbbase.h -sys.o: ../db/dbconn.h ../db/dbtextstream.h ../core/error.h -sys.o: ../db/dbitemquery.h ../db/dbitemcolumns.h ../core/user.h -sys.o: ../core/group.h ../core/dircontainer.h ../core/ugcontainer.h -sys.o: ../core/log.h ../core/logmanipulators.h ../core/slog.h ../core/cur.h -sys.o: ../templates/locale.h ../notify/notify.h ../notify/notifypool.h -sys.o: ../templates/patterns.h ../notify/notifythread.h ../core/basethread.h -sys.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h -sys.o: ../core/lastcontainer.h ../core/mounts.h ../core/mountparser.h -sys.o: ../core/crypt.h ../core/run.h ../core/users.h ../core/groups.h -sys.o: ../core/group.h ../core/loadavg.h ../core/image.h -sys.o: ../core/threadmanager.h ../core/timezones.h ../core/timezone.h -sys.o: ../core/sessionmanager.h ../core/sessioncontainer.h -sys.o: ../core/ipbancontainer.h ../core/system.h ../core/htmlfilter.h -sys.o: ../core/request.h ../core/version.h ../core/plugin.h -sys.o: ../core/pluginmsg.h ../core/sessionmanager.h ../functions/functions.h -sys.o: ../functions/functionbase.h ../core/synchro.h -sys.o: ../functions/functionparser.h ../functions/account.h -sys.o: ../functions/adduser.h ../functions/cat.h ../functions/chmod.h -sys.o: ../functions/privchanger.h ../functions/chown.h -sys.o: ../functions/ckeditor.h ../functions/cp.h ../functions/default.h -sys.o: ../functions/download.h ../functions/emacs.h ../functions/env.h -sys.o: ../functions/imgcrop.h ../functions/last.h ../functions/login.h -sys.o: ../functions/logout.h ../functions/ln.h ../functions/ls.h -sys.o: ../functions/man.h ../functions/meta.h ../functions/mkdir.h -sys.o: ../functions/mv.h ../functions/nicedit.h ../functions/node.h -sys.o: ../functions/passwd.h ../functions/priv.h ../functions/pw.h -sys.o: ../functions/reload.h ../functions/rm.h ../functions/rmuser.h -sys.o: ../functions/sort.h ../functions/specialdefault.h ../functions/stat.h -sys.o: ../functions/subject.h ../functions/template.h ../functions/tinymce.h -sys.o: ../functions/uname.h ../functions/upload.h ../functions/uptime.h -sys.o: ../functions/who.h ../functions/vim.h ../templates/templates.h +sys.o: ../../winix/core/textstream.h patterncacher.h ../../winix/core/item.h +sys.o: indexpatterns.h patterns.h changepatterns.h ../../winix/core/config.h +sys.o: ../../winix/core/htmlfilter.h ../../winix/core/cur.h +sys.o: ../../winix/core/request.h ../../winix/core/requesttypes.h +sys.o: ../../winix/core/error.h ../../winix/core/config.h +sys.o: ../../winix/core/textstream.h ../../winix/templates/htmltextstream.h +sys.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +sys.o: ../../winix/core/user.h ../../winix/core/plugindata.h +sys.o: ../../winix/core/rebus.h ../../winix/core/ipban.h +sys.o: ../../winix/core/mount.h ../../winix/core/system.h +sys.o: ../../winix/core/job.h ../../winix/core/basethread.h +sys.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +sys.o: ../../winix/core/dircontainer.h ../../winix/db/db.h +sys.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +sys.o: ../../winix/db/dbtextstream.h ../../winix/core/error.h +sys.o: ../../winix/db/dbitemquery.h ../../winix/db/dbitemcolumns.h +sys.o: ../../winix/core/user.h ../../winix/core/group.h +sys.o: ../../winix/core/dircontainer.h ../../winix/core/ugcontainer.h +sys.o: ../../winix/core/log.h ../../winix/core/logmanipulators.h +sys.o: ../../winix/core/slog.h ../../winix/core/cur.h +sys.o: ../../winix/templates/locale.h ../../winix/notify/notify.h +sys.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +sys.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +sys.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +sys.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +sys.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +sys.o: ../../winix/core/crypt.h ../../winix/core/run.h +sys.o: ../../winix/core/users.h ../../winix/core/groups.h +sys.o: ../../winix/core/group.h ../../winix/core/loadavg.h +sys.o: ../../winix/core/image.h ../../winix/core/threadmanager.h +sys.o: ../../winix/core/timezones.h ../../winix/core/timezone.h +sys.o: ../../winix/core/sessionmanager.h ../../winix/core/sessioncontainer.h +sys.o: ../../winix/core/ipbancontainer.h ../../winix/core/system.h +sys.o: ../../winix/core/htmlfilter.h ../../winix/core/request.h +sys.o: ../../winix/core/version.h ../../winix/core/plugin.h +sys.o: ../../winix/core/pluginmsg.h ../../winix/core/sessionmanager.h +sys.o: ../../winix/functions/functions.h ../../winix/functions/functionbase.h +sys.o: ../../winix/core/synchro.h ../../winix/functions/functionparser.h +sys.o: ../../winix/functions/account.h ../../winix/functions/adduser.h +sys.o: ../../winix/functions/cat.h ../../winix/functions/chmod.h +sys.o: ../../winix/functions/privchanger.h ../../winix/functions/chown.h +sys.o: ../../winix/functions/ckeditor.h ../../winix/functions/cp.h +sys.o: ../../winix/functions/default.h ../../winix/functions/download.h +sys.o: ../../winix/functions/emacs.h ../../winix/functions/env.h +sys.o: ../../winix/functions/imgcrop.h ../../winix/functions/last.h +sys.o: ../../winix/functions/login.h ../../winix/functions/logout.h +sys.o: ../../winix/functions/ln.h ../../winix/functions/ls.h +sys.o: ../../winix/functions/man.h ../../winix/functions/meta.h +sys.o: ../../winix/functions/mkdir.h ../../winix/functions/mv.h +sys.o: ../../winix/functions/nicedit.h ../../winix/functions/node.h +sys.o: ../../winix/functions/passwd.h ../../winix/functions/priv.h +sys.o: ../../winix/functions/pw.h ../../winix/functions/reload.h +sys.o: ../../winix/functions/rm.h ../../winix/functions/rmuser.h +sys.o: ../../winix/functions/sort.h ../../winix/functions/specialdefault.h +sys.o: ../../winix/functions/stat.h ../../winix/functions/subject.h +sys.o: ../../winix/functions/template.h ../../winix/functions/tinymce.h +sys.o: ../../winix/functions/uname.h ../../winix/functions/upload.h +sys.o: ../../winix/functions/uptime.h ../../winix/functions/who.h +sys.o: ../../winix/functions/vim.h ../../winix/templates/templates.h template.o: templates.h ../../ezc/src/ezc.h ../../ezc/src/generator.h template.o: ../../ezc/src/pattern.h ../../ezc/src/item.h template.o: ../../ezc/src/funinfo.h ../../ezc/src/functions.h @@ -975,30 +1314,43 @@ template.o: ../../pikotools/convert/convert.h template.o: ../../pikotools/convert/inttostr.h template.o: ../../pikotools/membuffer/membuffer.h template.o: ../../pikotools/textstream/types.h htmltextstream.h -template.o: ../core/textstream.h patterncacher.h ../core/item.h -template.o: indexpatterns.h patterns.h changepatterns.h ../core/config.h -template.o: ../core/htmlfilter.h ../core/cur.h ../core/request.h -template.o: ../core/requesttypes.h ../core/error.h ../core/config.h -template.o: ../core/textstream.h ../templates/htmltextstream.h -template.o: ../../pikotools/space/spacetojson.h ../core/session.h -template.o: ../core/user.h ../core/plugindata.h ../core/rebus.h -template.o: ../core/ipban.h ../core/mount.h ../core/system.h ../core/job.h -template.o: ../core/basethread.h ../core/synchro.h ../core/dirs.h -template.o: ../core/dircontainer.h ../db/db.h ../db/dbbase.h ../db/dbconn.h -template.o: ../db/dbtextstream.h ../core/error.h ../db/dbitemquery.h -template.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -template.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -template.o: ../core/logmanipulators.h ../core/slog.h ../core/cur.h -template.o: ../templates/locale.h ../notify/notify.h ../notify/notifypool.h -template.o: ../templates/patterns.h ../notify/notifythread.h -template.o: ../core/basethread.h ../notify/templatesnotify.h ../core/users.h -template.o: ../core/ugcontainer.h ../core/lastcontainer.h ../core/mounts.h -template.o: ../core/mountparser.h ../core/crypt.h ../core/run.h -template.o: ../core/users.h ../core/groups.h ../core/group.h -template.o: ../core/loadavg.h ../core/image.h ../core/threadmanager.h -template.o: ../core/timezones.h ../core/timezone.h ../core/sessionmanager.h -template.o: ../core/sessioncontainer.h ../core/ipbancontainer.h -template.o: ../core/system.h ../core/htmlfilter.h ../core/misc.h +template.o: ../../winix/core/textstream.h patterncacher.h +template.o: ../../winix/core/item.h indexpatterns.h patterns.h +template.o: changepatterns.h ../../winix/core/config.h +template.o: ../../winix/core/htmlfilter.h ../../winix/core/cur.h +template.o: ../../winix/core/request.h ../../winix/core/requesttypes.h +template.o: ../../winix/core/error.h ../../winix/core/config.h +template.o: ../../winix/core/textstream.h +template.o: ../../winix/templates/htmltextstream.h +template.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +template.o: ../../winix/core/user.h ../../winix/core/plugindata.h +template.o: ../../winix/core/rebus.h ../../winix/core/ipban.h +template.o: ../../winix/core/mount.h ../../winix/core/system.h +template.o: ../../winix/core/job.h ../../winix/core/basethread.h +template.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +template.o: ../../winix/core/dircontainer.h ../../winix/db/db.h +template.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +template.o: ../../winix/db/dbtextstream.h ../../winix/core/error.h +template.o: ../../winix/db/dbitemquery.h ../../winix/db/dbitemcolumns.h +template.o: ../../winix/core/user.h ../../winix/core/group.h +template.o: ../../winix/core/dircontainer.h ../../winix/core/ugcontainer.h +template.o: ../../winix/core/log.h ../../winix/core/logmanipulators.h +template.o: ../../winix/core/slog.h ../../winix/core/cur.h +template.o: ../../winix/templates/locale.h ../../winix/notify/notify.h +template.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +template.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +template.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +template.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +template.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +template.o: ../../winix/core/crypt.h ../../winix/core/run.h +template.o: ../../winix/core/users.h ../../winix/core/groups.h +template.o: ../../winix/core/group.h ../../winix/core/loadavg.h +template.o: ../../winix/core/image.h ../../winix/core/threadmanager.h +template.o: ../../winix/core/timezones.h ../../winix/core/timezone.h +template.o: ../../winix/core/sessionmanager.h +template.o: ../../winix/core/sessioncontainer.h +template.o: ../../winix/core/ipbancontainer.h ../../winix/core/system.h +template.o: ../../winix/core/htmlfilter.h ../../winix/core/misc.h templates.o: templates.h ../../ezc/src/ezc.h ../../ezc/src/generator.h templates.o: ../../ezc/src/pattern.h ../../ezc/src/item.h templates.o: ../../ezc/src/funinfo.h ../../ezc/src/functions.h @@ -1011,51 +1363,73 @@ templates.o: ../../pikotools/convert/convert.h templates.o: ../../pikotools/convert/inttostr.h templates.o: ../../pikotools/membuffer/membuffer.h templates.o: ../../pikotools/textstream/types.h htmltextstream.h -templates.o: ../core/textstream.h patterncacher.h ../core/item.h -templates.o: indexpatterns.h patterns.h changepatterns.h ../core/config.h -templates.o: ../core/htmlfilter.h ../core/cur.h ../core/request.h -templates.o: ../core/requesttypes.h ../core/error.h ../core/config.h -templates.o: ../core/textstream.h ../templates/htmltextstream.h -templates.o: ../../pikotools/space/spacetojson.h ../core/session.h -templates.o: ../core/user.h ../core/plugindata.h ../core/rebus.h -templates.o: ../core/ipban.h ../core/mount.h ../core/system.h ../core/job.h -templates.o: ../core/basethread.h ../core/synchro.h ../core/dirs.h -templates.o: ../core/dircontainer.h ../db/db.h ../db/dbbase.h ../db/dbconn.h -templates.o: ../db/dbtextstream.h ../core/error.h ../db/dbitemquery.h -templates.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -templates.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -templates.o: ../core/logmanipulators.h ../core/slog.h ../core/cur.h -templates.o: ../templates/locale.h ../notify/notify.h ../notify/notifypool.h -templates.o: ../templates/patterns.h ../notify/notifythread.h -templates.o: ../core/basethread.h ../notify/templatesnotify.h ../core/users.h -templates.o: ../core/ugcontainer.h ../core/lastcontainer.h ../core/mounts.h -templates.o: ../core/mountparser.h ../core/crypt.h ../core/run.h -templates.o: ../core/users.h ../core/groups.h ../core/group.h -templates.o: ../core/loadavg.h ../core/image.h ../core/threadmanager.h -templates.o: ../core/timezones.h ../core/timezone.h ../core/sessionmanager.h -templates.o: ../core/sessioncontainer.h ../core/ipbancontainer.h -templates.o: ../core/system.h ../core/htmlfilter.h ../core/misc.h -templates.o: ../core/plugin.h ../core/pluginmsg.h ../core/sessionmanager.h -templates.o: ../functions/functions.h ../functions/functionbase.h -templates.o: ../core/request.h ../core/synchro.h -templates.o: ../functions/functionparser.h ../functions/account.h -templates.o: ../functions/adduser.h ../functions/cat.h ../functions/chmod.h -templates.o: ../functions/privchanger.h ../functions/chown.h -templates.o: ../functions/ckeditor.h ../functions/cp.h ../functions/default.h -templates.o: ../functions/download.h ../functions/emacs.h ../functions/env.h -templates.o: ../functions/imgcrop.h ../functions/last.h ../functions/login.h -templates.o: ../functions/logout.h ../functions/ln.h ../functions/ls.h -templates.o: ../functions/man.h ../functions/meta.h ../functions/mkdir.h -templates.o: ../functions/mv.h ../functions/nicedit.h ../functions/node.h -templates.o: ../functions/passwd.h ../functions/priv.h ../functions/pw.h -templates.o: ../functions/reload.h ../functions/rm.h ../functions/rmuser.h -templates.o: ../functions/sort.h ../functions/specialdefault.h -templates.o: ../functions/stat.h ../functions/subject.h -templates.o: ../functions/template.h ../functions/tinymce.h -templates.o: ../functions/uname.h ../functions/upload.h ../functions/uptime.h -templates.o: ../functions/who.h ../functions/vim.h ../templates/templates.h -textextstream.o: textextstream.h ../core/textstream.h misc.h localefilter.h -textextstream.o: locale.h ../../pikotools/space/spaceparser.h +templates.o: ../../winix/core/textstream.h patterncacher.h +templates.o: ../../winix/core/item.h indexpatterns.h patterns.h +templates.o: changepatterns.h ../../winix/core/config.h +templates.o: ../../winix/core/htmlfilter.h ../../winix/core/cur.h +templates.o: ../../winix/core/request.h ../../winix/core/requesttypes.h +templates.o: ../../winix/core/error.h ../../winix/core/config.h +templates.o: ../../winix/core/textstream.h +templates.o: ../../winix/templates/htmltextstream.h +templates.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +templates.o: ../../winix/core/user.h ../../winix/core/plugindata.h +templates.o: ../../winix/core/rebus.h ../../winix/core/ipban.h +templates.o: ../../winix/core/mount.h ../../winix/core/system.h +templates.o: ../../winix/core/job.h ../../winix/core/basethread.h +templates.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +templates.o: ../../winix/core/dircontainer.h ../../winix/db/db.h +templates.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +templates.o: ../../winix/db/dbtextstream.h ../../winix/core/error.h +templates.o: ../../winix/db/dbitemquery.h ../../winix/db/dbitemcolumns.h +templates.o: ../../winix/core/user.h ../../winix/core/group.h +templates.o: ../../winix/core/dircontainer.h ../../winix/core/ugcontainer.h +templates.o: ../../winix/core/log.h ../../winix/core/logmanipulators.h +templates.o: ../../winix/core/slog.h ../../winix/core/cur.h +templates.o: ../../winix/templates/locale.h ../../winix/notify/notify.h +templates.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +templates.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +templates.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +templates.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +templates.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +templates.o: ../../winix/core/crypt.h ../../winix/core/run.h +templates.o: ../../winix/core/users.h ../../winix/core/groups.h +templates.o: ../../winix/core/group.h ../../winix/core/loadavg.h +templates.o: ../../winix/core/image.h ../../winix/core/threadmanager.h +templates.o: ../../winix/core/timezones.h ../../winix/core/timezone.h +templates.o: ../../winix/core/sessionmanager.h +templates.o: ../../winix/core/sessioncontainer.h +templates.o: ../../winix/core/ipbancontainer.h ../../winix/core/system.h +templates.o: ../../winix/core/htmlfilter.h ../../winix/core/misc.h +templates.o: ../../winix/core/plugin.h ../../winix/core/pluginmsg.h +templates.o: ../../winix/core/sessionmanager.h +templates.o: ../../winix/functions/functions.h +templates.o: ../../winix/functions/functionbase.h ../../winix/core/request.h +templates.o: ../../winix/core/synchro.h +templates.o: ../../winix/functions/functionparser.h +templates.o: ../../winix/functions/account.h ../../winix/functions/adduser.h +templates.o: ../../winix/functions/cat.h ../../winix/functions/chmod.h +templates.o: ../../winix/functions/privchanger.h +templates.o: ../../winix/functions/chown.h ../../winix/functions/ckeditor.h +templates.o: ../../winix/functions/cp.h ../../winix/functions/default.h +templates.o: ../../winix/functions/download.h ../../winix/functions/emacs.h +templates.o: ../../winix/functions/env.h ../../winix/functions/imgcrop.h +templates.o: ../../winix/functions/last.h ../../winix/functions/login.h +templates.o: ../../winix/functions/logout.h ../../winix/functions/ln.h +templates.o: ../../winix/functions/ls.h ../../winix/functions/man.h +templates.o: ../../winix/functions/meta.h ../../winix/functions/mkdir.h +templates.o: ../../winix/functions/mv.h ../../winix/functions/nicedit.h +templates.o: ../../winix/functions/node.h ../../winix/functions/passwd.h +templates.o: ../../winix/functions/priv.h ../../winix/functions/pw.h +templates.o: ../../winix/functions/reload.h ../../winix/functions/rm.h +templates.o: ../../winix/functions/rmuser.h ../../winix/functions/sort.h +templates.o: ../../winix/functions/specialdefault.h +templates.o: ../../winix/functions/stat.h ../../winix/functions/subject.h +templates.o: ../../winix/functions/template.h ../../winix/functions/tinymce.h +templates.o: ../../winix/functions/uname.h ../../winix/functions/upload.h +templates.o: ../../winix/functions/uptime.h ../../winix/functions/who.h +templates.o: ../../winix/functions/vim.h ../../winix/templates/templates.h +textextstream.o: textextstream.h ../../winix/core/textstream.h misc.h +textextstream.o: localefilter.h locale.h ../../pikotools/space/spaceparser.h textextstream.o: ../../pikotools/space/space.h textextstream.o: ../../pikotools/textstream/types.h textextstream.o: ../../pikotools/textstream/textstream.h @@ -1068,7 +1442,7 @@ textextstream.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h textextstream.o: ../../ezc/src/item.h ../../ezc/src/funinfo.h textextstream.o: ../../ezc/src/functions.h ../../ezc/src/stringconv.h textextstream.o: ../../pikotools/utf8/utf8.h htmltextstream.h -upload.o: ../core/request.h templates.h ../../ezc/src/ezc.h +upload.o: ../../winix/core/request.h templates.h ../../ezc/src/ezc.h upload.o: ../../ezc/src/generator.h ../../ezc/src/pattern.h upload.o: ../../ezc/src/item.h ../../ezc/src/funinfo.h upload.o: ../../ezc/src/functions.h ../../ezc/src/stringconv.h @@ -1081,28 +1455,42 @@ upload.o: ../../pikotools/convert/convert.h upload.o: ../../pikotools/convert/inttostr.h upload.o: ../../pikotools/membuffer/membuffer.h upload.o: ../../pikotools/textstream/types.h htmltextstream.h -upload.o: ../core/textstream.h patterncacher.h ../core/item.h indexpatterns.h -upload.o: patterns.h changepatterns.h ../core/config.h ../core/htmlfilter.h -upload.o: ../core/cur.h ../core/request.h ../core/requesttypes.h -upload.o: ../core/error.h ../core/config.h ../core/textstream.h -upload.o: ../templates/htmltextstream.h ../../pikotools/space/spacetojson.h -upload.o: ../core/session.h ../core/user.h ../core/plugindata.h -upload.o: ../core/rebus.h ../core/ipban.h ../core/mount.h ../core/system.h -upload.o: ../core/job.h ../core/basethread.h ../core/synchro.h ../core/dirs.h -upload.o: ../core/dircontainer.h ../db/db.h ../db/dbbase.h ../db/dbconn.h -upload.o: ../db/dbtextstream.h ../core/error.h ../db/dbitemquery.h -upload.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -upload.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -upload.o: ../core/logmanipulators.h ../core/slog.h ../core/cur.h -upload.o: ../templates/locale.h ../notify/notify.h ../notify/notifypool.h -upload.o: ../templates/patterns.h ../notify/notifythread.h -upload.o: ../core/basethread.h ../notify/templatesnotify.h ../core/users.h -upload.o: ../core/ugcontainer.h ../core/lastcontainer.h ../core/mounts.h -upload.o: ../core/mountparser.h ../core/crypt.h ../core/run.h ../core/users.h -upload.o: ../core/groups.h ../core/group.h ../core/loadavg.h ../core/image.h -upload.o: ../core/threadmanager.h ../core/timezones.h ../core/timezone.h -upload.o: ../core/sessionmanager.h ../core/sessioncontainer.h -upload.o: ../core/ipbancontainer.h ../core/system.h ../core/htmlfilter.h +upload.o: ../../winix/core/textstream.h patterncacher.h +upload.o: ../../winix/core/item.h indexpatterns.h patterns.h changepatterns.h +upload.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h +upload.o: ../../winix/core/cur.h ../../winix/core/request.h +upload.o: ../../winix/core/requesttypes.h ../../winix/core/error.h +upload.o: ../../winix/core/config.h ../../winix/core/textstream.h +upload.o: ../../winix/templates/htmltextstream.h +upload.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +upload.o: ../../winix/core/user.h ../../winix/core/plugindata.h +upload.o: ../../winix/core/rebus.h ../../winix/core/ipban.h +upload.o: ../../winix/core/mount.h ../../winix/core/system.h +upload.o: ../../winix/core/job.h ../../winix/core/basethread.h +upload.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +upload.o: ../../winix/core/dircontainer.h ../../winix/db/db.h +upload.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +upload.o: ../../winix/db/dbtextstream.h ../../winix/core/error.h +upload.o: ../../winix/db/dbitemquery.h ../../winix/db/dbitemcolumns.h +upload.o: ../../winix/core/user.h ../../winix/core/group.h +upload.o: ../../winix/core/dircontainer.h ../../winix/core/ugcontainer.h +upload.o: ../../winix/core/log.h ../../winix/core/logmanipulators.h +upload.o: ../../winix/core/slog.h ../../winix/core/cur.h +upload.o: ../../winix/templates/locale.h ../../winix/notify/notify.h +upload.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +upload.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +upload.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +upload.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +upload.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +upload.o: ../../winix/core/crypt.h ../../winix/core/run.h +upload.o: ../../winix/core/users.h ../../winix/core/groups.h +upload.o: ../../winix/core/group.h ../../winix/core/loadavg.h +upload.o: ../../winix/core/image.h ../../winix/core/threadmanager.h +upload.o: ../../winix/core/timezones.h ../../winix/core/timezone.h +upload.o: ../../winix/core/sessionmanager.h +upload.o: ../../winix/core/sessioncontainer.h +upload.o: ../../winix/core/ipbancontainer.h ../../winix/core/system.h +upload.o: ../../winix/core/htmlfilter.h uptime.o: templates.h ../../ezc/src/ezc.h ../../ezc/src/generator.h uptime.o: ../../ezc/src/pattern.h ../../ezc/src/item.h uptime.o: ../../ezc/src/funinfo.h ../../ezc/src/functions.h @@ -1115,28 +1503,42 @@ uptime.o: ../../pikotools/convert/convert.h uptime.o: ../../pikotools/convert/inttostr.h uptime.o: ../../pikotools/membuffer/membuffer.h uptime.o: ../../pikotools/textstream/types.h htmltextstream.h -uptime.o: ../core/textstream.h patterncacher.h ../core/item.h indexpatterns.h -uptime.o: patterns.h changepatterns.h ../core/config.h ../core/htmlfilter.h -uptime.o: ../core/cur.h ../core/request.h ../core/requesttypes.h -uptime.o: ../core/error.h ../core/config.h ../core/textstream.h -uptime.o: ../templates/htmltextstream.h ../../pikotools/space/spacetojson.h -uptime.o: ../core/session.h ../core/user.h ../core/plugindata.h -uptime.o: ../core/rebus.h ../core/ipban.h ../core/mount.h ../core/system.h -uptime.o: ../core/job.h ../core/basethread.h ../core/synchro.h ../core/dirs.h -uptime.o: ../core/dircontainer.h ../db/db.h ../db/dbbase.h ../db/dbconn.h -uptime.o: ../db/dbtextstream.h ../core/error.h ../db/dbitemquery.h -uptime.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -uptime.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -uptime.o: ../core/logmanipulators.h ../core/slog.h ../core/cur.h -uptime.o: ../templates/locale.h ../notify/notify.h ../notify/notifypool.h -uptime.o: ../templates/patterns.h ../notify/notifythread.h -uptime.o: ../core/basethread.h ../notify/templatesnotify.h ../core/users.h -uptime.o: ../core/ugcontainer.h ../core/lastcontainer.h ../core/mounts.h -uptime.o: ../core/mountparser.h ../core/crypt.h ../core/run.h ../core/users.h -uptime.o: ../core/groups.h ../core/group.h ../core/loadavg.h ../core/image.h -uptime.o: ../core/threadmanager.h ../core/timezones.h ../core/timezone.h -uptime.o: ../core/sessionmanager.h ../core/sessioncontainer.h -uptime.o: ../core/ipbancontainer.h ../core/system.h ../core/htmlfilter.h +uptime.o: ../../winix/core/textstream.h patterncacher.h +uptime.o: ../../winix/core/item.h indexpatterns.h patterns.h changepatterns.h +uptime.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h +uptime.o: ../../winix/core/cur.h ../../winix/core/request.h +uptime.o: ../../winix/core/requesttypes.h ../../winix/core/error.h +uptime.o: ../../winix/core/config.h ../../winix/core/textstream.h +uptime.o: ../../winix/templates/htmltextstream.h +uptime.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +uptime.o: ../../winix/core/user.h ../../winix/core/plugindata.h +uptime.o: ../../winix/core/rebus.h ../../winix/core/ipban.h +uptime.o: ../../winix/core/mount.h ../../winix/core/system.h +uptime.o: ../../winix/core/job.h ../../winix/core/basethread.h +uptime.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +uptime.o: ../../winix/core/dircontainer.h ../../winix/db/db.h +uptime.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +uptime.o: ../../winix/db/dbtextstream.h ../../winix/core/error.h +uptime.o: ../../winix/db/dbitemquery.h ../../winix/db/dbitemcolumns.h +uptime.o: ../../winix/core/user.h ../../winix/core/group.h +uptime.o: ../../winix/core/dircontainer.h ../../winix/core/ugcontainer.h +uptime.o: ../../winix/core/log.h ../../winix/core/logmanipulators.h +uptime.o: ../../winix/core/slog.h ../../winix/core/cur.h +uptime.o: ../../winix/templates/locale.h ../../winix/notify/notify.h +uptime.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +uptime.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +uptime.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +uptime.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +uptime.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +uptime.o: ../../winix/core/crypt.h ../../winix/core/run.h +uptime.o: ../../winix/core/users.h ../../winix/core/groups.h +uptime.o: ../../winix/core/group.h ../../winix/core/loadavg.h +uptime.o: ../../winix/core/image.h ../../winix/core/threadmanager.h +uptime.o: ../../winix/core/timezones.h ../../winix/core/timezone.h +uptime.o: ../../winix/core/sessionmanager.h +uptime.o: ../../winix/core/sessioncontainer.h +uptime.o: ../../winix/core/ipbancontainer.h ../../winix/core/system.h +uptime.o: ../../winix/core/htmlfilter.h user.o: templates.h ../../ezc/src/ezc.h ../../ezc/src/generator.h user.o: ../../ezc/src/pattern.h ../../ezc/src/item.h ../../ezc/src/funinfo.h user.o: ../../ezc/src/functions.h ../../ezc/src/stringconv.h @@ -1148,29 +1550,41 @@ user.o: ../../pikotools/date/date.h ../../pikotools/convert/convert.h user.o: ../../pikotools/convert/inttostr.h user.o: ../../pikotools/membuffer/membuffer.h user.o: ../../pikotools/textstream/types.h htmltextstream.h -user.o: ../core/textstream.h patterncacher.h ../core/item.h indexpatterns.h -user.o: patterns.h changepatterns.h ../core/config.h ../core/htmlfilter.h -user.o: ../core/cur.h ../core/request.h ../core/requesttypes.h -user.o: ../core/error.h ../core/config.h ../core/textstream.h -user.o: ../templates/htmltextstream.h ../../pikotools/space/spacetojson.h -user.o: ../core/session.h ../core/user.h ../core/plugindata.h ../core/rebus.h -user.o: ../core/ipban.h ../core/mount.h ../core/system.h ../core/job.h -user.o: ../core/basethread.h ../core/synchro.h ../core/dirs.h -user.o: ../core/dircontainer.h ../db/db.h ../db/dbbase.h ../db/dbconn.h -user.o: ../db/dbtextstream.h ../core/error.h ../db/dbitemquery.h -user.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -user.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -user.o: ../core/logmanipulators.h ../core/slog.h ../core/cur.h -user.o: ../templates/locale.h ../notify/notify.h ../notify/notifypool.h -user.o: ../templates/patterns.h ../notify/notifythread.h ../core/basethread.h -user.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h -user.o: ../core/lastcontainer.h ../core/mounts.h ../core/mountparser.h -user.o: ../core/crypt.h ../core/run.h ../core/users.h ../core/groups.h -user.o: ../core/group.h ../core/loadavg.h ../core/image.h -user.o: ../core/threadmanager.h ../core/timezones.h ../core/timezone.h -user.o: ../core/sessionmanager.h ../core/sessioncontainer.h -user.o: ../core/ipbancontainer.h ../core/system.h ../core/htmlfilter.h -user.o: ../core/request.h ../core/misc.h +user.o: ../../winix/core/textstream.h patterncacher.h ../../winix/core/item.h +user.o: indexpatterns.h patterns.h changepatterns.h ../../winix/core/config.h +user.o: ../../winix/core/htmlfilter.h ../../winix/core/cur.h +user.o: ../../winix/core/request.h ../../winix/core/requesttypes.h +user.o: ../../winix/core/error.h ../../winix/core/config.h +user.o: ../../winix/core/textstream.h ../../winix/templates/htmltextstream.h +user.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +user.o: ../../winix/core/user.h ../../winix/core/plugindata.h +user.o: ../../winix/core/rebus.h ../../winix/core/ipban.h +user.o: ../../winix/core/mount.h ../../winix/core/system.h +user.o: ../../winix/core/job.h ../../winix/core/basethread.h +user.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +user.o: ../../winix/core/dircontainer.h ../../winix/db/db.h +user.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +user.o: ../../winix/db/dbtextstream.h ../../winix/core/error.h +user.o: ../../winix/db/dbitemquery.h ../../winix/db/dbitemcolumns.h +user.o: ../../winix/core/user.h ../../winix/core/group.h +user.o: ../../winix/core/dircontainer.h ../../winix/core/ugcontainer.h +user.o: ../../winix/core/log.h ../../winix/core/logmanipulators.h +user.o: ../../winix/core/slog.h ../../winix/core/cur.h +user.o: ../../winix/templates/locale.h ../../winix/notify/notify.h +user.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +user.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +user.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +user.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +user.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +user.o: ../../winix/core/crypt.h ../../winix/core/run.h +user.o: ../../winix/core/users.h ../../winix/core/groups.h +user.o: ../../winix/core/group.h ../../winix/core/loadavg.h +user.o: ../../winix/core/image.h ../../winix/core/threadmanager.h +user.o: ../../winix/core/timezones.h ../../winix/core/timezone.h +user.o: ../../winix/core/sessionmanager.h ../../winix/core/sessioncontainer.h +user.o: ../../winix/core/ipbancontainer.h ../../winix/core/system.h +user.o: ../../winix/core/htmlfilter.h ../../winix/core/request.h +user.o: ../../winix/core/misc.h who.o: templates.h ../../ezc/src/ezc.h ../../ezc/src/generator.h who.o: ../../ezc/src/pattern.h ../../ezc/src/item.h ../../ezc/src/funinfo.h who.o: ../../ezc/src/functions.h ../../ezc/src/stringconv.h @@ -1182,28 +1596,41 @@ who.o: ../../pikotools/date/date.h ../../pikotools/convert/convert.h who.o: ../../pikotools/convert/inttostr.h who.o: ../../pikotools/membuffer/membuffer.h who.o: ../../pikotools/textstream/types.h htmltextstream.h -who.o: ../core/textstream.h patterncacher.h ../core/item.h indexpatterns.h -who.o: patterns.h changepatterns.h ../core/config.h ../core/htmlfilter.h -who.o: ../core/cur.h ../core/request.h ../core/requesttypes.h ../core/error.h -who.o: ../core/config.h ../core/textstream.h ../templates/htmltextstream.h -who.o: ../../pikotools/space/spacetojson.h ../core/session.h ../core/user.h -who.o: ../core/plugindata.h ../core/rebus.h ../core/ipban.h ../core/mount.h -who.o: ../core/system.h ../core/job.h ../core/basethread.h ../core/synchro.h -who.o: ../core/dirs.h ../core/dircontainer.h ../db/db.h ../db/dbbase.h -who.o: ../db/dbconn.h ../db/dbtextstream.h ../core/error.h -who.o: ../db/dbitemquery.h ../db/dbitemcolumns.h ../core/user.h -who.o: ../core/group.h ../core/dircontainer.h ../core/ugcontainer.h -who.o: ../core/log.h ../core/logmanipulators.h ../core/slog.h ../core/cur.h -who.o: ../templates/locale.h ../notify/notify.h ../notify/notifypool.h -who.o: ../templates/patterns.h ../notify/notifythread.h ../core/basethread.h -who.o: ../notify/templatesnotify.h ../core/users.h ../core/ugcontainer.h -who.o: ../core/lastcontainer.h ../core/mounts.h ../core/mountparser.h -who.o: ../core/crypt.h ../core/run.h ../core/users.h ../core/groups.h -who.o: ../core/group.h ../core/loadavg.h ../core/image.h -who.o: ../core/threadmanager.h ../core/timezones.h ../core/timezone.h -who.o: ../core/sessionmanager.h ../core/sessioncontainer.h -who.o: ../core/ipbancontainer.h ../core/system.h ../core/htmlfilter.h -who.o: ../core/request.h ../core/misc.h +who.o: ../../winix/core/textstream.h patterncacher.h ../../winix/core/item.h +who.o: indexpatterns.h patterns.h changepatterns.h ../../winix/core/config.h +who.o: ../../winix/core/htmlfilter.h ../../winix/core/cur.h +who.o: ../../winix/core/request.h ../../winix/core/requesttypes.h +who.o: ../../winix/core/error.h ../../winix/core/config.h +who.o: ../../winix/core/textstream.h ../../winix/templates/htmltextstream.h +who.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +who.o: ../../winix/core/user.h ../../winix/core/plugindata.h +who.o: ../../winix/core/rebus.h ../../winix/core/ipban.h +who.o: ../../winix/core/mount.h ../../winix/core/system.h +who.o: ../../winix/core/job.h ../../winix/core/basethread.h +who.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +who.o: ../../winix/core/dircontainer.h ../../winix/db/db.h +who.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +who.o: ../../winix/db/dbtextstream.h ../../winix/core/error.h +who.o: ../../winix/db/dbitemquery.h ../../winix/db/dbitemcolumns.h +who.o: ../../winix/core/user.h ../../winix/core/group.h +who.o: ../../winix/core/dircontainer.h ../../winix/core/ugcontainer.h +who.o: ../../winix/core/log.h ../../winix/core/logmanipulators.h +who.o: ../../winix/core/slog.h ../../winix/core/cur.h +who.o: ../../winix/templates/locale.h ../../winix/notify/notify.h +who.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +who.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +who.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +who.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +who.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +who.o: ../../winix/core/crypt.h ../../winix/core/run.h +who.o: ../../winix/core/users.h ../../winix/core/groups.h +who.o: ../../winix/core/group.h ../../winix/core/loadavg.h +who.o: ../../winix/core/image.h ../../winix/core/threadmanager.h +who.o: ../../winix/core/timezones.h ../../winix/core/timezone.h +who.o: ../../winix/core/sessionmanager.h ../../winix/core/sessioncontainer.h +who.o: ../../winix/core/ipbancontainer.h ../../winix/core/system.h +who.o: ../../winix/core/htmlfilter.h ../../winix/core/request.h +who.o: ../../winix/core/misc.h winix.o: templates.h ../../ezc/src/ezc.h ../../ezc/src/generator.h winix.o: ../../ezc/src/pattern.h ../../ezc/src/item.h ../../ezc/src/funinfo.h winix.o: ../../ezc/src/functions.h ../../ezc/src/stringconv.h @@ -1215,44 +1642,65 @@ winix.o: ../../pikotools/space/space.h ../../pikotools/date/date.h winix.o: ../../pikotools/convert/convert.h ../../pikotools/convert/inttostr.h winix.o: ../../pikotools/membuffer/membuffer.h winix.o: ../../pikotools/textstream/types.h htmltextstream.h -winix.o: ../core/textstream.h patterncacher.h ../core/item.h indexpatterns.h -winix.o: patterns.h changepatterns.h ../core/config.h ../core/htmlfilter.h -winix.o: ../core/cur.h ../core/request.h ../core/requesttypes.h -winix.o: ../core/error.h ../core/config.h ../core/textstream.h -winix.o: ../templates/htmltextstream.h ../../pikotools/space/spacetojson.h -winix.o: ../core/session.h ../core/user.h ../core/plugindata.h -winix.o: ../core/rebus.h ../core/ipban.h ../core/mount.h ../core/system.h -winix.o: ../core/job.h ../core/basethread.h ../core/synchro.h ../core/dirs.h -winix.o: ../core/dircontainer.h ../db/db.h ../db/dbbase.h ../db/dbconn.h -winix.o: ../db/dbtextstream.h ../core/error.h ../db/dbitemquery.h -winix.o: ../db/dbitemcolumns.h ../core/user.h ../core/group.h -winix.o: ../core/dircontainer.h ../core/ugcontainer.h ../core/log.h -winix.o: ../core/logmanipulators.h ../core/slog.h ../core/cur.h -winix.o: ../templates/locale.h ../notify/notify.h ../notify/notifypool.h -winix.o: ../templates/patterns.h ../notify/notifythread.h -winix.o: ../core/basethread.h ../notify/templatesnotify.h ../core/users.h -winix.o: ../core/ugcontainer.h ../core/lastcontainer.h ../core/mounts.h -winix.o: ../core/mountparser.h ../core/crypt.h ../core/run.h ../core/users.h -winix.o: ../core/groups.h ../core/group.h ../core/loadavg.h ../core/image.h -winix.o: ../core/threadmanager.h ../core/timezones.h ../core/timezone.h -winix.o: ../core/sessionmanager.h ../core/sessioncontainer.h -winix.o: ../core/ipbancontainer.h ../core/system.h ../core/htmlfilter.h -winix.o: ../core/request.h ../core/plugin.h ../core/pluginmsg.h -winix.o: ../core/sessionmanager.h ../functions/functions.h -winix.o: ../functions/functionbase.h ../core/synchro.h -winix.o: ../functions/functionparser.h ../functions/account.h -winix.o: ../functions/adduser.h ../functions/cat.h ../functions/chmod.h -winix.o: ../functions/privchanger.h ../functions/chown.h -winix.o: ../functions/ckeditor.h ../functions/cp.h ../functions/default.h -winix.o: ../functions/download.h ../functions/emacs.h ../functions/env.h -winix.o: ../functions/imgcrop.h ../functions/last.h ../functions/login.h -winix.o: ../functions/logout.h ../functions/ln.h ../functions/ls.h -winix.o: ../functions/man.h ../functions/meta.h ../functions/mkdir.h -winix.o: ../functions/mv.h ../functions/nicedit.h ../functions/node.h -winix.o: ../functions/passwd.h ../functions/priv.h ../functions/pw.h -winix.o: ../functions/reload.h ../functions/rm.h ../functions/rmuser.h -winix.o: ../functions/sort.h ../functions/specialdefault.h -winix.o: ../functions/stat.h ../functions/subject.h ../functions/template.h -winix.o: ../functions/tinymce.h ../functions/uname.h ../functions/upload.h -winix.o: ../functions/uptime.h ../functions/who.h ../functions/vim.h -winix.o: ../templates/templates.h ../core/misc.h +winix.o: ../../winix/core/textstream.h patterncacher.h +winix.o: ../../winix/core/item.h indexpatterns.h patterns.h changepatterns.h +winix.o: ../../winix/core/config.h ../../winix/core/htmlfilter.h +winix.o: ../../winix/core/cur.h ../../winix/core/request.h +winix.o: ../../winix/core/requesttypes.h ../../winix/core/error.h +winix.o: ../../winix/core/config.h ../../winix/core/textstream.h +winix.o: ../../winix/templates/htmltextstream.h +winix.o: ../../pikotools/space/spacetojson.h ../../winix/core/session.h +winix.o: ../../winix/core/user.h ../../winix/core/plugindata.h +winix.o: ../../winix/core/rebus.h ../../winix/core/ipban.h +winix.o: ../../winix/core/mount.h ../../winix/core/system.h +winix.o: ../../winix/core/job.h ../../winix/core/basethread.h +winix.o: ../../winix/core/synchro.h ../../winix/core/dirs.h +winix.o: ../../winix/core/dircontainer.h ../../winix/db/db.h +winix.o: ../../winix/db/dbbase.h ../../winix/db/dbconn.h +winix.o: ../../winix/db/dbtextstream.h ../../winix/core/error.h +winix.o: ../../winix/db/dbitemquery.h ../../winix/db/dbitemcolumns.h +winix.o: ../../winix/core/user.h ../../winix/core/group.h +winix.o: ../../winix/core/dircontainer.h ../../winix/core/ugcontainer.h +winix.o: ../../winix/core/log.h ../../winix/core/logmanipulators.h +winix.o: ../../winix/core/slog.h ../../winix/core/cur.h +winix.o: ../../winix/templates/locale.h ../../winix/notify/notify.h +winix.o: ../../winix/notify/notifypool.h ../../winix/templates/patterns.h +winix.o: ../../winix/notify/notifythread.h ../../winix/core/basethread.h +winix.o: ../../winix/notify/templatesnotify.h ../../winix/core/users.h +winix.o: ../../winix/core/ugcontainer.h ../../winix/core/lastcontainer.h +winix.o: ../../winix/core/mounts.h ../../winix/core/mountparser.h +winix.o: ../../winix/core/crypt.h ../../winix/core/run.h +winix.o: ../../winix/core/users.h ../../winix/core/groups.h +winix.o: ../../winix/core/group.h ../../winix/core/loadavg.h +winix.o: ../../winix/core/image.h ../../winix/core/threadmanager.h +winix.o: ../../winix/core/timezones.h ../../winix/core/timezone.h +winix.o: ../../winix/core/sessionmanager.h +winix.o: ../../winix/core/sessioncontainer.h +winix.o: ../../winix/core/ipbancontainer.h ../../winix/core/system.h +winix.o: ../../winix/core/htmlfilter.h ../../winix/core/request.h +winix.o: ../../winix/core/plugin.h ../../winix/core/pluginmsg.h +winix.o: ../../winix/core/sessionmanager.h ../../winix/functions/functions.h +winix.o: ../../winix/functions/functionbase.h ../../winix/core/synchro.h +winix.o: ../../winix/functions/functionparser.h +winix.o: ../../winix/functions/account.h ../../winix/functions/adduser.h +winix.o: ../../winix/functions/cat.h ../../winix/functions/chmod.h +winix.o: ../../winix/functions/privchanger.h ../../winix/functions/chown.h +winix.o: ../../winix/functions/ckeditor.h ../../winix/functions/cp.h +winix.o: ../../winix/functions/default.h ../../winix/functions/download.h +winix.o: ../../winix/functions/emacs.h ../../winix/functions/env.h +winix.o: ../../winix/functions/imgcrop.h ../../winix/functions/last.h +winix.o: ../../winix/functions/login.h ../../winix/functions/logout.h +winix.o: ../../winix/functions/ln.h ../../winix/functions/ls.h +winix.o: ../../winix/functions/man.h ../../winix/functions/meta.h +winix.o: ../../winix/functions/mkdir.h ../../winix/functions/mv.h +winix.o: ../../winix/functions/nicedit.h ../../winix/functions/node.h +winix.o: ../../winix/functions/passwd.h ../../winix/functions/priv.h +winix.o: ../../winix/functions/pw.h ../../winix/functions/reload.h +winix.o: ../../winix/functions/rm.h ../../winix/functions/rmuser.h +winix.o: ../../winix/functions/sort.h ../../winix/functions/specialdefault.h +winix.o: ../../winix/functions/stat.h ../../winix/functions/subject.h +winix.o: ../../winix/functions/template.h ../../winix/functions/tinymce.h +winix.o: ../../winix/functions/uname.h ../../winix/functions/upload.h +winix.o: ../../winix/functions/uptime.h ../../winix/functions/who.h +winix.o: ../../winix/functions/vim.h ../../winix/templates/templates.h +winix.o: ../../winix/core/misc.h