Kevin Walzer wrote:
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1


I did change the dependency in the .info file to freetype2, but couldn't get 2.1.4 to build either. I got Scribus-Aqua to build after I installed

At least I am glad to hear this. Getting you to test scribus-aqua was one of my objectives :-) (seriously).


the binary package 2.1.3, but it looks like that may not be a long-term
solution. I have not tested the Scribus-Aqua build extensively yet.

The config.log file for freetype 2.1.9 is attached. Thanks for taking a
look.

This is almost completely identical to what I have, except the innocently-looking line at the beginning:
[]


generated by GNU Autoconf 2.59a.  Invocation command line was

$ ./builds/unix/configure --prefix=/sw/lib/freetype219

Here I am seeing

generated by GNU Autoconf 2.59a. Invocation command line was

$ ./configure --prefix=/sw/lib/freetype219

This is actually less innocent than it looks, it is exactly the same problem that gives you the crash afterwards. This command line comes from the make script builds/unix/detect.mk where one sees the follwing code


  have_mk := $(strip $(wildcard $(OBJ_DIR)/Makefile))
  ifneq ($(have_mk),)
    # we are building FT2 not in the src tree
    $(BUILD_DIR)/unix-def.mk: $(TOP_DIR)/builds/unix/unix-def.in
            $(TOP_DIR)/builds/unix/configure $(CFG)
  else
    $(BUILD_DIR)/unix-def.mk: $(TOP_DIR)/builds/unix/unix-def.in
            cd builds/unix; ./configure $(CFG)
  endif

It seems that you are ending up in the first clause and I in the second. The variable OBJ_DIR is defined in builds/unix/unix-def.mk as

  OBJ_DIR := $(shell cd $(TOP_DIR)/objs; pwd)

and I think it must be here where things are going wrong in your case. Either the call to shell or the cd command or the pwd command must give some unusual output. But I have still not seen how this can happen.

Your /sw is not a symlink to a partition with a name in its space or something similarly evil?

--
Martin



-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
_______________________________________________
Fink-beginners mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/fink-beginners

Reply via email to