* contrib/tip/Makefile
* contrib/tip/makefile.bc
+ contrib/tip/makefile.vc
+ contrib/tip/make_vc.bat
* contrib/tip/tip.ch
* contrib/tip/utils.c
* contrib/tip/base64x.c
* contrib/tip/encmthd.c
- contrib/tip/hbhex2n.c
* contrib/tip/cgi.prg
* contrib/tip/client.prg
* contrib/tip/ftpcln.prg
* contrib/tip/httpcln.prg
* contrib/tip/mail.prg
* contrib/tip/thtml.prg
* contrib/tip/url.prg
+ Code converted to not require xhb lib.
% Now compiled with -kM switch to avoid macro expansion
of strings. This is important here, as "&" char is used
quite often in the code, so expect a somewhat better
performance.
- Removed hex number conversion functions, as compatible
versions are now available in Harbour with am hb_ prefix.
+ C code update to use Harbour API calls only.
+ Added VC build script.
! Fixed two C warnings.
! Standardized SVN header in one file.
! Set std SVN keywords and eol-style.
; Please test it.
* include/hbextern.ch
* source/rtl/hbinet.c
* contrib/xhb/xhb.ch
* contrib/xhb/xhbfunc.c
* Renamed hb_IsInetSocket() to hb_inetIsSocket() to
keep all inet related functions in one namespace.
31 lines
335 B
Makefile
31 lines
335 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ROOT = ../../
|
|
|
|
C_SOURCES = \
|
|
base64x.c \
|
|
encmthd.c \
|
|
utils.c \
|
|
|
|
PRG_SOURCES= \
|
|
popcln.prg \
|
|
credent.prg \
|
|
encoder.prg \
|
|
encb64.prg \
|
|
encqp.prg \
|
|
encurl.prg \
|
|
url.prg \
|
|
client.prg \
|
|
ftpcln.prg \
|
|
smtpcln.prg \
|
|
httpcln.prg \
|
|
mail.prg \
|
|
cgi.prg \
|
|
thtml.prg \
|
|
|
|
LIBNAME=tip
|
|
|
|
include $(TOP)$(ROOT)config/lib.cf
|