diff options
Diffstat (limited to 'XLIBS.c')
-rw-r--r-- | XLIBS.c | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/XLIBS.c b/XLIBS.c deleted file mode 100644 index 14dc1e1..0000000 --- a/XLIBS.c +++ /dev/null @@ -1,23 +0,0 @@ -#define _POSIX_C_SOURCE 200112L -#define _FEATURE_CONFIG - -#include <stdio.h> - -#include "config.h" - -int n = 0; - -inline void put_lib_flag(const char *flag, int needed) { - if (needed) - printf("%s%s", n++ ? " " : "", flag); -} - -int main(int argc, char **argv) { - put_lib_flag("-lexif", EXIF_SUPPORT); - put_lib_flag("-lgif", GIF_SUPPORT); - - if (n) - printf("\n"); - - return 0; -} |