So I took a clean (compiled) copy of Julia from the website.
We can test SDL with:
ccall((:SDL_Init, "SDL"), Int32, (Uint32,), 0x00000020 )
and that works fine.
We can test SDL_image with
ccall((:IMG_Load, "SDL_image.dll"), Ptr{Void}, (Ptr{Uint8},), "test.png")
but I get:
"error compiling anonymous: could not load module SDL_image.dll: The specified mo
dule could not be found."
This works on Linux.
I didn't want to create an issue in case this is a SDL problem, rather than a Julia one. But if people think it is, I'll submit it.