Subversion Repositories RepoView

Rev

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

Rev Author Line No. Line
1 nishi 1
#include "config.h"
2
 
3
#include <stdio.h>
4
 
3 nishi 5
int main() {
1 nishi 6
#if defined(USE_SQLITE)
7
	printf("db/sqlite.o");
8
#elif defined(USE_GDBM) || defined(USE_NDBM)
9
	printf("db/dbm.o");
10
#endif
11
	printf(" ");
12
#if defined(USE_MODERN)
13
	printf("theme/modern.o");
14
#elif defined(USE_OPTIMIZED)
15
	printf("theme/optimized.o");
16
#endif
17
	printf(" ");
18
#if defined(USE_COOKIE)
19
	printf("auth/cookie.o");
20
#endif
21
	printf("\n");
22
	return 0;
23
}