219 | | 1. ''./configure --prefix=/c/postgres --enable-shared --disable-static && make && make install'' |
220 | | 2. gcc -shared -o libproj.dll -Wl,--out-implib=libproj.dll.a -Wl,--export-all-symbols -Wl,--enable-auto-import -Wl,--whole-archive libproj.a -Wl,--no-whole-archive /c/mingw/lib/libmingw32.a |
| 219 | 1. ''./configure --prefix=/c/postgres --enable-shared --disable-static ' |
| 220 | 2. ''make && make install'' |
| 221 | --Make the libproj.dll and make it dynamically linked |
| 222 | 3. cd /c/postgres |
| 223 | 4. gcc -shared -s -o libproj.dll -lm -Wl,--out-implib,libproj.a *.o |
| 224 | 5. gcc -shared -o libproj.dll -Wl,--out-implib=libproj.dll.a -Wl,--export-all-symbols -Wl,--enable-auto-import -Wl,--whole-archive libproj.a -Wl,--no-whole-archive /c/mingw/lib/libmingw32.a |