This is the mail archive of the newlib@sources.redhat.com mailing list for the newlib project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH] vasprintf missing from Makefile.am [Was: Re: [PATCH]missing underscore on _asprintf_r]


Charles Wilson wrote:
Charles Wilson wrote:
Both the STDC declaration and the non-STDC declaration should be the same, right?

2003-01-01 Charles Wilson <cwilson@ece.gatech.edu>

* asprintf.c (_asprintf_r): insure both declarations
are the same.

Patch checked in.  Thanks.

Well, it appears there is one more related problem. The Makefile doesn't refer to vasprintf.c at all. I *think* it should go in the EL/IX level 2 block, just like asprintf.c, and you'd obviously need to regen Makefile.in.

--Chuck

Thanks for catching that.  Additional patch checked in.

-- Jeff J.


2003-01-06 Charles Wilson <cwilson@ece.gatech.edu>

* libc/stdio/Makefile.am: add vasprintf.$(oext)



------------------------------------------------------------------------

Index: Makefile.am
===================================================================
RCS file: /cvs/src/src/newlib/libc/stdio/Makefile.am,v
retrieving revision 1.15
diff -u -r1.15 Makefile.am
--- Makefile.am 26 Aug 2002 18:56:07 -0000 1.15
+++ Makefile.am 7 Jan 2003 01:04:32 -0000
@@ -85,7 +85,8 @@
ftello.$(oext) \
getw.$(oext) \
mktemp.$(oext) \
- putw.$(oext)
+ putw.$(oext) \
+ vasprintf.$(oext)
endif
LIBADD_OBJS = vfiprintf.$(oext) vfprintf.$(oext)


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]