Subversion Repositories RepoView

Rev

Rev 1 | Rev 23 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1 Rev 3
Line 1... Line 1...
1
/* $Id: libs.c 1 2024-08-20 19:18:25Z nishi $ */
1
/* $Id: libs.c 3 2024-08-20 21:05:24Z nishi $ */
2
 
2
 
3
#include "config.h"
3
#include "config.h"
4
 
4
 
5
#include <stdio.h>
5
#include <stdio.h>
6
 
6
 
7
int main(){
7
int main() {
8
#if defined(USE_SQLITE)
8
#if defined(USE_SQLITE)
9
	printf("-lsqlite3");
9
	printf("-lsqlite3");
10
#elif defined(USE_GDBM)
10
#elif defined(USE_GDBM)
11
	printf("-lgdbm -lgdbm_compat");
11
	printf("-lgdbm -lgdbm_compat");
12
#endif
12
#endif