* regenrated fpmake includes

git-svn-id: trunk@14098 -
This commit is contained in:
ivost 2009-11-07 13:04:34 +00:00
parent 70909d60d0
commit a2ca16be91
2 changed files with 44 additions and 0 deletions

View File

@ -8,9 +8,11 @@
add_chm; add_chm;
add_dbus; add_dbus;
add_dts; add_dts;
add_fastcgi;
add_fcl_async; add_fcl_async;
add_fcl_base; add_fcl_base;
add_fcl_db; add_fcl_db;
add_fcl_extra;
add_fcl_fpcunit; add_fcl_fpcunit;
add_fcl_image; add_fcl_image;
add_fcl_json; add_fcl_json;
@ -24,6 +26,7 @@
add_fftw; add_fftw;
add_fpgtk; add_fpgtk;
add_fpmkunit; add_fpmkunit;
add_fpvectorial;
add_fv; add_fv;
add_gdbint; add_gdbint;
add_gdbm; add_gdbm;
@ -48,6 +51,7 @@
add_libgd; add_libgd;
add_libndsfpc; add_libndsfpc;
add_libpng; add_libpng;
add_librsvg;
add_libxml; add_libxml;
add_lua; add_lua;
add_mad; add_mad;
@ -57,6 +61,7 @@
add_ncurses; add_ncurses;
add_newt; add_newt;
add_numlib; add_numlib;
add_objcrtl;
add_odbc; add_odbc;
add_oggvorbis; add_oggvorbis;
add_openal; add_openal;
@ -69,6 +74,7 @@
add_paszlib; add_paszlib;
add_pcap; add_pcap;
add_postgres; add_postgres;
add_proj4;
add_ptc; add_ptc;
add_pthreads; add_pthreads;
add_pxlib; add_pxlib;
@ -92,3 +98,4 @@
add_x11; add_x11;
add_xforms; add_xforms;
add_zlib; add_zlib;
add_zorba;

View File

@ -58,6 +58,12 @@ begin
{$include dts/fpmake.pp} {$include dts/fpmake.pp}
end; end;
procedure add_fastcgi;
begin
with Installer do
{$include fastcgi/fpmake.pp}
end;
procedure add_fcl_async; procedure add_fcl_async;
begin begin
with Installer do with Installer do
@ -76,6 +82,12 @@ begin
{$include fcl-db/fpmake.pp} {$include fcl-db/fpmake.pp}
end; end;
procedure add_fcl_extra;
begin
with Installer do
{$include fcl-extra/fpmake.pp}
end;
procedure add_fcl_fpcunit; procedure add_fcl_fpcunit;
begin begin
with Installer do with Installer do
@ -154,6 +166,12 @@ begin
{$include fpmkunit/fpmake.pp} {$include fpmkunit/fpmake.pp}
end; end;
procedure add_fpvectorial;
begin
with Installer do
{$include fpvectorial/fpmake.pp}
end;
procedure add_fv; procedure add_fv;
begin begin
with Installer do with Installer do
@ -298,6 +316,12 @@ begin
{$include libpng/fpmake.pp} {$include libpng/fpmake.pp}
end; end;
procedure add_librsvg;
begin
with Installer do
{$include librsvg/fpmake.pp}
end;
procedure add_libxml; procedure add_libxml;
begin begin
with Installer do with Installer do
@ -352,6 +376,12 @@ begin
{$include numlib/fpmake.pp} {$include numlib/fpmake.pp}
end; end;
procedure add_objcrtl;
begin
with Installer do
{$include objcrtl/fpmake.pp}
end;
procedure add_odbc; procedure add_odbc;
begin begin
with Installer do with Installer do
@ -424,6 +454,12 @@ begin
{$include postgres/fpmake.pp} {$include postgres/fpmake.pp}
end; end;
procedure add_proj4;
begin
with Installer do
{$include proj4/fpmake.pp}
end;
procedure add_ptc; procedure add_ptc;
begin begin
with Installer do with Installer do
@ -567,3 +603,4 @@ begin
with Installer do with Installer do
{$include zorba/fpmake.pp} {$include zorba/fpmake.pp}
end; end;