2008-09-28 Bruno Haible <bruno@clisp.org>
+ Override freopen more carefully.
+ * lib/freopen.c (orig_freopen): New function.
+ (rpl_freopen): Use orig_freopen instead of freopen.
+ * m4/freopen.m4 (gl_PREREQ_FREOPEN): New macro.
+ (gl_FUNC_FREOPEN): Invoke it.
+
Override fopen more carefully.
* lib/fopen.c (orig_fopen): New function.
- (rpl_fopen): Use orig_fopen instead of open.
+ (rpl_fopen): Use orig_fopen instead of fopen.
* m4/fopen.m4 (gl_PREREQ_FOPEN): New macro.
(gl_FUNC_FOPEN): Invoke it.
Needed on AIX. Reported by Rainer Tammer <tammer@tammer.net>.
/* Open a stream to a file.
- Copyright (C) 2007 Free Software Foundation, Inc.
+ Copyright (C) 2007-2008 Free Software Foundation, Inc.
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
#include <config.h>
+/* Get the original definition of freopen. It might be defined as a macro. */
+#define __need_FILE
+#include <stdio.h>
+#undef __need_FILE
+
+static inline FILE *
+orig_freopen (const char *filename, const char *mode, FILE *stream)
+{
+ return freopen (filename, mode, stream);
+}
+
/* Specification. */
#include <stdio.h>
FILE *
rpl_freopen (const char *filename, const char *mode, FILE *stream)
-#undef freopen
{
#if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__
if (strcmp (filename, "/dev/null") == 0)
filename = "NUL";
#endif
- return freopen (filename, mode, stream);
+ return orig_freopen (filename, mode, stream);
}
-# freopen.m4 serial 1
-dnl Copyright (C) 2007 Free Software Foundation, Inc.
+# freopen.m4 serial 2
+dnl Copyright (C) 2007-2008 Free Software Foundation, Inc.
dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it,
dnl with or without modifications, as long as this notice is preserved.
mingw* | pw*)
REPLACE_FREOPEN=1
AC_LIBOBJ([freopen])
+ gl_PREREQ_FREOPEN
;;
esac
])
+
+# Prerequisites of lib/freopen.c.
+AC_DEFUN([gl_PREREQ_FREOPEN],
+[
+ AC_REQUIRE([AC_C_INLINE])
+])