Subversion Repositories RepoView

Rev

Rev 24 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 nishi 1
/* $Id: libs.c 27 2024-08-21 17:26:30Z nishi $ */
2
 
3
#include "config.h"
4
 
5
#include <stdio.h>
6
 
3 nishi 7
int main() {
1 nishi 8
#if defined(USE_SQLITE)
9
	printf("-lsqlite3");
10
#elif defined(USE_GDBM)
11
	printf("-lgdbm -lgdbm_compat");
12
#endif
23 nishi 13
	printf(" ");
14
#if defined(USE_GRAPHICSMAGICK)
15
	printf("-lGraphicsMagickWand");
16
#endif
27 nishi 17
	printf(" ");
18
#if defined(USE_LIBPNG)
19
	printf("-lpng16");
20
#endif
1 nishi 21
	printf("\n");
22
	return 0;
23
}