2005-06-12 05:37:05 -04:00
|
|
|
IN: postgresql
|
|
|
|
USING: alien compiler kernel parser sequences words ;
|
|
|
|
|
|
|
|
win32? [
|
|
|
|
! PostgreSQL 7.5 will most likely support windows
|
|
|
|
! "postgresql" "dll" "stdcall" add-library
|
|
|
|
] [
|
|
|
|
"postgresql" "libpq.so" "cdecl" add-library
|
2005-09-27 00:54:53 -04:00
|
|
|
] if
|
2005-06-12 05:37:05 -04:00
|
|
|
|
2005-12-27 00:15:36 -05:00
|
|
|
[
|
|
|
|
"contrib/postgresql/libpq.factor"
|
|
|
|
"contrib/postgresql/postgresql.factor"
|
|
|
|
"contrib/postgresql/postgresql-test.factor"
|
|
|
|
! "contrib/postgresql/private.factor" ! put your password in this file
|
|
|
|
] [ run-file ] each
|
2005-06-12 05:37:05 -04:00
|
|
|
|
|
|
|
"postgresql" words [ try-compile ] each
|
2005-12-27 00:15:36 -05:00
|
|
|
|