#################################################
##              Modification 1                 ##
#################################################



Modifications G'MIC du fichier "CImg.h" pour OpenCV (installation standard) :

#include <cstddef>
#include <opencv2/opencv.hpp>
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>

	remplace :

#include <cstddef>
#include "cv.h"
#include "highgui.h"


Modifications G'MIC du fichier "CImg.h" pour OpenCV (installation MSYS2 GCC 6.3.0 ) :


#include <cstddef>
#include <opencv/cv.h>
#include <opencv/highgui.h>

	remplace :

#include <cstddef>
#include "cv.h"
#include "highgui.h"





#################################################
##              Modification 2                 ##
#################################################



Modifications G'MIC du fichier "gmic.cpp" pour la localisation du fichier "user.gmic" dans le rpertoire dfini par la variable d'environnement "GMIC_GIMP_PATH".

Dans la section :
// Get path to .gmic user file.



_path_user = getenv("GMIC_GIMP_PATH");

	remplace :

_path_user = getenv("APPDATA");


#################################################
##              Modification 3                 ##
#################################################


Modifications G'MIC du fichier "makefile" pour ralentir aprs un 'strip'.

AJOUTER (par exemple) :

echo gmic_gimp$(VERSION1)$(EXE)

AVANT

$(STRIP) gmic_gimp$(VERSION1)$(EXE)

*****

pour les les autres 'strip' ajouter des lignes 'echo' AVANT , par exemple :

echo STRIP





















