mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 09:54:16 +01:00
8b4136bad5
Core and secp have not used gmp for a very long time now (core disabled it in 2015). Signed-off-by: Jon Griffiths <jon_p_griffiths@yahoo.com>
74 lines
2.2 KiB
C
74 lines
2.2 KiB
C
/* Updates the given file if any library versions have changed. This
|
|
* is important for systemwide updates, such as sqlite3. */
|
|
#include "config.h"
|
|
#include <ccan/err/err.h>
|
|
#include <ccan/read_write_all/read_write_all.h>
|
|
#include <ccan/tal/grab_file/grab_file.h>
|
|
#include <ccan/tal/str/str.h>
|
|
#include <errno.h>
|
|
#include <fcntl.h>
|
|
#if HAVE_SQLITE3
|
|
# include <sqlite3.h>
|
|
# define IF_SQLITE3(...) __VA_ARGS__
|
|
#else
|
|
# define IF_SQLITE3(...)
|
|
#endif
|
|
#include <unistd.h>
|
|
#include <zlib.h>
|
|
|
|
static const char template[] =
|
|
"/* Generated file by tools/headerversions, do not edit! */\n"
|
|
IF_SQLITE3("/* SQLITE3 version: %u */\n")
|
|
"/* ZLIB version: %s */\n"
|
|
"#include <ccan/err/err.h>\n"
|
|
IF_SQLITE3("#include <sqlite3.h>\n")
|
|
"#include <zlib.h>\n"
|
|
"\n"
|
|
"static inline void check_linked_library_versions(void)\n"
|
|
"{\n"
|
|
IF_SQLITE3(
|
|
" /* Require at least the version we compiled with. */"
|
|
" if (SQLITE_VERSION_NUMBER > sqlite3_libversion_number())\n"
|
|
" errx(1, \"SQLITE version mismatch: compiled %%u, now %%u\",\n"
|
|
" SQLITE_VERSION_NUMBER, sqlite3_libversion_number());\n"
|
|
" /* Ensure the major version matches. */"
|
|
" if (SQLITE_VERSION_NUMBER + 1000000 < sqlite3_libversion_number())\n"
|
|
" errx(1, \"SQLITE major version mismatch: compiled %%u, now %%u\",\n"
|
|
" SQLITE_VERSION_NUMBER, sqlite3_libversion_number());\n"
|
|
)
|
|
" /* zlib documents that first char alters ABI. Kudos! */\n"
|
|
" if (zlibVersion()[0] != ZLIB_VERSION[0])\n"
|
|
" errx(1, \"zlib version mismatch: compiled %%s, now %%s\",\n"
|
|
" ZLIB_VERSION, zlibVersion());\n"
|
|
"}\n";
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
char *file, *new;
|
|
|
|
/* We don't bother with setup_locale(); we're a build tool */
|
|
err_set_progname(argv[0]);
|
|
|
|
if (argc != 2)
|
|
errx(1, "Usage: %s <versionheader>", argv[0]);
|
|
|
|
file = grab_file(NULL, argv[1]);
|
|
if (!file && errno != ENOENT)
|
|
err(1, "Reading %s", argv[1]);
|
|
|
|
new = tal_fmt(NULL, template,
|
|
IF_SQLITE3(sqlite3_libversion_number(),)
|
|
zlibVersion());
|
|
if (!file || !streq(new, file)) {
|
|
int fd = open(argv[1], O_TRUNC|O_WRONLY|O_CREAT, 0666);
|
|
if (fd < 0)
|
|
err(1, "Writing %s", argv[1]);
|
|
if (!write_all(fd, new, strlen(new)))
|
|
err(1, "Writing to %s", argv[1]);
|
|
close(fd);
|
|
}
|
|
tal_free(new);
|
|
tal_free(file);
|
|
return 0;
|
|
}
|