gambas-source-code/Makefile.am
Benoît Minisini 41b6a93cef [EXAMPLES]
* BUG: Fix Embedded window layout.

[INTERPRETER]
* NEW: The '-H' option now runs the interpreted program as a CGI script
  through an embedded HTTP server.

[GB.HTTPD]
* NEW: New hidden component that embeds an HTTP server that runs the 
  project as a CGI script. It is activated by a new interpreter option.
  Warning! This is highly experimental. The HTTP server is based on the
  thttpd source code.

[GB.WEB]
* BUG: As the _init static class is always executed at startup for exported
  classes, delay the intialization of Session class the first time one of 
  its properties is used.
* BUG: If the SCRIPT_NAME CGI variable equals nothing or "/", set it to 
  "/." so that it can be concatenated to any path and still gives a valid
  url.
* BUG: Support for explicit URL ports.
* NEW: Application.Port is a new property that returns the port used by the 
  HTTP request.


git-svn-id: svn://localhost/gambas/trunk@5209 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2012-09-27 20:52:08 +00:00

55 lines
1.1 KiB
Makefile

SUBDIRS = \
main \
@bzlib2_dir@ \
@zlib_dir@ \
@mysql_dir@ \
@odbc_dir@ \
@postgresql_dir@ \
@sqlite2_dir@ \
@sqlite3_dir@ \
@net_dir@ \
@curl_dir@ \
@smtp_dir@ \
@mime_dir@ \
@pcre_dir@ \
@sdl_dir@ \
@sdlsound_dir@ \
@libxml_dir@ \
@xml_dir@ \
@v4l_dir@ \
@crypt_dir@ \
@qt4_dir@ \
@gtk_dir@ \
@opengl_dir@ \
@desktop_dir@ \
@pdf_dir@ \
@cairo_dir@ \
@imageio_dir@ \
@imageimlib_dir@ \
@dbus_dir@ \
@gsl_dir@ \
@ncurses_dir@ \
@media_dir@ \
@jit_dir@ \
@httpd_dir@ \
comp \
app \
examples \
.
EXTRA_DIST = component.am README README.*[^~] TODO TEMPLATE reconf reconf-all
am__tar = ${AMTAR} cof - "$$tardir"
install-exec-local:
@if test -s $(srcdir)/warnings.log; then \
echo ; \
echo "||" ; \
cat $(srcdir)/warnings.log ; \
echo "||" ; \
echo ; \
fi
@rm -f $(srcdir)/warnings.log
dist-hook:
@(cd $(distdir); rm -rf `find . -name ".gambas" -o -name ".lock" -o -name ".xvpics" -o -name "*~" -o -name "*.out" -o -name "*.pot" -o -name "*.gambas" -o -name "core.*" -o -name "vgcore.*" -o -name ".kdbg*" -o -name ".svn"`;)