diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2009-01-02 16:43:50 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2009-01-02 16:43:50 (GMT) |
commit | 4123c4bbf735f1e0910f1ae529ee6a5fa4a841a4 (patch) | |
tree | e72f06db7689cdca26c0e91537e5a0eecf4e2d9a /unix/Makefile.in | |
parent | 337a6648fee48d63d97c16579b72703b39647564 (diff) | |
download | tcl-4123c4bbf735f1e0910f1ae529ee6a5fa4a841a4.zip tcl-4123c4bbf735f1e0910f1ae529ee6a5fa4a841a4.tar.gz tcl-4123c4bbf735f1e0910f1ae529ee6a5fa4a841a4.tar.bz2 |
Fix various mkstemp()-related issues. [Bugs 741967,878333]
Diffstat (limited to 'unix/Makefile.in')
-rw-r--r-- | unix/Makefile.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index 070b472..8ce29ec 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -4,7 +4,7 @@ # "./configure", which is a configuration script generated by the "autoconf" # program (constructs like "@foo@" will get replaced in the actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.259 2008/12/31 18:22:04 dgp Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.260 2009/01/02 16:43:50 dkf Exp $ VERSION = @TCL_VERSION@ MAJOR_VERSION = @TCL_MAJOR_VERSION@ @@ -1546,6 +1546,9 @@ fixstrtod.o: $(COMPAT_DIR)/fixstrtod.c opendir.o: $(COMPAT_DIR)/opendir.c $(CC) -c $(STUB_CC_SWITCHES) $(COMPAT_DIR)/opendir.c +mkstemp.o: $(COMPAT_DIR)/mkstemp.c + $(CC) -c $(STUB_CC_SWITCHES) $(COMPAT_DIR)/mkstemp.c + memcmp.o: $(COMPAT_DIR)/memcmp.c $(CC) -c $(STUB_CC_SWITCHES) $(COMPAT_DIR)/memcmp.c |