Remove unused dlz-filesystem feature check

There isn't any system test that uses this feature check.

(cherry picked from commit 2bb840bbc7)
This commit is contained in:
Nicki Křížek 2025-12-02 17:09:22 +01:00
parent 69851297ad
commit 46189a254b

View file

@ -53,7 +53,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");
@ -228,14 +227,6 @@ main(int argc, char **argv) {
return answer;
}
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;