[Fink-devel] SDL or libiconv problem?

2010-06-22 Thread David Lowe
This error just showed up during an 'update-all'.  

  #include SDL_mixer.h
 configure:23968: result: no
 configure:23968: checking SDL_mixer.h presence
 configure:23968: gcc -E -g -O2 -I/sw/include/SDL -D_GNU_SOURCE=1 
 -D_THREAD_SAFE conftest.c
 In file included from /sw/include/SDL/SDL_types.h:28,
  from /sw/include/SDL/SDL_mixer.h:28,
  from conftest.c:62:
 /sw/include/SDL/SDL_stdinc.h:74:20: error: iconv.h: No such file or directory
 configure:23968: $? = 1

I do have headers for SDL_types, SDL_mixer, and SDL_stdinc in 
/sw/include/SDL/.  Is this by any chance related to recent changes in libiconv?

Sent from my MacBookPro

It's a useless but absolutely vital precaution.
--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.devel
Subscription management:
https://lists.sourceforge.net/lists/listinfo/fink-devel


Re: [Fink-devel] SDL or libiconv problem?

2010-06-22 Thread Alexander Hansen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 6/22/10 3:48 PM, David Lowe wrote:
   This error just showed up during an 'update-all'.  
 
  #include SDL_mixer.h
 configure:23968: result: no
 configure:23968: checking SDL_mixer.h presence
 configure:23968: gcc -E -g -O2 -I/sw/include/SDL -D_GNU_SOURCE=1 
 -D_THREAD_SAFE conftest.c
 In file included from /sw/include/SDL/SDL_types.h:28,
  from /sw/include/SDL/SDL_mixer.h:28,
  from conftest.c:62:
 /sw/include/SDL/SDL_stdinc.h:74:20: error: iconv.h: No such file or directory
 configure:23968: $? = 1
 
   I do have headers for SDL_types, SDL_mixer, and SDL_stdinc in 
 /sw/include/SDL/.  

Right.  The build knows where _they_ are.  It's just barfing because it
can't find iconv.h.  The compiler test line is missing -I/sw/include,
so that'd explain why /sw/include/iconv.h isn't showing up.


Is this by any chance related to recent changes in libiconv?

 Sent from my MacBookPro
 
 It's a useless but absolutely vital precaution.


What package is failing?  It's kind of hard to try to reproduce the
error without knowing that.

- -- 
Alexander Hansen
Fink User Liaison
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (Darwin)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAkwhFXAACgkQB8UpO3rKjQ8nSACgjf0nPuiqOCVyTINhHQ57Wl4B
8tQAniUcLcmcAm3g/8al1zgnn03b0DJW
=g+0/
-END PGP SIGNATURE-

--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.devel
Subscription management:
https://lists.sourceforge.net/lists/listinfo/fink-devel


Re: [Fink-devel] SDL or libiconv problem?

2010-06-22 Thread Martin Costabel
David Lowe wrote:
   This error just showed up during an 'update-all'.  
 
  #include SDL_mixer.h
 configure:23968: result: no
 configure:23968: checking SDL_mixer.h presence
 configure:23968: gcc -E -g -O2 -I/sw/include/SDL -D_GNU_SOURCE=1 
 -D_THREAD_SAFE conftest.c
 In file included from /sw/include/SDL/SDL_types.h:28,
  from /sw/include/SDL/SDL_mixer.h:28,
  from conftest.c:62:
 /sw/include/SDL/SDL_stdinc.h:74:20: error: iconv.h: No such file or directory
 configure:23968: $? = 1
 
   I do have headers for SDL_types, SDL_mixer, and SDL_stdinc in 
 /sw/include/SDL/.  Is this by any chance related to recent changes in 
 libiconv?

It is probably related to your recent test of the libiconv package. 
Normally, the above would find /usr/include/iconv.h. I suspect you 
removed that for the test and forgot to move it back. It is, however, a 
good thing that /usr/include/iconv.h was not found in this situation, 
because this could lead to incompatibilities.

-- 
Martin



--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.devel
Subscription management:
https://lists.sourceforge.net/lists/listinfo/fink-devel


Re: [Fink-devel] SDL or libiconv problem?

2010-06-22 Thread David Lowe
On 22 Jun, 2010, at 1:56 PM, Alexander Hansen wrote:

 What package is failing?  It's kind of hard to try to reproduce the
 error without knowing that.

It's my experimental freeciv package.  It'd built fine before today so 
even though i'd made some changes at the request of the tracker, i didn't think 
anything on my end had changed enough to create a problem where i didn't have 
one previously.

Sent from my MacBookPro

Jesus appears at disco; states I've risen and I can't get down
--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.devel
Subscription management:
https://lists.sourceforge.net/lists/listinfo/fink-devel


Re: [Fink-devel] SDL or libiconv problem?

2010-06-22 Thread Alexander Hansen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 6/22/10 6:17 PM, David Lowe wrote:
 On 22 Jun, 2010, at 1:56 PM, Alexander Hansen wrote:
 
 What package is failing?  It's kind of hard to try to reproduce the
 error without knowing that.
 
   It's my experimental freeciv package.  It'd built fine before today so 
 even though i'd made some changes at the request of the tracker, i didn't 
 think anything on my end had changed enough to create a problem where i 
 didn't have one previously.
 
 Sent from my MacBookPro
 
 Jesus appears at disco; states I've risen and I can't get down

If Martin's right and you've moved /usr/include/iconv.h, put that back.

And your freeciv may need to be told to use fink's libiconv explicitly.
 Is there a configure flag to tell it to pick a particular libiconv?

- -- 
Alexander Hansen
Fink User Liaison
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (Darwin)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAkwhUukACgkQB8UpO3rKjQ+IqwCgnOs+AHS7bKTbtxkcA27NzkEv
IvcAnjhXL9BFjn/+ztqYblAOzVD57hL4
=eG99
-END PGP SIGNATURE-

--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.devel
Subscription management:
https://lists.sourceforge.net/lists/listinfo/fink-devel