Subversion Repositories RepoView

Rev

Rev 24 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 24 Rev 27
Line 1... Line 1...
1
/* $Id: libs.c 24 2024-08-21 17:10:49Z nishi $ */
1
/* $Id: libs.c 27 2024-08-21 17:26:30Z nishi $ */
2
 
2
 
3
#include "config.h"
3
#include "config.h"
4
 
4
 
5
#include <stdio.h>
5
#include <stdio.h>
6
 
6
 
Line 12... Line 12...
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
#endif
16
#endif
-
 
17
	printf(" ");
-
 
18
#if defined(USE_LIBPNG)
-
 
19
	printf("-lpng16");
-
 
20
#endif
17
	printf("\n");
21
	printf("\n");
18
	return 0;
22
	return 0;
19
}
23
}