Subversion Repositories RepoView

Rev

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

Rev 3 Rev 23
Line 1... Line 1...
1
/* $Id: libs.c 3 2024-08-20 21:05:24Z nishi $ */
1
/* $Id: libs.c 23 2024-08-21 16:58:31Z nishi $ */
2
 
2
 
3
#include "config.h"
3
#include "config.h"
4
 
4
 
5
#include <stdio.h>
5
#include <stdio.h>
6
 
6
 
Line 8... Line 8...
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
-
 
13
	printf(" ");
-
 
14
#if defined(USE_GRAPHICSMAGICK)
-
 
15
	printf("-lGraphicsMagickWand");
-
 
16
#elif defined(USE_IMAGEMAGICK)
-
 
17
#ifdef __NetBSD__
-
 
18
	printf("-lMagickWand-7.Q16HDRI");
-
 
19
#else
-
 
20
	printf("-lMagickWand-7");
-
 
21
#endif
-
 
22
#endif
13
	printf("\n");
23
	printf("\n");
14
	return 0;
24
	return 0;
15
}
25
}