mirror of
https://git.savannah.gnu.org/git/gnulib.git
synced 2025-08-08 17:22:05 +03:00
Reported by Paul Eggert in <https://lists.gnu.org/archive/html/bug-gnulib/2024-12/msg00193.html>. * modules/bool: Renamed from modules/stdbool-h. * modules/bool-tests: Renamed from modules/stdbool-h-tests. * modules/bool-c++-tests: Renamed from modules/stdbool-h-c++-tests. * tests/test-bool.c: Renamed from tests/test-stdbool-h.c. * tests/test-bool-c++.cc: Renamed from tests/test-stdbool-h-c++.cc. * tests/test-bool-c++2.cc: Renamed from tests/test-stdbool-h-c++2.cc. * modules/stdbool-h-c99-tests: Update. * modules/stdbool-h-c99-c++-tests: Update. * tests/test-stdbool-h-c99.c: Update. * tests/test-stdbool-h-c99-c++.cc: Update. * doc/posix-headers/stdbool.texi: Update. * doc/gnulib-readme.texi: Update. * doc/gnulib.texi: Update. * modules/* (Depends-on): Update. * modules/stdbool: Update.
67 lines
1.3 KiB
Plaintext
67 lines
1.3 KiB
Plaintext
Description:
|
|
Help make programs relocatable, that is, to allow them to function
|
|
properly when copied to an arbitrary directory.
|
|
|
|
Files:
|
|
build-aux/config.libpath
|
|
build-aux/reloc-ldflags
|
|
build-aux/libtool-reloc
|
|
doc/relocatable.texi
|
|
lib/relocatable.h
|
|
lib/relocatable.c
|
|
lib/progreloc.c
|
|
m4/relocatable.m4
|
|
m4/relocatable-lib.m4
|
|
m4/lib-ld.m4
|
|
m4/host-cpu-c-abi.m4
|
|
|
|
Depends-on:
|
|
relocatable-prog-wrapper
|
|
progname
|
|
canonicalize-lgpl
|
|
xalloc
|
|
xreadlink
|
|
open
|
|
bool
|
|
unistd-h
|
|
memcmp
|
|
strdup
|
|
|
|
configure.ac:
|
|
gl_RELOCATABLE([$gl_source_base])
|
|
gl_CONDITIONAL([GL_COND_OBJ_PROGRELOC], [test $RELOCATABLE = yes])
|
|
AM_COND_IF([GL_COND_OBJ_PROGRELOC], [
|
|
AC_LIBOBJ([relocatable])
|
|
])
|
|
|
|
Makefile.am:
|
|
if GL_COND_OBJ_PROGRELOC
|
|
lib_SOURCES += progreloc.c
|
|
endif
|
|
DEFS += -DEXEEXT=\"@EXEEXT@\"
|
|
if RELOCATABLE_VIA_WRAPPER
|
|
uninstall-hook: uninstall-relocwrapper
|
|
uninstall-relocwrapper:
|
|
if test $(RELOCATABLE) = yes; then \
|
|
case '$(EXEEXT)' in \
|
|
.bin*) ;; \
|
|
*) cd $(top_builddir) && \
|
|
$(MAKE) $(AM_MAKEFLAGS) EXEEXT=.bin$(EXEEXT) \
|
|
AM_MAKEFLAGS='$(AM_MAKEFLAGS) EXEEXT=.bin$(EXEEXT)' \
|
|
uninstall ;; \
|
|
esac; \
|
|
fi
|
|
endif
|
|
## Automake warns about conditionally added dependencies to unconditionally defined targets.
|
|
.PHONY: uninstall-relocwrapper
|
|
|
|
Include:
|
|
"relocatable.h"
|
|
"progname.h"
|
|
|
|
License:
|
|
GPL
|
|
|
|
Maintainer:
|
|
Ben Pfaff
|