mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-18 19:59:26 +02:00
![]() ------------------------------------------------------------------------ r48814 | pierre | 2021-02-26 17:15:30 +0000 (Fri, 26 Feb 2021) | 1 line Do not add libgcc directory to library directories with -Fl option if -Xd option is used ------------------------------------------------------------------------ ------------------------------------------------------------------------ r42843 | pierre | 2019-08-26 21:41:41 +0000 (Mon, 26 Aug 2019) | 1 line Partial update for go32v2 and sources ------------------------------------------------------------------------ --- Merging r44112 into '.': G installer/install.dat --- Recording mergeinfo for merge of r44112 into '.': G . ------------------------------------------------------------------------ r48836 | hajny | 2021-02-28 02:08:17 +0000 (Sun, 28 Feb 2021) | 1 line * package tplylib added, corrections for more than 31 items on a tab ------------------------------------------------------------------------ --- Merging r48836 into '.': G installer/install.dat --- Recording mergeinfo for merge of r48836 into '.': G . ------------------------------------------------------------------------ r49035 | pierre | 2021-03-22 23:26:26 +0000 (Mon, 22 Mar 2021) | 1 line Try to fix short package name issues in install.dat and add missing go32v2 packages ------------------------------------------------------------------------ --- Merging r49035 into '.': G installer/install.dat --- Recording mergeinfo for merge of r49035 into '.': G . git-svn-id: branches/fixes_3_2@49041 - |
||
---|---|---|
.. | ||
examples | ||
src | ||
fpmake.pp | ||
Makefile | ||
Makefile.fpc | ||
Makefile.fpc.fpcmake | ||
README.txt |
This package contains an interface unit to the libSEE library. SEE = Simple ECMAScript Engine libSEE is a library that executes Javascript code, and is written by David Leonard. The library itself must be obtained separately from http://www.adaptive-enterprises.com.au/~d/software/see/ The library tarball contains installation instructions. Make sure you compile it with Garbage collection. the libsee unit was generated from the header files of version 3.1 of libsee. Note that all type names have been prepended with T. That means that the C struct SEE_interpreter becomes TSEE_interpreter in pascal. The examples directory contains some examples of what can be done with libsee, including how to integrate Object Pascal objects in the Javascript runtime environment. Enjoy, Michael.