Rev 24 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
/* $Id: libs.c 27 2024-08-21 17:26:30Z nishi $ */
#include "config.h"
#include <stdio.h>
int main() {
#if defined(USE_SQLITE)
printf("-lsqlite3");
#elif defined(USE_GDBM)
printf("-lgdbm -lgdbm_compat");
#endif
printf(" ");
#if defined(USE_GRAPHICSMAGICK)
printf("-lGraphicsMagickWand");
#endif
printf(" ");
#if defined(USE_LIBPNG)
printf("-lpng16");
#endif
printf("\n");
return 0;
}