From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,5ec8c2333db24f01 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-02-01 10:46:33 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!canoe.uoregon.edu!hammer.uoregon.edu!skates!not-for-mail From: Stephen Leake Newsgroups: comp.lang.ada Subject: Re: ImageMagick libs and Ada Date: 01 Feb 2002 13:46:15 -0500 Organization: NASA Goddard Space Flight Center Message-ID: References: <50c1a1b.0202010746.3ee4bd7a@posting.google.com> NNTP-Posting-Host: anarres.gsfc.nasa.gov Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: skates.gsfc.nasa.gov 1012589421 2197 128.183.220.71 (1 Feb 2002 18:50:21 GMT) X-Complaints-To: dscoggin@cne-odin.gsfc.nasa.gov NNTP-Posting-Date: 1 Feb 2002 18:50:21 GMT User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/20.7 Xref: archiver1.google.com comp.lang.ada:19501 Date: 2002-02-01T18:50:21+00:00 List-Id: x24702@usma.edu (Zach Swanson) writes: > I'm hoping that perhaps someone here has tried to use the ImageMagick > graphics suite and sucessfully imported functions into Ada95. > > Working on my senior year capstone project at USMA, my team is > developing a computer vision system and doing some parabolic mirror > image undistortion using ImageMagick-5.4.1 to access the > bitmaps/pixels. We are compiling the C code in Cygwin, and the Ada > code using GNAT under Windows 2000. GNAT provides a fully functional C compiler; use that instead of Cygwin. It will be far easier to sort out the object and library dependencies. > "In function 'GetImageMagick' magick.c:178: undefined reference to > '__assert' > Other values that the linker is unable to reconcile are __impure_ptr > and __errno. Assert and errno are from the c library. __impure_ptr is from the Cygwin emulation layer. -- -- Stephe