Subversion Repositories RepoView

Rev

Rev 23 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 nishi 1
/* $Id: libs.c 24 2024-08-21 17:10:49Z 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
1 nishi 17
	printf("\n");
18
	return 0;
19
}