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.
45 lines
903 B
Plaintext
45 lines
903 B
Plaintext
Description:
|
|
Swap bytes of 16, 32 and 64 bit values.
|
|
|
|
Files:
|
|
lib/byteswap.in.h
|
|
lib/byteswap.c
|
|
m4/byteswap.m4
|
|
|
|
Depends-on:
|
|
gen-header
|
|
extern-inline [$GL_GENERATE_BYTESWAP_H]
|
|
bool [$GL_GENERATE_BYTESWAP_H]
|
|
stdint-h [$GL_GENERATE_BYTESWAP_H]
|
|
|
|
configure.ac:
|
|
gl_BYTESWAP
|
|
gl_CONDITIONAL_HEADER([byteswap.h])
|
|
AC_PROG_MKDIR_P
|
|
|
|
Makefile.am:
|
|
BUILT_SOURCES += $(BYTESWAP_H)
|
|
|
|
# We need the following in order to create <byteswap.h> when the system
|
|
# doesn't have one.
|
|
if GL_GENERATE_BYTESWAP_H
|
|
byteswap.h: byteswap.in.h $(top_builddir)/config.status
|
|
@NMD@ $(AM_V_GEN)$(MKDIR_P) '%reldir%'
|
|
$(gl_V_at)$(SED_HEADER_TO_AT_t) $(srcdir)/byteswap.in.h
|
|
$(AM_V_at)mv $@-t $@
|
|
lib_SOURCES += byteswap.c
|
|
else
|
|
byteswap.h: $(top_builddir)/config.status
|
|
rm -f $@
|
|
endif
|
|
MOSTLYCLEANFILES += byteswap.h byteswap.h-t
|
|
|
|
Include:
|
|
<byteswap.h>
|
|
|
|
License:
|
|
LGPLv2+
|
|
|
|
Maintainer:
|
|
Oskar Liljeblad
|