Search found 5 matches
- 2016-12-22T09:15:40-07:00
- Forum: Developers
- Topic: Unsetting MAGICKCORE_HAVE_SYS_TIMEB_H
- Replies: 4
- Views: 10188
Re: Unsetting MAGICKCORE_HAVE_SYS_TIMEB_H
Thanks for pushing me in the right direction! I was using the x86 toolchain for configuration, which is android-16, which has a <sys/timeb.h>. With the correct toolchain, HAVE_SYS_TIMEB_H is not defined.
- 2016-12-22T04:14:25-07:00
- Forum: Developers
- Topic: Unsetting MAGICKCORE_HAVE_SYS_TIMEB_H
- Replies: 4
- Views: 10188
Re: Unsetting MAGICKCORE_HAVE_SYS_TIMEB_H
Okay, but what is the proper fix here? Sould not # if defined(MAGICKCORE_HAVE_SYS_TIMEB_H) # include <sys/timeb.h> be changed to # if MAGICKCORE_HAVE_SYS_TIMEB_H # include <sys/timeb.h> ? MAGICKCORE_HAVE_SYS_TIMEB_H is always defined, either by the user or with the default 1. I can send a PR if I ...
- 2016-12-21T15:44:43-07:00
- Forum: Developers
- Topic: Unsetting MAGICKCORE_HAVE_SYS_TIMEB_H
- Replies: 4
- Views: 10188
Unsetting MAGICKCORE_HAVE_SYS_TIMEB_H
I try to compile ImageMagick with an Android/arm64 toolchain from Crystax NDK, that has no <sys/timeb.h>. Now I found MAGICKCORE_HAVE_SYS_TIMEB_H, which should enable me to say this header is not available – I guess. Greping over the source shows 3 places where MAGICKCORE_HAVE_SYS_TIMEB_H is used: ...
- 2016-12-11T17:04:19-07:00
- Forum: Bugs
- Topic: Obsolete RegisterJPGImage in static.h
- Replies: 2
- Views: 3208
Re: Obsolete RegisterJPGImage in static.h
Thanks a lot.
- 2016-12-09T08:36:30-07:00
- Forum: Bugs
- Topic: Obsolete RegisterJPGImage in static.h
- Replies: 2
- Views: 3208
Obsolete RegisterJPGImage in static.h
In static.h the symbols RegisterJPGImage and UnregisterJPGImage are declared. Those are not defined in the ImageMagick project.
Looks like those have been replaced by RegisterJPEGImage and UnregisterJPEGImage.
Looks like those have been replaced by RegisterJPEGImage and UnregisterJPEGImage.