1
0
mirror of git://git.gnupg.org/gnupg.git synced 2025-01-21 14:47:03 +01:00

* signal.c, tdbio.c: Comment out the transaction code. It was not used in

this version, and was causing some build problems on quasi-posix platforms
(Solaris and Forte c89).
This commit is contained in:
David Shaw 2003-06-24 13:52:42 +00:00
parent d1151348ec
commit 2987a5e0bd
3 changed files with 13 additions and 4 deletions

View File

@ -1,3 +1,9 @@
2003-06-24 David Shaw <dshaw@jabberwocky.com>
* signal.c, tdbio.c: Comment out the transaction code. It was not
used in this version, and was causing some build problems on
quasi-posix platforms (Solaris and Forte c89).
2003-06-19 David Shaw <dshaw@jabberwocky.com>
* Makefile.am: Include W32LIBS where appropriate.

View File

@ -154,7 +154,8 @@ pause_on_sigusr( int which )
#endif
}
/* Disabled - see comment in tdbio.c:tdbio_begin_transaction() */
#if 0
static void
do_block( int block )
{
@ -211,7 +212,6 @@ do_block( int block )
#endif /*HAVE_DOSISH_SYSTEM*/
}
void
block_all_signals()
{
@ -223,3 +223,4 @@ unblock_all_signals()
{
do_block(0);
}
#endif

View File

@ -332,7 +332,9 @@ tdbio_sync()
return 0;
}
#if 0
/* The transaction code is disabled in the 1.2.x branch, as it is not
yet used. It will be enabled in 1.3.x. */
/****************
* Simple transactions system:
@ -402,7 +404,7 @@ tdbio_cancel_transaction()
in_transaction = 0;
return 0;
}
#endif
/********************************************************