Slony under win32
Andreas Pflug <[email protected]>
| Newsgroups | gmane.comp.db.postgresql.devel.win32 |
|---|---|
| Message-ID | <[email protected]> |
I created new makefiles for slony_funcs and xxid using the contrib
infrastructure, which makes them win32 compatible. IMHO the attached
versions should replace the current ones.
After some short tests, Slony-q 1.0.5 seems to be able to replicate with
win32 servers using those modules correctly.
The slon process currently refuses to link, the thread lib seems to be
the problem.
Apparently slonik uses fork(), which would make porting it much more
expensive. I won't spent more time on that, pgAdmin will do that anyway.
Regards,
Andreas
---------------------------(end of broadcast)---------------------------
TIP 9: the planner will ignore your desire to choose an index scan if your
joining column's datatypes do not match
Makefile.backend
(text/plain, 317 B)
MODULES=slony1_funcs slony_subdir = src/slony1_funcs slony_top_builddir = ../.. include $(slony_top_builddir)/Makefile.global CFLAGS += -I$(slony_top_builddir) ifdef USE_PGXS PGXS = $(shell pg_config --pgxs) include $(PGXS) else top_builddir = $(PGSOURCETREE) include $(PGSOURCETREE)/contrib/contrib-global.mk endif
Makefile.xxid
(text/plain, 267 B)
MODULES=xxid slony_subdir = src/xxid slony_top_builddir = ../.. include $(slony_top_builddir)/Makefile.global ifdef USE_PGXS PGXS = $(shell pg_config --pgxs) include $(PGXS) else top_builddir = $(PGSOURCETREE) include $(PGSOURCETREE)/contrib/contrib-global.mk endif