Marcus Meissner
662b013d9c
- Fix build of gmic with older 2.6 GIMP (SLE11). - Update to gmic-1.6.5.0: * https://www.flickr.com/groups/gmic/discuss/72157653514140862/ * New commands: -label3d, -head, -files * Improvements -repeat, -axes, -warn, -displacement, -files2video, -apply_files * Math parser now supports sqr() * Bugfixes: Iain Fergusson denoising with selections and new layers, video stream, -display garbage, -graph, -display_graph, -plot with plot_type=3, 3d rendering, -camera with specified resolution. - Update to gmic-1.6.3.1: * https://www.flickr.com/groups/gmic/discuss/72157652079823575/ * New commands: -pack, -x_landscape * Improvements for 3d object rendering with z-buffer * Shared gmicrc resource directory * Math parser supporrts isfile(path), isdir(path) and fdate() now. * libgmic now uses libpng, libtiff, libjpeg, libcurl, libfftw. * Added some tooltips (gimp plugin) * Bugfixes: Possible buffer overflows in plugins - Update to gmic-1.6.2.0: * https://www.flickr.com/groups/gmic/discuss/72157651409869115/ * New commands -apply_timeout, -boxfilter, -serialize, -unserialize, -fps, -transition. * New filters Sequences / Spatial transition, Colors / Transfer colors [advanced] * Improved error message line numbers in -if .. -endif block. * Improved -blur, -displacement, - input, -warp * Compressed storage of custom commands OBS-URL: https://build.opensuse.org/request/show/315257 OBS-URL: https://build.opensuse.org/package/show/graphics/gmic?expand=0&rev=5
19 lines
590 B
Diff
19 lines
590 B
Diff
Index: gmic-1.6.5.0/src/Makefile
|
|
===================================================================
|
|
--- gmic-1.6.5.0.orig/src/Makefile
|
|
+++ gmic-1.6.5.0/src/Makefile
|
|
@@ -132,11 +132,13 @@ endif
|
|
ifneq ($(OS),Darwin)
|
|
CHECKIMAGE_CFLAGS = -Dgmic_check_image
|
|
endif
|
|
|
|
+ifndef NO_OPENMP
|
|
# Flags to enable parallelization using OpenMP.
|
|
OPENMP_CFLAGS = -fopenmp -Dcimg_use_openmp
|
|
OPENMP_LIBS = -lgomp
|
|
+endif
|
|
|
|
# Flags to enable image display, using X11
|
|
# (keep /usr/ dirname here since X11 is located in /usr/ on Mac too).
|
|
# This requires the presence of the X11 include and library files.
|