2018-12-11 00:30:53 +01:00
|
|
|
/* Updates the given file if any library versions have changed. This
|
|
|
|
* is important for systemwide updates, such as sqlite3. */
|
2020-08-29 10:13:52 +02:00
|
|
|
#include "config.h"
|
2018-12-11 00:30:53 +01:00
|
|
|
#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>
|
2020-08-29 10:13:52 +02:00
|
|
|
#if HAVE_SQLITE3
|
|
|
|
# include <sqlite3.h>
|
|
|
|
# define IF_SQLITE3(...) __VA_ARGS__
|
|
|
|
#else
|
|
|
|
# define IF_SQLITE3(...)
|
|
|
|
#endif
|
2021-09-21 11:30:37 +02:00
|
|
|
#include <unistd.h>
|
2018-12-11 00:30:53 +01:00
|
|
|
|
2018-12-11 01:27:47 +01:00
|
|
|
static const char template[] =
|
|
|
|
"/* Generated file by tools/headerversions, do not edit! */\n"
|
2020-08-29 10:13:52 +02:00
|
|
|
IF_SQLITE3("/* SQLITE3 version: %u */\n")
|
2018-12-11 01:27:47 +01:00
|
|
|
"#include <ccan/err/err.h>\n"
|
2020-08-29 10:13:52 +02:00
|
|
|
IF_SQLITE3("#include <sqlite3.h>\n")
|
2018-12-11 01:27:47 +01:00
|
|
|
"\n"
|
|
|
|
"static inline void check_linked_library_versions(void)\n"
|
|
|
|
"{\n"
|
2020-08-29 10:13:52 +02:00
|
|
|
IF_SQLITE3(
|
2021-09-26 13:42:54 +02:00
|
|
|
" /* Require at least the version we compiled with. */"
|
|
|
|
" if (SQLITE_VERSION_NUMBER > sqlite3_libversion_number())\n"
|
2018-12-11 01:27:47 +01:00
|
|
|
" errx(1, \"SQLITE version mismatch: compiled %%u, now %%u\",\n"
|
|
|
|
" SQLITE_VERSION_NUMBER, sqlite3_libversion_number());\n"
|
2021-09-26 13:42:54 +02:00
|
|
|
" /* 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"
|
2020-08-29 10:13:52 +02:00
|
|
|
)
|
2018-12-11 01:27:47 +01:00
|
|
|
"}\n";
|
|
|
|
|
2018-12-11 00:30:53 +01:00
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
char *file, *new;
|
|
|
|
|
2018-12-11 01:27:47 +01:00
|
|
|
/* We don't bother with setup_locale(); we're a build tool */
|
2018-12-11 00:30:53 +01:00
|
|
|
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]);
|
|
|
|
|
2018-12-11 01:27:47 +01:00
|
|
|
new = tal_fmt(NULL, template,
|
2024-07-09 15:14:29 +02:00
|
|
|
IF_SQLITE3(sqlite3_libversion_number()));
|
2018-12-11 00:30:53 +01:00
|
|
|
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;
|
|
|
|
}
|