Update of /cvsroot/firebird/interbase/builds_win32/original
In directory slayer.i.sourceforge.net:/tmp/cvs-serv583
Modified Files:
make.jrd
Log Message:
Don't copy unused ibeng32.* to the output directory, to avoid confusion.
Index: make.jrd
===================================================================
RCS file: /cvsroot/firebird/interbase/builds_win32/original/make.jrd,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
*** make.jrd 2000/08/03 20:42:53 1.1.1.1
--- make.jrd 2000/12/09 04:45:31 1.2
***************
*** 21,24 ****
--- 21,27 ----
# Note that ibeng32.dll was previously called jrd32.dll, so things that
# refer to jrd are refering to the engine.
+ # Note that ibeng32.dll is a no longer used, since the engine
+ # is statically linked to the server. If you decide to use ibeng32.dll
+ # for something, make sure you know what you are doing.
#
# GDS_FILES = list of JRD files to build the given library
***************
*** 148,152 ****
install_server:
echo "Installing InterBase Server DLLs"
! $(CP) ..\jrd\$(.path.obj)\ibeng32.dll $(INSTALL_ROOT)\bin
$(CP) ..\intl\$(.path.obj)\gdsintl.dll $(INSTALL_ROOT)\intl
$(CP) ..\remote\$(.path.obj)\nt_server.exe $(INSTALL_ROOT)\bin\ibserver.exe
--- 151,155 ----
install_server:
echo "Installing InterBase Server DLLs"
! # $(CP) ..\jrd\$(.path.obj)\ibeng32.dll $(INSTALL_ROOT)\bin
$(CP) ..\intl\$(.path.obj)\gdsintl.dll $(INSTALL_ROOT)\intl
$(CP) ..\remote\$(.path.obj)\nt_server.exe $(INSTALL_ROOT)\bin\ibserver.exe
***************
*** 157,161 ****
!if "$(VERSION)"=="DEV"
$(ECHO) INSTALLING PDB FILES
! $(CP) ..\jrd\$(.path.obj)\ibeng32.pdb $(INSTALL_ROOT)\bin
$(CP) ..\intl\$(.path.obj)\gdsintl.pdb $(INSTALL_ROOT)\intl
$(CP) ..\remote\$(.path.obj)\nt_server.pdb $(INSTALL_ROOT)\bin\ibserver.pdb
--- 160,164 ----
!if "$(VERSION)"=="DEV"
$(ECHO) INSTALLING PDB FILES
! # $(CP) ..\jrd\$(.path.obj)\ibeng32.pdb $(INSTALL_ROOT)\bin
$(CP) ..\intl\$(.path.obj)\gdsintl.pdb $(INSTALL_ROOT)\intl
$(CP) ..\remote\$(.path.obj)\nt_server.pdb $(INSTALL_ROOT)\bin\ibserver.pdb
|