Rev 23 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
/* $Id: libs.c 24 2024-08-21 17:10:49Z 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("\n");
return 0;
}