blob: 422fb48ca28227c4ac88257ee7f50615f702e167 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
#!/bin/sh
msg(){
echo "
================== ** Postgis Upgrade Notice ** ====================
If you are a user from old versions of Postgis (1.0.0-RC5 or older),
stop now and read the README.postgis file located in port's files
directory to know how to make a dump from your databases !
If you need to backup your data, press CTRL-C now !
======================= GEOS Support Notice ========================
In order to use the GEOS support, you may need to specially compile
your version of PostgreSQL to link the C++ runtime library.
To do this, invoke the PostgreSQL Makefile script this way:
on csh shell:
setenv LDFLAGS -lstdc++
make
on sh or bash shell:
export LDFLAGS=-lstdc++
make
The initial LDFLAGS variable is passed through to the Makefile and
adds the C++ library to the linking stage.
====================================================================
"
sleep 10
}
case "$2" in
"PRE-INSTALL")
msg
;;
"MESSAGE")
msg
;;
esac
|