Subversion Repositories RepoView

Rev

Rev 1 | 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 3 2024-08-20 21:05:24Z 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
13
	printf("\n");
14
	return 0;
15
}