Subversion Repositories RepoView

Rev

Rev 1 | Rev 24 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

/* $Id: libs.c 3 2024-08-20 21:05:24Z 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("\n");
        return 0;
}