diff --git a/GNUmakefile b/GNUmakefile index ffbd295..33f3b06 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -174,7 +174,7 @@ backends/%.o: CFLAGS_REAL+=$(BACKENDS_BUILD_CFLAGS_$(notdir $*)) $(EXTRA_CFLAGS_ $(SHARED_OBJECTS): backends/pqiv-backend-%.so: backends/%.o @[ -d backends ] || mkdir -p backends || true - $(SILENT_CCLD) $(CROSS)$(CC) -shared $(CPPFLAGS) $(EXTRA_CFLAGS_SHARED_OBJECTS) -o $@ $+ $(LDLIBS_REAL) $(LDFLAGS_REAL) $(BACKENDS_BUILD_LDLIBS_$*) $(EXTRA_LDFLAGS_SHARED_OBJECTS) + $(SILENT_CCLD) $(CROSS)$(CC) $(CPPFLAGS) $(EXTRA_CFLAGS_SHARED_OBJECTS) -o $@ $+ $(LDLIBS_REAL) $(LDFLAGS_REAL) $(BACKENDS_BUILD_LDLIBS_$*) $(EXTRA_LDFLAGS_SHARED_OBJECTS) -shared endif $(filter-out $(BACKENDS_INITIALIZER).o, $(OBJECTS)) $(HELPER_OBJECTS): %.o: $(SOURCEDIR)%.c $(HEADERS) diff --git a/README.markdown b/README.markdown index 60325ea..9ae6146 100644 --- a/README.markdown +++ b/README.markdown @@ -171,13 +171,14 @@ For some advanced uses of pqiv, take a look at these resouces: Changelog --------- -pqiv 2.10.3 +pqiv 2.10.4 * Fix output of `montage_mode_shift_y_rows()` in key bindings * Update the info text when the background pattern is cycled * Prevent potential crashes in poppler backend for rapid image movements * Fix processing of dangling symlinks in the file buffer * Removed possible deadlock in ImageMagick wand backend * Fix --command-9 shortcut + * Makefile: Move -shared compiler flag to the end of the command line pqiv 2.10 * Enable cursor auto-hide by default diff --git a/pqiv.h b/pqiv.h index 9e822ed..06dd20d 100644 --- a/pqiv.h +++ b/pqiv.h @@ -29,7 +29,7 @@ #include "lib/bostree.h" #ifndef PQIV_VERSION -#define PQIV_VERSION "2.10.3" +#define PQIV_VERSION "2.10.4" #endif #define FILE_FLAGS_ANIMATION (guint)(1)