Remove unused dlz-filesystem feature check

There isn't any system test that uses this feature check.
This commit is contained in:
Nicki Křížek 2025-12-02 17:09:22 +01:00
parent 789e40bd4c
commit 2bb840bbc7

View file

@ -55,7 +55,6 @@ usage(void) {
fprintf(stderr, "\t--md5\n");
fprintf(stderr, "\t--rsasha1\n");
fprintf(stderr, "\t--tsan\n");
fprintf(stderr, "\t--with-dlz-filesystem\n");
fprintf(stderr, "\t--with-libidn2\n");
fprintf(stderr, "\t--with-lmdb\n");
fprintf(stderr, "\t--with-libnghttp2\n");
@ -214,14 +213,6 @@ main(int argc, char **argv) {
return 0;
}
if (strcmp(argv[1], "--with-dlz-filesystem") == 0) {
#ifdef DLZ_FILESYSTEM
return 0;
#else /* ifdef DLZ_FILESYSTEM */
return 1;
#endif /* ifdef DLZ_FILESYSTEM */
}
if (strcmp(argv[1], "--with-libidn2") == 0) {
#ifdef HAVE_LIBIDN2
return 0;