diff options
author | Olof-Joachim Frahm (欧雅福) <olof@macrolet.net> | 2021-07-24 13:43:48 +0200 |
---|---|---|
committer | Daniel Friesel <derf@chaosdorf.de> | 2021-07-24 20:42:46 +0200 |
commit | b5c190fa42876b991ddd68ce9175cc2d390e4d4c (patch) | |
tree | 03438efdf2275db7f5c896157ec3d01c9e593aa2 /src/filelist.c | |
parent | 66fb4bc4a8f449d8065730a02049c0283c618e02 (diff) |
Fix implicit definition of `strverscmp`.
Diffstat (limited to 'src/filelist.c')
-rw-r--r-- | src/filelist.c | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/src/filelist.c b/src/filelist.c index e70e003..0aeaa02 100644 --- a/src/filelist.c +++ b/src/filelist.c @@ -24,19 +24,15 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -#ifdef HAVE_LIBEXIF -#include <libexif/exif-data.h> -#endif - -#ifdef HAVE_LIBCURL -#include <curl/curl.h> -#endif - #include "feh.h" #include "filelist.h" #include "signals.h" #include "options.h" +#ifdef HAVE_LIBCURL +#include <curl/curl.h> +#endif + gib_list *filelist = NULL; gib_list *original_file_items = NULL; /* original file items from argv */ int filelist_len = 0; |