Index: doc/src/sgml/installation.sgml
===================================================================
RCS file: /cvsroot/pgsql-server/doc/src/sgml/installation.sgml,v
retrieving revision 1.202
diff -c -c -r1.202 installation.sgml
*** doc/src/sgml/installation.sgml 23 May 2004 15:13:43 -0000 1.202
--- doc/src/sgml/installation.sgml 19 Jun 2004 05:12:09 -0000
***************
*** 1073,1078 ****
--- 1073,1091 ----
+ Registering eventlog> on Windows>:
+
+ To register a Windows> eventlog>
+ library with the operating system, issue this command after installation:
+
+ regsvr32 pgsql_library_directory>/pgevent.dll>
+
+ This creates registry entries used by the event viewer.
+
+
+
+
Uninstallation:
To undo the installation use the command gmake
Index: src/bin/Makefile
===================================================================
RCS file: /cvsroot/pgsql-server/src/bin/Makefile,v
retrieving revision 1.44
diff -c -c -r1.44 Makefile
*** src/bin/Makefile 18 Jun 2004 21:24:05 -0000 1.44
--- src/bin/Makefile 19 Jun 2004 05:12:11 -0000
***************
*** 15,20 ****
--- 15,23 ----
DIRS := initdb ipcclean pg_ctl pg_dump \
psql scripts pg_config pg_controldata pg_resetxlog
+ ifeq ($(PORTNAME), win32)
+ DIRS+=pgevent
+ endif
all install installdirs uninstall depend distprep:
@for dir in $(DIRS); do $(MAKE) -C $$dir $@ || exit; done