mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 19:08:09 +01:00
19 lines
305 B
C
19 lines
305 B
C
|
#include <stdio.h>
|
||
|
#include <zlib.h>
|
||
|
|
||
|
static const char *template =
|
||
|
"prefix=/usr\n"
|
||
|
"exec_prefix=${prefix}\n"
|
||
|
"libdir=${exec_prefix}/lib\n"
|
||
|
"\n"
|
||
|
"Name: zlib\n"
|
||
|
"Description: zlib compression library\n"
|
||
|
"Version: %s\n"
|
||
|
"Libs: -lz\n";
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
printf(template, ZLIB_VERSION);
|
||
|
return 0;
|
||
|
}
|