2011-02-07 22:46 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)

* src/3rd/zlib/Makefile
    ! Fixed pocc64 related change in 2011-02-01 16:59 UTC+0100 Viktor Szakats
      Which broke zlib in harbour dll on all win platforms.

      Unfortunately pocc64 is broken (6.5 even) due to bugs in the compiler,
      so I _very strongly suggest_ to take out pocc64 from tests,
      but at least not use HB_BUILD_CONTRIB_DYN=yes, when building
      it.

  * src/rtl/base64d.c
    * Copyright header tweak.
This commit is contained in:
Viktor Szakats
2011-02-07 21:46:30 +00:00
parent 61d88fdca7
commit cae0a25d90
3 changed files with 21 additions and 7 deletions

View File

@@ -16,11 +16,24 @@
The license applies to all entries newer than 2009-04-28.
*/
2011-02-07 22:46 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* src/3rd/zlib/Makefile
! Fixed pocc64 related change in 2011-02-01 16:59 UTC+0100 Viktor Szakats
Which broke zlib in harbour dll on all win platforms.
Unfortunately pocc64 is broken (6.5 even) due to bugs in the compiler,
so I _very strongly suggest_ to take out pocc64 from tests,
but at least not use HB_BUILD_CONTRIB_DYN=yes, when building
it.
* src/rtl/base64d.c
* Copyright header tweak.
2011-02-07 13:29 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbnetio/utils/hbnetioq/netiosrq.prg
! Ebnabled to get information from netiosrv daemon.
Currently only connections info. Time interva to refresh
browser is 10 seconds currently. Still a lot to be
Currently only connections info. Time interva to refresh
browser is 10 seconds currently. Still a lot to be
implemented based on latest features of netiosrv daemon.
A work-in-progress.

View File

@@ -11,6 +11,11 @@ LIBNAME := hbzlib
HB_BUILD_WARN := no
HB_BUILD_MODE := c
# Ugly workaround to avoid fatal error when building for pocc64 (6.x)
ifneq ($(HB_COMPILER),pocc64)
HB_CFLAGS_DYN := -DZLIB_DLL
endif
C_SOURCES := \
adler32.c \
compress.c \
@@ -33,9 +38,6 @@ ifneq ($(HB_HAS_ZLIB_LOCAL),)
ifneq ($(filter $(HB_COMPILER),mingw mingw64 mingwarm cygwin djgpp),)
HB_CFLAGS += -DNO_VIZ
endif
ifeq ($(HB_COMPILER),bcc)
HB_CFLAGS_DYN += -DZLIB_DLL -DZLIB_INTERNAL
endif
include $(TOP)$(ROOT)config/lib.mk
else
HB_SKIP_REASON := unused

View File

@@ -7,11 +7,10 @@
* HB_BASE64DECODE() function
*
* Copyright 2011 Viktor Szakats (harbour.01 syenar.hu)
* www - http://harbour-project.org
*
* [ base64_decode_* functions are part of the libb64 project, and has
* been placed in the public domain. Author: Chris Venter
* For details, see http://sourceforge.net/projects/libb64 ]
* www - http://harbour-project.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by