Explorar el Código

Add build options for optional dependencies

master
Vlad Glagolev hace 8 años
padre
commit
22436f747d
Se han modificado 1 ficheros con 4 adiciones y 1 borrados
  1. +4
    -1
      Makefile

+ 4
- 1
Makefile Ver fichero

@@ -11,12 +11,15 @@ LIBS := -lImlib2 -lX11 -lXft

# optional dependencies:
# giflib: gif animations
ifeq ($(WITH_GIFLIB), 1)
CPPFLAGS += -DHAVE_GIFLIB
LIBS += -lgif
endif
# libexif: jpeg auto-orientation, exif thumbnails
ifeq ($(WITH_LIBEXIF), 1)
CPPFLAGS += -DHAVE_LIBEXIF
LIBS += -lexif
endif

.PHONY: clean install uninstall



Cargando…
Cancelar
Guardar