]> git.notmuchmail.org Git - notmuch/blob - compat/gen_zlib_pc.c
Merge tag 'debian/0.29.2-2'
[notmuch] / compat / gen_zlib_pc.c
1 #include <stdio.h>
2 #include <zlib.h>
3
4 static const char *template =
5     "prefix=/usr\n"
6     "exec_prefix=${prefix}\n"
7     "libdir=${exec_prefix}/lib\n"
8     "\n"
9     "Name: zlib\n"
10     "Description: zlib compression library\n"
11     "Version: %s\n"
12     "Libs: -lz\n";
13
14 int
15 main (void)
16 {
17     printf (template, ZLIB_VERSION);
18     return 0;
19 }