aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMoritz Schulte <[email protected]>2004-07-23 21:56:36 +0000
committerMoritz Schulte <[email protected]>2004-07-23 21:56:36 +0000
commitda2899b71232f066a7276d5cd3de711a07e48020 (patch)
treef09c8034e522737fbf6004a15fffb1615a9f2505
parentNew file. (diff)
downloadgnupg-da2899b71232f066a7276d5cd3de711a07e48020.tar.gz
gnupg-da2899b71232f066a7276d5cd3de711a07e48020.zip
2004-07-24 Moritz Schulte <[email protected]>
* gpg-stream-config.h: New file (was missing before).
-rw-r--r--agent/ChangeLog4
-rw-r--r--agent/gpg-stream-config.h41
2 files changed, 45 insertions, 0 deletions
diff --git a/agent/ChangeLog b/agent/ChangeLog
index 8391743f4..1fa81c4be 100644
--- a/agent/ChangeLog
+++ b/agent/ChangeLog
@@ -1,3 +1,7 @@
+2004-07-24 Moritz Schulte <[email protected]>
+
+ * gpg-stream-config.h: New file (was missing before).
+
2004-07-19 Moritz Schulte <[email protected]>
* command-ssh.c: Only log debugging message if asked to do so.
diff --git a/agent/gpg-stream-config.h b/agent/gpg-stream-config.h
new file mode 100644
index 000000000..80353aff9
--- /dev/null
+++ b/agent/gpg-stream-config.h
@@ -0,0 +1,41 @@
+/* stream.c - Stream I/O/ layer
+ Copyright (C) 2004 g10 Code GmbH
+
+ This file is part of libgpg-stream.
+
+ libgpg-stream 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 of the
+ License, or (at your option) any later version.
+
+ libgpg-stream 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
+ Lesser General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with libgpg-stream; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+ 02111-1307, USA. */
+
+#ifndef GPG_STREAM_CONFIG_H
+#define GPG_STREAM_CONFIG_H
+
+#define USE_PTH
+
+#ifdef USE_PTH
+#include <pth.h>
+
+#define READ pth_read
+#define WRITE pth_write
+
+#else
+
+#include <unistd.h>
+
+#define READ read
+#define WRITE write
+
+#endif
+
+#endif