[PATCH] itk dll now installed when install-libraries is made

Syd Polk spolk@cygnus.com
Fri Oct 27 16:46:00 GMT 2000


I have commited the following:

This patch is necessary for Source-Navigator. If Insight installation just
installed necessary runtime libraries instead of the full tcl/tk/incrTcl
installation, it would be necessary for it to.

This adds the itk dll to the list of files installed when 
"make install-libraries" is run. Similar to itcl/itcl/win/Makefile.in.
Both of these files are local to this repository.

ChangeLog entry:

2000-10-27  Syd Polk  <spolk@redhat.com>

	* itk/win/Makefile.in: Install itk dll when installing libraries.

Patch:

ndex: itcl/itk/win/Makefile.in
===================================================================
RCS file: /cvs/src/src/itcl/itk/win/Makefile.in,v
retrieving revision 1.2
diff -u -r1.2 Makefile.in
--- Makefile.in	2000/06/08 03:26:01	1.2
+++ Makefile.in	2000/10/27 23:30:59
@@ -372,7 +372,7 @@
 	    $(INSTALL_DATA) $$i $(INSTALL_INCLUDE_DIR); \
 	    done;
 
-install-libraries:
+install-libraries: install-shared-libraries
 	@for i in $(prefix)/lib $(ITK_LIBRARY); \
 	    do \
 	    if [ ! -d $$i ] ; then \
@@ -393,6 +393,10 @@
 
 	@echo "Installing tclIndex"
 	@$(INSTALL_DATA) $(SRC_LIB_DIR)/tclIndex $(ITK_LIBRARY)
+
+install-shared-libraries:
+	@echo "Installing $(ITKDLL) as $(INSTALL_BIN_DIR)/$(ITKDLL)"
+	@$(INSTALL_PROGRAM) $(ITKDLL) $(INSTALL_BIN_DIR)/$(ITKDLL)
 
 install-man:
 	@for i in $(INSTALL_MAN_DIR) $(INSTALL_MAN1_DIR) \



More information about the Gdb-patches mailing list