Took me a long time to debug why I could not open nef files in Windows. Turns out that the additional ifdef in raw-load.c was the culprit. Comment out Lines 38 - 43 and it's all good. :) File to modify gegl/operations/common/raw-load.c: /** #ifdef _WIN32 #include <io.h> #include <process.h> #define popen(n,m) _popen(n,m) #define pclose(f) _pclose(f) #endif **/ I also modifed PIPE_MODE "r" to PIPE_MODE "rb"; i.e. #ifdef _WIN32 #define PIPE_MODE "rb" #else #define PIPE_MODE "r" #endif Now the only problem is that to open a nef file, you have to explicitly select NEF as the file type since you cannot rely on the automatic detection which defaults to a TIFF thumbnail. Thanks, Partha _______________________________________________ gimp-developer-list mailing list List address: gimp-developer-list@xxxxxxxxx List membership: https://mail.gnome.org/mailman/listinfo/gimp-developer-list List archives: https://mail.gnome.org/archives/gimp-developer-list