forked from brmlab/brmelect-github
fix
This commit is contained in:
parent
bfaffa88bd
commit
856c8472d6
3 changed files with 13 additions and 6 deletions
|
|
@ -67,5 +67,11 @@ chicken_install miscmacros
|
||||||
chicken_install cairo
|
chicken_install cairo
|
||||||
chicken_install crypt
|
chicken_install crypt
|
||||||
|
|
||||||
|
# additional from command line [for testing/dev]
|
||||||
|
for i do
|
||||||
|
chicken_install "$i"
|
||||||
|
done
|
||||||
|
|
||||||
|
|
||||||
# Normal termination cleanup
|
# Normal termination cleanup
|
||||||
chicken_cleanup
|
chicken_cleanup
|
||||||
|
|
|
||||||
7
prepare.sh
Normal file
7
prepare.sh
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
apt source libpq-dev
|
||||||
|
cd postgresql-[0-9]*/
|
||||||
|
./configure --without-readline --with-openssl
|
||||||
|
make -C src/common/ && make -C src/port && make -C src/interfaces/libpq/
|
||||||
|
cp src/common/libpgcommon.a src/port/libpgport.a src/interfaces/libpq/libpq.a ..
|
||||||
|
|
@ -30,12 +30,6 @@
|
||||||
;(define *cached-brmelect-db* (make-parameter #f))
|
;(define *cached-brmelect-db* (make-parameter #f))
|
||||||
;(define =brmelect-db-path= "/home/brmelect/brmelect/brmelect.sqlite3")
|
;(define =brmelect-db-path= "/home/brmelect/brmelect/brmelect.sqlite3")
|
||||||
|
|
||||||
(define db
|
|
||||||
(connect
|
|
||||||
database: "brmelect"
|
|
||||||
user: "brmelect"
|
|
||||||
password: "brm"
|
|
||||||
host: "localhost"))
|
|
||||||
(define db
|
(define db
|
||||||
(connect
|
(connect
|
||||||
'((dbname . "brmelect")
|
'((dbname . "brmelect")
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue