2011-02-05 12:51 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* contrib/hbmxml/hbmxml.hbp
- contrib/hbmxml/hbmxml.c
+ contrib/hbmxml/core.c
- contrib/hbmxml/hbmxmlp.prg
+ contrib/hbmxml/format.prg
- contrib/hbmxml/hbmxmlx.prg
* contrib/hblzf/hblzf.hbp
- contrib/hblzf/hblzf.c
+ contrib/hblzf/core.c
- contrib/hblzf/hblzfx.prg
* contrib/hbxdiff/hbxdiff.hbp
- contrib/hbxdiff/hbxdiff.c
+ contrib/hbxdiff/core.c
- contrib/hbxdiff/hbxdiffx.prg
* contrib/hbexpat/hbexpat.hbp
* contrib/hbexpat/hbexpat.hbx
- contrib/hbexpat/hbexpat.c
+ contrib/hbexpat/core.c
- contrib/hbexpat/hbexpatc.c
+ contrib/hbexpat/internal.c
- contrib/hbexpat/hbexpatp.prg
+ contrib/hbexpat/unitable.prg
- contrib/hbexpat/hbexpatx.prg
* Renamed sources.
% Optimized to use .hbx files directly without extra puller source.
* contrib/hblzf/core.c
! Fixed dependence on <errno.h> which broke certain targets,
f.e. msvcarm. BTW errnos are not set by lzf lib anyways,
due to default configuration.
! Fixed to always set 3rd parameter in HB_LZF_DECOMPRESS().
Pls review.
* contrib/hblzf/3rd/liblzf/lzf.hbp
- Deleted commented line.
This commit is contained in:
@@ -16,6 +16,43 @@
|
||||
The license applies to all entries newer than 2009-04-28.
|
||||
*/
|
||||
|
||||
2011-02-05 12:51 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
|
||||
* contrib/hbmxml/hbmxml.hbp
|
||||
- contrib/hbmxml/hbmxml.c
|
||||
+ contrib/hbmxml/core.c
|
||||
- contrib/hbmxml/hbmxmlp.prg
|
||||
+ contrib/hbmxml/format.prg
|
||||
- contrib/hbmxml/hbmxmlx.prg
|
||||
* contrib/hblzf/hblzf.hbp
|
||||
- contrib/hblzf/hblzf.c
|
||||
+ contrib/hblzf/core.c
|
||||
- contrib/hblzf/hblzfx.prg
|
||||
* contrib/hbxdiff/hbxdiff.hbp
|
||||
- contrib/hbxdiff/hbxdiff.c
|
||||
+ contrib/hbxdiff/core.c
|
||||
- contrib/hbxdiff/hbxdiffx.prg
|
||||
* contrib/hbexpat/hbexpat.hbp
|
||||
* contrib/hbexpat/hbexpat.hbx
|
||||
- contrib/hbexpat/hbexpat.c
|
||||
+ contrib/hbexpat/core.c
|
||||
- contrib/hbexpat/hbexpatc.c
|
||||
+ contrib/hbexpat/internal.c
|
||||
- contrib/hbexpat/hbexpatp.prg
|
||||
+ contrib/hbexpat/unitable.prg
|
||||
- contrib/hbexpat/hbexpatx.prg
|
||||
* Renamed sources.
|
||||
% Optimized to use .hbx files directly without extra puller source.
|
||||
|
||||
* contrib/hblzf/core.c
|
||||
! Fixed dependence on <errno.h> which broke certain targets,
|
||||
f.e. msvcarm. BTW errnos are not set by lzf lib anyways,
|
||||
due to default configuration.
|
||||
! Fixed to always set 3rd parameter in HB_LZF_DECOMPRESS().
|
||||
Pls review.
|
||||
|
||||
* contrib/hblzf/3rd/liblzf/lzf.hbp
|
||||
- Deleted commented line.
|
||||
|
||||
2011-02-05 11:31 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
|
||||
* contrib/hbmzip/hbmzip.hbp
|
||||
+ contrib/hbmzip/hbmzip.hbx
|
||||
@@ -3284,7 +3321,7 @@
|
||||
! Added HB_ prefix to locally rolled macros.
|
||||
+ Moved locally rolled macros to separate .ch file.
|
||||
! Fixed test to use hblzf.ch instead of repeating macro definitions.
|
||||
; TOFIX: errno.h. Replace with HB_LZF_* values?
|
||||
; TOFIX: errno.h. Replace with HB_LZF_* values? [DONE]
|
||||
|
||||
* tests/wvtext.prg
|
||||
! Fixed -w3 warnings.
|
||||
|
||||
@@ -21,9 +21,10 @@
|
||||
|
||||
-cflag=-DXML_STATIC
|
||||
|
||||
hbexpat.c
|
||||
hbexpatc.c
|
||||
hbexpatp.prg
|
||||
hbexpatx.prg
|
||||
hbexpat.hbx
|
||||
|
||||
core.c
|
||||
internal.c
|
||||
unitable.prg
|
||||
|
||||
3rd/expat/expat.hbc{HBMK_HAS_EXPAT_LOCAL}
|
||||
|
||||
@@ -28,6 +28,7 @@
|
||||
|
||||
DYNAMIC HB_XML_EXPATVERSIONINFO
|
||||
DYNAMIC HB_XML_GET_UNICODE_TABLE
|
||||
DYNAMIC HB_XML_GET_UNICODE_TABLE
|
||||
DYNAMIC XML_DEFAULTCURRENT
|
||||
DYNAMIC XML_ERRORSTRING
|
||||
DYNAMIC XML_EXPATVERSION
|
||||
@@ -78,6 +79,7 @@ DYNAMIC XML_SETXMLDECLHANDLER
|
||||
DYNAMIC XML_STOPPARSER
|
||||
DYNAMIC XML_USEFOREIGNDTD
|
||||
DYNAMIC __HB_XML_CDPU16MAP
|
||||
DYNAMIC __HB_XML_CDPU16MAP
|
||||
|
||||
#if defined( __HBEXTREQ__ ) .OR. defined( __HBEXTERN__HBEXPAT__REQUEST )
|
||||
#uncommand DYNAMIC <fncs,...> => EXTERNAL <fncs>
|
||||
|
||||
@@ -1,54 +0,0 @@
|
||||
/*
|
||||
* $Id$
|
||||
*/
|
||||
|
||||
/*
|
||||
* Harbour Project source code:
|
||||
* extern puller
|
||||
*
|
||||
* Copyright 2010 Viktor Szakats (harbour.01 syenar.hu)
|
||||
* 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
|
||||
* the Free Software Foundation; either version 2, or (at your option)
|
||||
* any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this software; see the file COPYING. If not, write to
|
||||
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
||||
* Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
|
||||
*
|
||||
* As a special exception, the Harbour Project gives permission for
|
||||
* additional uses of the text contained in its release of Harbour.
|
||||
*
|
||||
* The exception is that, if you link the Harbour libraries with other
|
||||
* files to produce an executable, this does not by itself cause the
|
||||
* resulting executable to be covered by the GNU General Public License.
|
||||
* Your use of that executable is in no way restricted on account of
|
||||
* linking the Harbour library code into it.
|
||||
*
|
||||
* This exception does not however invalidate any other reasons why
|
||||
* the executable file might be covered by the GNU General Public License.
|
||||
*
|
||||
* This exception applies only to the code released by the Harbour
|
||||
* Project under the name Harbour. If you copy code from other
|
||||
* Harbour Project or Free Software Foundation releases into a copy of
|
||||
* Harbour, as the General Public License permits, the exception does
|
||||
* not apply to the code that you add in this way. To avoid misleading
|
||||
* anyone as to the status of such modified files, you must delete
|
||||
* this exception notice from them.
|
||||
*
|
||||
* If you write modifications of your own for Harbour, it is your choice
|
||||
* whether to permit this exception to apply to your modifications.
|
||||
* If you do not wish that, delete this exception notice.
|
||||
*
|
||||
*/
|
||||
|
||||
#define __HBEXTREQ__
|
||||
#include "hbexpat.hbx"
|
||||
@@ -2,8 +2,6 @@
|
||||
# $Id$
|
||||
#
|
||||
|
||||
#-stop
|
||||
|
||||
-hblib
|
||||
-inc
|
||||
|
||||
@@ -26,8 +24,8 @@ lzf_d.c
|
||||
# MAP LICENSE
|
||||
# MAP Changes
|
||||
# MAP README
|
||||
# MAP crc32.h
|
||||
# MAP lzf.h
|
||||
# MAP crc32.h
|
||||
# MAP lzf.h
|
||||
# MAP lzf_c.c
|
||||
# MAP lzf_d.c
|
||||
# MAP lzfP.h
|
||||
|
||||
@@ -50,9 +50,6 @@
|
||||
*
|
||||
*/
|
||||
|
||||
/* TOFIX: Some platforms don't have this. Build breaker. */
|
||||
#include <errno.h>
|
||||
|
||||
#include "hbapi.h"
|
||||
#include "hbapierr.h"
|
||||
#include "hbapiitm.h"
|
||||
@@ -60,6 +57,10 @@
|
||||
#include "lzf.h"
|
||||
#include "lzfP.h"
|
||||
|
||||
#if ! defined( AVOID_ERRNO )
|
||||
# include <errno.h>
|
||||
#endif
|
||||
|
||||
#include "hblzf.ch"
|
||||
|
||||
static HB_SIZE hb_lzf_compressbound( HB_SIZE nLen )
|
||||
@@ -200,12 +201,20 @@ HB_FUNC( HB_LZF_DECOMPRESS )
|
||||
|
||||
uiResult = lzf_decompress( in_data, in_len, buffer, buffer_size );
|
||||
}
|
||||
while( uiResult == 0 && errno == E2BIG );
|
||||
while( uiResult == 0
|
||||
#if ! defined( AVOID_ERRNO )
|
||||
&& errno == E2BIG
|
||||
#endif
|
||||
);
|
||||
|
||||
if( uiResult == 0 )
|
||||
{
|
||||
#if ! defined( AVOID_ERRNO )
|
||||
if( errno == EINVAL )
|
||||
hb_storni( HB_LZF_DATA_CORRUPTED, 3 );
|
||||
else
|
||||
#endif
|
||||
hb_storni( HB_LZF_OK, 3 );
|
||||
|
||||
if( ! pBuffer )
|
||||
hb_xfree( buffer );
|
||||
@@ -19,7 +19,8 @@
|
||||
-instfile=inc:hblzf.ch
|
||||
-instfile=inc:hblzf.hbx
|
||||
|
||||
hblzf.c
|
||||
hblzfx.prg
|
||||
hblzf.hbx
|
||||
|
||||
core.c
|
||||
|
||||
3rd/liblzf/lzf.hbc{HBMK_HAS_LZF_LOCAL}
|
||||
|
||||
@@ -1,54 +0,0 @@
|
||||
/*
|
||||
* $Id$
|
||||
*/
|
||||
|
||||
/*
|
||||
* Harbour Project source code:
|
||||
* extern puller
|
||||
*
|
||||
* Copyright 2011 Viktor Szakats (harbour.01 syenar.hu)
|
||||
* 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
|
||||
* the Free Software Foundation; either version 2, or (at your option)
|
||||
* any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this software; see the file COPYING. If not, write to
|
||||
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
||||
* Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
|
||||
*
|
||||
* As a special exception, the Harbour Project gives permission for
|
||||
* additional uses of the text contained in its release of Harbour.
|
||||
*
|
||||
* The exception is that, if you link the Harbour libraries with other
|
||||
* files to produce an executable, this does not by itself cause the
|
||||
* resulting executable to be covered by the GNU General Public License.
|
||||
* Your use of that executable is in no way restricted on account of
|
||||
* linking the Harbour library code into it.
|
||||
*
|
||||
* This exception does not however invalidate any other reasons why
|
||||
* the executable file might be covered by the GNU General Public License.
|
||||
*
|
||||
* This exception applies only to the code released by the Harbour
|
||||
* Project under the name Harbour. If you copy code from other
|
||||
* Harbour Project or Free Software Foundation releases into a copy of
|
||||
* Harbour, as the General Public License permits, the exception does
|
||||
* not apply to the code that you add in this way. To avoid misleading
|
||||
* anyone as to the status of such modified files, you must delete
|
||||
* this exception notice from them.
|
||||
*
|
||||
* If you write modifications of your own for Harbour, it is your choice
|
||||
* whether to permit this exception to apply to your modifications.
|
||||
* If you do not wish that, delete this exception notice.
|
||||
*
|
||||
*/
|
||||
|
||||
#define __HBEXTREQ__
|
||||
#include "hblzf.hbx"
|
||||
@@ -19,8 +19,9 @@
|
||||
-instfile=inc:hbmxml.ch
|
||||
-instfile=inc:hbmxml.hbx
|
||||
|
||||
hbmxml.c
|
||||
hbmxmlp.prg
|
||||
hbmxmlx.prg
|
||||
hbmxml.hbx
|
||||
|
||||
core.c
|
||||
format.prg
|
||||
|
||||
3rd/minixml/mxml.hbc{HBMK_HAS_MXML_LOCAL}
|
||||
|
||||
@@ -1,54 +0,0 @@
|
||||
/*
|
||||
* $Id$
|
||||
*/
|
||||
|
||||
/*
|
||||
* Harbour Project source code:
|
||||
* extern puller
|
||||
*
|
||||
* Copyright 2010-2011 Petr Chornyj <myorg63@mail.ru>
|
||||
* 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
|
||||
* the Free Software Foundation; either version 2, or (at your option)
|
||||
* any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this software; see the file COPYING. If not, write to
|
||||
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
||||
* Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
|
||||
*
|
||||
* As a special exception, the Harbour Project gives permission for
|
||||
* additional uses of the text contained in its release of Harbour.
|
||||
*
|
||||
* The exception is that, if you link the Harbour libraries with other
|
||||
* files to produce an executable, this does not by itself cause the
|
||||
* resulting executable to be covered by the GNU General Public License.
|
||||
* Your use of that executable is in no way restricted on account of
|
||||
* linking the Harbour library code into it.
|
||||
*
|
||||
* This exception does not however invalidate any other reasons why
|
||||
* the executable file might be covered by the GNU General Public License.
|
||||
*
|
||||
* This exception applies only to the code released by the Harbour
|
||||
* Project under the name Harbour. If you copy code from other
|
||||
* Harbour Project or Free Software Foundation releases into a copy of
|
||||
* Harbour, as the General Public License permits, the exception does
|
||||
* not apply to the code that you add in this way. To avoid misleading
|
||||
* anyone as to the status of such modified files, you must delete
|
||||
* this exception notice from them.
|
||||
*
|
||||
* If you write modifications of your own for Harbour, it is your choice
|
||||
* whether to permit this exception to apply to your modifications.
|
||||
* If you do not wish that, delete this exception notice.
|
||||
*
|
||||
*/
|
||||
|
||||
#define __HBEXTREQ__
|
||||
#include "hbmxml.hbx"
|
||||
@@ -19,7 +19,8 @@
|
||||
-instfile=inc:hbxdiff.ch
|
||||
-instfile=inc:hbxdiff.hbx
|
||||
|
||||
hbxdiff.c
|
||||
hbxdiffx.prg
|
||||
hbxdiff.hbx
|
||||
|
||||
core.c
|
||||
|
||||
3rd/libxdiff/xdiff.hbc{HBMK_HAS_XDIFF_LOCAL}
|
||||
|
||||
@@ -1,54 +0,0 @@
|
||||
/*
|
||||
* $Id$
|
||||
*/
|
||||
|
||||
/*
|
||||
* Harbour Project source code:
|
||||
* extern puller
|
||||
*
|
||||
* Copyright 2011 Viktor Szakats (harbour.01 syenar.hu)
|
||||
* 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
|
||||
* the Free Software Foundation; either version 2, or (at your option)
|
||||
* any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this software; see the file COPYING. If not, write to
|
||||
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
||||
* Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
|
||||
*
|
||||
* As a special exception, the Harbour Project gives permission for
|
||||
* additional uses of the text contained in its release of Harbour.
|
||||
*
|
||||
* The exception is that, if you link the Harbour libraries with other
|
||||
* files to produce an executable, this does not by itself cause the
|
||||
* resulting executable to be covered by the GNU General Public License.
|
||||
* Your use of that executable is in no way restricted on account of
|
||||
* linking the Harbour library code into it.
|
||||
*
|
||||
* This exception does not however invalidate any other reasons why
|
||||
* the executable file might be covered by the GNU General Public License.
|
||||
*
|
||||
* This exception applies only to the code released by the Harbour
|
||||
* Project under the name Harbour. If you copy code from other
|
||||
* Harbour Project or Free Software Foundation releases into a copy of
|
||||
* Harbour, as the General Public License permits, the exception does
|
||||
* not apply to the code that you add in this way. To avoid misleading
|
||||
* anyone as to the status of such modified files, you must delete
|
||||
* this exception notice from them.
|
||||
*
|
||||
* If you write modifications of your own for Harbour, it is your choice
|
||||
* whether to permit this exception to apply to your modifications.
|
||||
* If you do not wish that, delete this exception notice.
|
||||
*
|
||||
*/
|
||||
|
||||
#define __HBEXTREQ__
|
||||
#include "hbxdiff.hbx"
|
||||
Reference in New Issue
Block a user