diff options
author | jonas <jonas@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2012-03-30 09:54:40 +0000 |
---|---|---|
committer | jonas <jonas@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2012-03-30 09:54:40 +0000 |
commit | 52885eb733a0136b0bd895e9e2c563a3c986944a (patch) | |
tree | d3377d8c34552d0a59fdcbd753907f062f3dddda /packages/fpindexer | |
parent | d1f7df97e8b832da99c580f60a747ebeb37af3a5 (diff) | |
download | fpc-52885eb733a0136b0bd895e9e2c563a3c986944a.tar.gz |
- removed solaris from the SqliteOSes, because ibconnection is not
compiled for that target (which is unrelated to SQLite, but that
set is also used to determine whether or not to compile fbindexdb,
which depends on that unit -- please fix the dependencies properly
when adding new units)
git-svn-id: http://svn.freepascal.org/svn/fpc/trunk@20668 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'packages/fpindexer')
-rw-r--r-- | packages/fpindexer/fpmake.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/fpindexer/fpmake.pp b/packages/fpindexer/fpmake.pp index aff538dedf..39a4d00ee9 100644 --- a/packages/fpindexer/fpmake.pp +++ b/packages/fpindexer/fpmake.pp @@ -8,7 +8,7 @@ uses fpmkunit; procedure add_fpindexer; Const SqldbConnectionOSes = [beos,linux,freebsd,win32,win64,wince,darwin,iphonesim,netbsd,openbsd]; - SqliteOSes = [beos,haiku,linux,freebsd,darwin,iphonesim,solaris,netbsd,openbsd,win32,wince]; + SqliteOSes = [beos,haiku,linux,freebsd,darwin,iphonesim,netbsd,openbsd,win32,wince]; Var T : TTarget; |