ソースを参照

Add build options for optional dependencies

master
Vlad Glagolev 8年前
コミット
22436f747d
1個のファイルの変更4行の追加1行の削除
  1. +4
    -1
      Makefile

+ 4
- 1
Makefile ファイルの表示

@@ -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



読み込み中…
キャンセル
保存