diff options
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/ChangeLog | 8 | ||||
| -rw-r--r-- | lib-src/Makefile.in | 12 |
2 files changed, 14 insertions, 6 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index 600cc67c2ff..07a72ecaf0d 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog | |||
| @@ -1,3 +1,11 @@ | |||
| 1 | 2014-12-27 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * Makefile.in (etags_libs, ebrowse${EXEEXT}, profile${EXEEXT}) | ||
| 4 | (make-docfile${EXEEXT}, movemail${EXEEXT}) | ||
| 5 | (update-game-score${EXEEXT}): Put $(NTLIB) before $(LOADLIBES), | ||
| 6 | since GCC sometimes calls stpcpy when it sees strcpy, under | ||
| 7 | optimization switches. | ||
| 8 | |||
| 1 | 2014-12-14 Paul Eggert <eggert@cs.ucla.edu> | 9 | 2014-12-14 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 10 | ||
| 3 | * etags.c (analyze_regex): Rename from analyse_regex. | 11 | * etags.c (analyze_regex): Rename from analyse_regex. |
diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in index cae0898a2c4..13a7a05156c 100644 --- a/lib-src/Makefile.in +++ b/lib-src/Makefile.in | |||
| @@ -321,7 +321,7 @@ regex.o: $(srcdir)/../src/regex.c $(srcdir)/../src/regex.h $(config_h) | |||
| 321 | 321 | ||
| 322 | etags_deps = ${srcdir}/etags.c regex.o $(NTLIB) $(config_h) | 322 | etags_deps = ${srcdir}/etags.c regex.o $(NTLIB) $(config_h) |
| 323 | etags_cflags = -DEMACS_NAME="\"GNU Emacs\"" -DVERSION="\"${version}\"" -o $@ | 323 | etags_cflags = -DEMACS_NAME="\"GNU Emacs\"" -DVERSION="\"${version}\"" -o $@ |
| 324 | etags_libs = regex.o $(LOADLIBES) $(NTLIB) | 324 | etags_libs = regex.o $(NTLIB) $(LOADLIBES) |
| 325 | 325 | ||
| 326 | etags${EXEEXT}: ${etags_deps} | 326 | etags${EXEEXT}: ${etags_deps} |
| 327 | $(AM_V_CCLD)$(CC) ${ALL_CFLAGS} $(etags_cflags) $< $(etags_libs) | 327 | $(AM_V_CCLD)$(CC) ${ALL_CFLAGS} $(etags_cflags) $< $(etags_libs) |
| @@ -336,18 +336,18 @@ ctags${EXEEXT}: ${srcdir}/ctags.c ${etags_deps} | |||
| 336 | ebrowse${EXEEXT}: ${srcdir}/ebrowse.c ${srcdir}/../lib/min-max.h $(NTLIB) \ | 336 | ebrowse${EXEEXT}: ${srcdir}/ebrowse.c ${srcdir}/../lib/min-max.h $(NTLIB) \ |
| 337 | $(config_h) | 337 | $(config_h) |
| 338 | $(AM_V_CCLD)$(CC) ${ALL_CFLAGS} -DVERSION="\"${version}\"" \ | 338 | $(AM_V_CCLD)$(CC) ${ALL_CFLAGS} -DVERSION="\"${version}\"" \ |
| 339 | $< $(LOADLIBES) $(NTLIB) -o $@ | 339 | $< $(NTLIB) $(LOADLIBES) -o $@ |
| 340 | 340 | ||
| 341 | profile${EXEEXT}: ${srcdir}/profile.c $(NTLIB) $(config_h) | 341 | profile${EXEEXT}: ${srcdir}/profile.c $(NTLIB) $(config_h) |
| 342 | $(AM_V_CCLD)$(CC) ${ALL_CFLAGS} $< \ | 342 | $(AM_V_CCLD)$(CC) ${ALL_CFLAGS} $< \ |
| 343 | $(LOADLIBES) $(NTLIB) $(LIB_CLOCK_GETTIME) -o $@ | 343 | $(NTLIB) $(LOADLIBES) $(LIB_CLOCK_GETTIME) -o $@ |
| 344 | 344 | ||
| 345 | make-docfile${EXEEXT}: ${srcdir}/make-docfile.c $(NTLIB) $(config_h) | 345 | make-docfile${EXEEXT}: ${srcdir}/make-docfile.c $(NTLIB) $(config_h) |
| 346 | $(AM_V_CCLD)$(CC) ${ALL_CFLAGS} $< $(LOADLIBES) $(NTLIB) -o $@ | 346 | $(AM_V_CCLD)$(CC) ${ALL_CFLAGS} $< $(NTLIB) $(LOADLIBES) -o $@ |
| 347 | 347 | ||
| 348 | movemail${EXEEXT}: ${srcdir}/movemail.c pop.o $(NTLIB) $(config_h) | 348 | movemail${EXEEXT}: ${srcdir}/movemail.c pop.o $(NTLIB) $(config_h) |
| 349 | $(AM_V_CCLD)$(CC) ${ALL_CFLAGS} ${MOVE_FLAGS} $< pop.o \ | 349 | $(AM_V_CCLD)$(CC) ${ALL_CFLAGS} ${MOVE_FLAGS} $< pop.o \ |
| 350 | $(LOADLIBES) $(NTLIB) $(LIBS_MOVE) -o $@ | 350 | $(NTLIB) $(LOADLIBES) $(LIBS_MOVE) -o $@ |
| 351 | 351 | ||
| 352 | pop.o: ${srcdir}/pop.c ${srcdir}/pop.h ${srcdir}/../lib/min-max.h $(config_h) | 352 | pop.o: ${srcdir}/pop.c ${srcdir}/pop.h ${srcdir}/../lib/min-max.h $(config_h) |
| 353 | $(AM_V_CC)$(CC) -c ${CPP_CFLAGS} ${MOVE_FLAGS} $< | 353 | $(AM_V_CC)$(CC) -c ${CPP_CFLAGS} ${MOVE_FLAGS} $< |
| @@ -378,7 +378,7 @@ hexl${EXEEXT}: ${srcdir}/hexl.c $(NTLIB) $(config_h) | |||
| 378 | update-game-score${EXEEXT}: ${srcdir}/update-game-score.c $(NTLIB) $(config_h) | 378 | update-game-score${EXEEXT}: ${srcdir}/update-game-score.c $(NTLIB) $(config_h) |
| 379 | $(AM_V_CCLD)$(CC) ${ALL_CFLAGS} \ | 379 | $(AM_V_CCLD)$(CC) ${ALL_CFLAGS} \ |
| 380 | -DHAVE_SHARED_GAME_DIR="\"$(gamedir)\"" \ | 380 | -DHAVE_SHARED_GAME_DIR="\"$(gamedir)\"" \ |
| 381 | $< $(LOADLIBES) $(NTLIB) -o $@ | 381 | $< $(NTLIB) $(LOADLIBES) -o $@ |
| 382 | 382 | ||
| 383 | emacsclient.res: ../nt/emacsclient.rc $(NTINC)/../icons/emacs.ico | 383 | emacsclient.res: ../nt/emacsclient.rc $(NTINC)/../icons/emacs.ico |
| 384 | $(WINDRES) -O coff --include-dir=$(NTINC)/.. -o $@ $< | 384 | $(WINDRES) -O coff --include-dir=$(NTINC)/.. -o $@ $< |