aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--lib/makefile.w32-in8
-rw-r--r--src/ChangeLog4
-rw-r--r--src/makefile.w32-in1
4 files changed, 18 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 8ffa630c16d..cd14d49406d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
12012-08-25 Eli Zaretskii <eliz@gnu.org>
2
3 * lib/makefile.w32-in ($(BLD)/execinfo.$(O), execinfo.h): New targets.
4 (GNULIBOBJS): Add $(BLD)/execinfo.$(O).
5
12012-08-24 Paul Eggert <eggert@cs.ucla.edu> 62012-08-24 Paul Eggert <eggert@cs.ucla.edu>
2 7
3 On assertion failure, print backtrace if available. 8 On assertion failure, print backtrace if available.
diff --git a/lib/makefile.w32-in b/lib/makefile.w32-in
index 11251d55f77..7df68fd3300 100644
--- a/lib/makefile.w32-in
+++ b/lib/makefile.w32-in
@@ -28,6 +28,7 @@ GNULIBOBJS = $(BLD)/c-ctype.$(O) \
28 $(BLD)/c-strncasecmp.$(O) \ 28 $(BLD)/c-strncasecmp.$(O) \
29 $(BLD)/dtoastr.$(O) \ 29 $(BLD)/dtoastr.$(O) \
30 $(BLD)/dtotimespec.$(O) \ 30 $(BLD)/dtotimespec.$(O) \
31 $(BLD)/execinfo.$(O) \
31 $(BLD)/getopt.$(O) \ 32 $(BLD)/getopt.$(O) \
32 $(BLD)/getopt1.$(O) \ 33 $(BLD)/getopt1.$(O) \
33 $(BLD)/gettime.$(O) \ 34 $(BLD)/gettime.$(O) \
@@ -129,6 +130,9 @@ $(BLD)/dtotimespec.$(O) : \
129 $(GNU_LIB)/timespec.h \ 130 $(GNU_LIB)/timespec.h \
130 $(CONFIG_H) 131 $(CONFIG_H)
131 132
133$(BLD)/execinfo.$(O) : \
134 $(GNU_LIB)/execinfo.h
135
132$(BLD)/getopt.$(O) : \ 136$(BLD)/getopt.$(O) : \
133 $(GNU_LIB)/getopt.c \ 137 $(GNU_LIB)/getopt.c \
134 $(GNU_LIB)/getopt.h \ 138 $(GNU_LIB)/getopt.h \
@@ -299,3 +303,7 @@ getopt_h:
299 < getopt.in.h > getopt_.h-t 303 < getopt.in.h > getopt_.h-t
300 $(CP) getopt_.h-t getopt_.h 304 $(CP) getopt_.h-t getopt_.h
301 - $(DEL) getopt_.h-t 305 - $(DEL) getopt_.h-t
306
307execinfo.h: execinfo.in.h
308 $(CP) execinfo.in.h $@
309
diff --git a/src/ChangeLog b/src/ChangeLog
index fbaf555f8b2..1a836543d69 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12012-08-25 Eli Zaretskii <eliz@gnu.org>
2
3 * makefile.w32-in ($(BLD)/alloc.$(O)): Depend on $(GNU_LIB)/execinfo.h.
4
12012-08-25 Paul Eggert <eggert@cs.ucla.edu> 52012-08-25 Paul Eggert <eggert@cs.ucla.edu>
2 6
3 On assertion failure, print backtrace if available. 7 On assertion failure, print backtrace if available.
diff --git a/src/makefile.w32-in b/src/makefile.w32-in
index bdb292099bc..e5959e0b1a5 100644
--- a/src/makefile.w32-in
+++ b/src/makefile.w32-in
@@ -480,6 +480,7 @@ $(BLD)/alloc.$(O) : \
480 $(SRC)/syssignal.h \ 480 $(SRC)/syssignal.h \
481 $(SRC)/w32.h \ 481 $(SRC)/w32.h \
482 $(NT_INC)/unistd.h \ 482 $(NT_INC)/unistd.h \
483 $(GNU_LIB)/execinfo.h \
483 $(GNU_LIB)/verify.h \ 484 $(GNU_LIB)/verify.h \
484 $(BLOCKINPUT_H) \ 485 $(BLOCKINPUT_H) \
485 $(BUFFER_H) \ 486 $(BUFFER_H) \