Subject | Win32 Interserver Build |
---|---|
Author | Ken Richard |
Post date | 2001-02-01T21:12:04Z |
Is there someone around who can update the cvs for interserver? The
following change is needed to compile interserver with msvc and the provided
makefiles.
Index: Window.cpp
===================================================================
RCS file: /cvsroot/firebird/interclient/20/dev/interserver/Window.cpp,v
retrieving revision 1.1.1.1
diff -r1.1.1.1 Window.cpp
278c278
< hIcon = LoadImage(hInstance,
---
< PostMessage(hWnd, WM_DESTROY, 0, 0);
---
isconfig.exe? I don't have delphi and don't want to build it.
Index: make.sh
===================================================================
RCS file: /cvsroot/firebird/interclient/20/dev/firebird/make.sh,v
retrieving revision 1.1
diff -r1.1 make.sh
145,146c145,149
< if make -DDELPHI -fMakefile.w32 isconfig.exe
< then : ; else exit 1 ; fi
---
following change is needed to compile interserver with msvc and the provided
makefiles.
Index: Window.cpp
===================================================================
RCS file: /cvsroot/firebird/interclient/20/dev/interserver/Window.cpp,v
retrieving revision 1.1.1.1
diff -r1.1.1.1 Window.cpp
278c278
< hIcon = LoadImage(hInstance,
---
> hIcon = (HICON)LoadImage(hInstance,375c375
< PostMessage(hWnd, WM_DESTROY, 0, 0);
---
> PostMessage((HWND)hWnd, WM_DESTROY, 0, 0);Additionally - can add a condition to firebird/make.sh that skips
isconfig.exe? I don't have delphi and don't want to build it.
Index: make.sh
===================================================================
RCS file: /cvsroot/firebird/interclient/20/dev/firebird/make.sh,v
retrieving revision 1.1
diff -r1.1 make.sh
145,146c145,149
< if make -DDELPHI -fMakefile.w32 isconfig.exe
< then : ; else exit 1 ; fi
---
> if [ ! $IC_SKIP_ISCONFIG ]
> then
> if make -DDELPHI -fMakefile.w32 isconfig.exe
> then : ; else exit 1 ; fi
> fi