diff options
| author | Paul Eggert | 2011-04-06 00:04:53 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-04-06 00:04:53 -0700 |
| commit | 54fc1789b3451b42d3b243cc7cf7e10f3711a51e (patch) | |
| tree | 8976c197c638557dc166a28971423cdca6fe7cd4 /lib | |
| parent | 41cf7d1aec986e1b92ca14231ac4ec242c233d45 (diff) | |
| parent | b69769da408705e40929b793d79d3bfe6a3a5a48 (diff) | |
| download | emacs-54fc1789b3451b42d3b243cc7cf7e10f3711a51e.tar.gz emacs-54fc1789b3451b42d3b243cc7cf7e10f3711a51e.zip | |
* lib/gnulib.mk, m4/stdbool.m4, m4/stddef_h.m4, m4/stdint.m4: Merge from gnulib.
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/gnulib.mk | 33 |
1 files changed, 24 insertions, 9 deletions
diff --git a/lib/gnulib.mk b/lib/gnulib.mk index bb5bdcf852e..d2fd6698030 100644 --- a/lib/gnulib.mk +++ b/lib/gnulib.mk | |||
| @@ -127,7 +127,7 @@ BUILT_SOURCES += $(GETOPT_H) | |||
| 127 | 127 | ||
| 128 | # We need the following in order to create <getopt.h> when the system | 128 | # We need the following in order to create <getopt.h> when the system |
| 129 | # doesn't have one that works with the given compiler. | 129 | # doesn't have one that works with the given compiler. |
| 130 | getopt.h: getopt.in.h $(ARG_NONNULL_H) | 130 | getopt.h: getopt.in.h $(top_builddir)/config.status $(ARG_NONNULL_H) |
| 131 | $(AM_V_GEN)rm -f $@-t $@ && \ | 131 | $(AM_V_GEN)rm -f $@-t $@ && \ |
| 132 | { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ | 132 | { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ |
| 133 | sed -e 's|@''HAVE_GETOPT_H''@|$(HAVE_GETOPT_H)|g' \ | 133 | sed -e 's|@''HAVE_GETOPT_H''@|$(HAVE_GETOPT_H)|g' \ |
| @@ -208,12 +208,17 @@ BUILT_SOURCES += $(STDBOOL_H) | |||
| 208 | 208 | ||
| 209 | # We need the following in order to create <stdbool.h> when the system | 209 | # We need the following in order to create <stdbool.h> when the system |
| 210 | # doesn't have one that works. | 210 | # doesn't have one that works. |
| 211 | stdbool.h: stdbool.in.h | 211 | if GL_GENERATE_STDBOOL_H |
| 212 | stdbool.h: stdbool.in.h $(top_builddir)/config.status | ||
| 212 | $(AM_V_GEN)rm -f $@-t $@ && \ | 213 | $(AM_V_GEN)rm -f $@-t $@ && \ |
| 213 | { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ | 214 | { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ |
| 214 | sed -e 's/@''HAVE__BOOL''@/$(HAVE__BOOL)/g' < $(srcdir)/stdbool.in.h; \ | 215 | sed -e 's/@''HAVE__BOOL''@/$(HAVE__BOOL)/g' < $(srcdir)/stdbool.in.h; \ |
| 215 | } > $@-t && \ | 216 | } > $@-t && \ |
| 216 | mv $@-t $@ | 217 | mv $@-t $@ |
| 218 | else | ||
| 219 | stdbool.h: $(top_builddir)/config.status | ||
| 220 | rm -f $@ | ||
| 221 | endif | ||
| 217 | MOSTLYCLEANFILES += stdbool.h stdbool.h-t | 222 | MOSTLYCLEANFILES += stdbool.h stdbool.h-t |
| 218 | 223 | ||
| 219 | EXTRA_DIST += stdbool.in.h | 224 | EXTRA_DIST += stdbool.in.h |
| @@ -226,7 +231,8 @@ BUILT_SOURCES += $(STDDEF_H) | |||
| 226 | 231 | ||
| 227 | # We need the following in order to create <stddef.h> when the system | 232 | # We need the following in order to create <stddef.h> when the system |
| 228 | # doesn't have one that works with the given compiler. | 233 | # doesn't have one that works with the given compiler. |
| 229 | stddef.h: stddef.in.h | 234 | if GL_GENERATE_STDDEF_H |
| 235 | stddef.h: stddef.in.h $(top_builddir)/config.status | ||
| 230 | $(AM_V_GEN)rm -f $@-t $@ && \ | 236 | $(AM_V_GEN)rm -f $@-t $@ && \ |
| 231 | { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \ | 237 | { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \ |
| 232 | sed -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ | 238 | sed -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ |
| @@ -238,6 +244,10 @@ stddef.h: stddef.in.h | |||
| 238 | < $(srcdir)/stddef.in.h; \ | 244 | < $(srcdir)/stddef.in.h; \ |
| 239 | } > $@-t && \ | 245 | } > $@-t && \ |
| 240 | mv $@-t $@ | 246 | mv $@-t $@ |
| 247 | else | ||
| 248 | stddef.h: $(top_builddir)/config.status | ||
| 249 | rm -f $@ | ||
| 250 | endif | ||
| 241 | MOSTLYCLEANFILES += stddef.h stddef.h-t | 251 | MOSTLYCLEANFILES += stddef.h stddef.h-t |
| 242 | 252 | ||
| 243 | EXTRA_DIST += stddef.in.h | 253 | EXTRA_DIST += stddef.in.h |
| @@ -250,7 +260,8 @@ BUILT_SOURCES += $(STDINT_H) | |||
| 250 | 260 | ||
| 251 | # We need the following in order to create <stdint.h> when the system | 261 | # We need the following in order to create <stdint.h> when the system |
| 252 | # doesn't have one that works with the given compiler. | 262 | # doesn't have one that works with the given compiler. |
| 253 | stdint.h: stdint.in.h | 263 | if GL_GENERATE_STDINT_H |
| 264 | stdint.h: stdint.in.h $(top_builddir)/config.status | ||
| 254 | $(AM_V_GEN)rm -f $@-t $@ && \ | 265 | $(AM_V_GEN)rm -f $@-t $@ && \ |
| 255 | { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ | 266 | { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ |
| 256 | sed -e 's/@''HAVE_STDINT_H''@/$(HAVE_STDINT_H)/g' \ | 267 | sed -e 's/@''HAVE_STDINT_H''@/$(HAVE_STDINT_H)/g' \ |
| @@ -282,6 +293,10 @@ stdint.h: stdint.in.h | |||
| 282 | < $(srcdir)/stdint.in.h; \ | 293 | < $(srcdir)/stdint.in.h; \ |
| 283 | } > $@-t && \ | 294 | } > $@-t && \ |
| 284 | mv $@-t $@ | 295 | mv $@-t $@ |
| 296 | else | ||
| 297 | stdint.h: $(top_builddir)/config.status | ||
| 298 | rm -f $@ | ||
| 299 | endif | ||
| 285 | MOSTLYCLEANFILES += stdint.h stdint.h-t | 300 | MOSTLYCLEANFILES += stdint.h stdint.h-t |
| 286 | 301 | ||
| 287 | EXTRA_DIST += stdint.in.h | 302 | EXTRA_DIST += stdint.in.h |
| @@ -294,7 +309,7 @@ BUILT_SOURCES += stdio.h | |||
| 294 | 309 | ||
| 295 | # We need the following in order to create <stdio.h> when the system | 310 | # We need the following in order to create <stdio.h> when the system |
| 296 | # doesn't have one that works with the given compiler. | 311 | # doesn't have one that works with the given compiler. |
| 297 | stdio.h: stdio.in.h $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H) | 312 | stdio.h: stdio.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H) |
| 298 | $(AM_V_GEN)rm -f $@-t $@ && \ | 313 | $(AM_V_GEN)rm -f $@-t $@ && \ |
| 299 | { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \ | 314 | { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \ |
| 300 | sed -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ | 315 | sed -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ |
| @@ -405,7 +420,7 @@ BUILT_SOURCES += stdlib.h | |||
| 405 | 420 | ||
| 406 | # We need the following in order to create <stdlib.h> when the system | 421 | # We need the following in order to create <stdlib.h> when the system |
| 407 | # doesn't have one that works with the given compiler. | 422 | # doesn't have one that works with the given compiler. |
| 408 | stdlib.h: stdlib.in.h $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H) | 423 | stdlib.h: stdlib.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H) |
| 409 | $(AM_V_GEN)rm -f $@-t $@ && \ | 424 | $(AM_V_GEN)rm -f $@-t $@ && \ |
| 410 | { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \ | 425 | { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \ |
| 411 | sed -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ | 426 | sed -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ |
| @@ -512,7 +527,7 @@ BUILT_SOURCES += sys/stat.h | |||
| 512 | 527 | ||
| 513 | # We need the following in order to create <sys/stat.h> when the system | 528 | # We need the following in order to create <sys/stat.h> when the system |
| 514 | # has one that is incomplete. | 529 | # has one that is incomplete. |
| 515 | sys/stat.h: sys_stat.in.h $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H) | 530 | sys/stat.h: sys_stat.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H) |
| 516 | $(AM_V_at)$(MKDIR_P) sys | 531 | $(AM_V_at)$(MKDIR_P) sys |
| 517 | $(AM_V_GEN)rm -f $@-t $@ && \ | 532 | $(AM_V_GEN)rm -f $@-t $@ && \ |
| 518 | { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ | 533 | { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ |
| @@ -571,7 +586,7 @@ BUILT_SOURCES += time.h | |||
| 571 | 586 | ||
| 572 | # We need the following in order to create <time.h> when the system | 587 | # We need the following in order to create <time.h> when the system |
| 573 | # doesn't have one that works with the given compiler. | 588 | # doesn't have one that works with the given compiler. |
| 574 | time.h: time.in.h $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H) | 589 | time.h: time.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H) |
| 575 | $(AM_V_GEN)rm -f $@-t $@ && \ | 590 | $(AM_V_GEN)rm -f $@-t $@ && \ |
| 576 | { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \ | 591 | { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \ |
| 577 | sed -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ | 592 | sed -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ |
| @@ -621,7 +636,7 @@ BUILT_SOURCES += unistd.h | |||
| 621 | 636 | ||
| 622 | # We need the following in order to create an empty placeholder for | 637 | # We need the following in order to create an empty placeholder for |
| 623 | # <unistd.h> when the system doesn't have one. | 638 | # <unistd.h> when the system doesn't have one. |
| 624 | unistd.h: unistd.in.h $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H) | 639 | unistd.h: unistd.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H) |
| 625 | $(AM_V_GEN)rm -f $@-t $@ && \ | 640 | $(AM_V_GEN)rm -f $@-t $@ && \ |
| 626 | { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ | 641 | { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ |
| 627 | sed -e 's|@''HAVE_UNISTD_H''@|$(HAVE_UNISTD_H)|g' \ | 642 | sed -e 's|@''HAVE_UNISTD_H''@|$(HAVE_UNISTD_H)|g' \ |