Subversion Repositories RepoView

Rev

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

Rev 23 Rev 24
Line 1... Line 1...
1
/* $Id: libs.c 23 2024-08-21 16:58:31Z nishi $ */
1
/* $Id: libs.c 24 2024-08-21 17:10:49Z nishi $ */
2
 
2
 
3
#include "config.h"
3
#include "config.h"
4
 
4
 
5
#include <stdio.h>
5
#include <stdio.h>
6
 
6
 
Line 11... Line 11...
11
	printf("-lgdbm -lgdbm_compat");
11
	printf("-lgdbm -lgdbm_compat");
12
#endif
12
#endif
13
	printf(" ");
13
	printf(" ");
14
#if defined(USE_GRAPHICSMAGICK)
14
#if defined(USE_GRAPHICSMAGICK)
15
	printf("-lGraphicsMagickWand");
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
16
#endif
23
	printf("\n");
17
	printf("\n");
24
	return 0;
18
	return 0;
25
}
19
}