diff options
author | Nick Clifton <nickc@redhat.com> | 2006-08-02 14:26:07 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2006-08-02 14:26:07 +0000 |
commit | c973bc5cd4b6024ab430a41cae5b75c2c54fd55e (patch) | |
tree | 48241288762d48451ef8c5eb6c4121309d665469 /gas/as.h | |
parent | 87177905630953bf5b7ba6ed7938c2a483873e07 (diff) | |
download | gdb-c973bc5cd4b6024ab430a41cae5b75c2c54fd55e.zip gdb-c973bc5cd4b6024ab430a41cae5b75c2c54fd55e.tar.gz gdb-c973bc5cd4b6024ab430a41cae5b75c2c54fd55e.tar.bz2 |
PR gas/2991
* acinclude.m4 (BFD_BINARY_FOPEN): Import this function from bfd/aclocal.m4.
* configure.in: Run BFD_BINARY_FOPEN.
* configure: Regenerate.
* as.h: Look at USE_BINARY_FOPEN to decide which fopen-*.h header file to include.
Diffstat (limited to 'gas/as.h')
-rw-r--r-- | gas/as.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -210,7 +210,7 @@ extern int vsnprintf(char *, size_t, const char *, va_list); #endif /* __FILE__ */ #ifndef FOPEN_WB -#if defined GO32 || defined __MINGW32__ +#ifdef USE_BINARY_FOPEN #include "fopen-bin.h" #else #include "fopen-same.h" |