Skip to content

Commit ec82d0d

Browse files
committed
Merge remote-tracking branch 'upstream/master' into gc4
2 parents 4199180 + 6628edb commit ec82d0d

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

libcob/ChangeLog

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11

2+
2025-02-11 Simon Sobisch <simonsobisch@gnu.org>
3+
4+
* fileio.h: export init functions also for BDB + LMDB (see 2022-06-21)
5+
26
2025-01-28 David Declerck <david.declerck@ocamlpro.com>
37

48
* fileio.c (cob_file_close): try to close the file stream
@@ -55,7 +59,7 @@
5559
* fileio.c (apply_file_paths): extracted from cob_chk_file_mapping
5660
to factor out duplicated code
5761

58-
2024-06-02 Simon Sobisch <simonsobisch@gnu.org>
62+
2024-05-23 Simon Sobisch <simonsobisch@gnu.org>
5963

6064
* fisam.c (isam_read_next): use ISSTAT only for COB_WITH_STATUS_02,
6165
fixing compile errors with VBISAM
@@ -1193,6 +1197,7 @@ after suggestions by Chuck Haatvedt <chuck.haatvedt+cobol@gmail.com>
11931197

11941198
* Makefile.am: always build INDEXED handlers as separate libraries
11951199
* libcobvc.c, libcobvb.c, libcobci.c, libcobdi.c, fileio.h: simplified
1200+
* fileio.h: export init functions for indexed handlers
11961201
* fisam.c: spelling correction for D-ISAM and VBISAM
11971202
* fileio.c (cob_io_version), common.c: add "quiet" version
11981203
to output only name
@@ -7386,7 +7391,7 @@ after suggestions by Chuck Haatvedt <chuck.haatvedt+cobol@gmail.com>
73867391
* call.c, common.c, move.c, Makefile.am: gettextized
73877392

73887393

7389-
Copyright 2002-2024 Free Software Foundation, Inc.
7394+
Copyright 2002-2025 Free Software Foundation, Inc.
73907395

73917396
Copying and distribution of this file, with or without modification, are
73927397
permitted provided the copyright notice and this notice are preserved.

libcob/fileio.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright (C) 2002-2012, 2014-2023 Free Software Foundation, Inc.
2+
Copyright (C) 2002-2012, 2014-2025 Free Software Foundation, Inc.
33
Written by Keisuke Nishida, Roger While, Simon Sobisch, Ron Norman
44
55
This file is part of GnuCOBOL.
@@ -200,10 +200,10 @@ COB_HIDDEN void cob_file_save_status (cob_file *f, cob_field *fnstatus, const in
200200
COB_HIDDEN void cob_file_sync (cob_file *f);
201201

202202
#ifdef WITH_DB
203-
void cob_bdb_init_fileio (cob_file_api *);
203+
COB_EXPIMP void cob_bdb_init_fileio (cob_file_api *);
204204
#endif
205205
#ifdef WITH_LMDB
206-
void cob_lmdb_init_fileio (cob_file_api *);
206+
COB_EXPIMP void cob_lmdb_init_fileio (cob_file_api *);
207207
#endif
208208

209209
COB_HIDDEN int cob_findkey_attr (cob_file *f, cob_field *kf, int *fullkeylen, int *partlen);

0 commit comments

Comments
 (0)