From: Al A. <aa...@ge...> - 2005-02-20 18:14:22
|
Greetings, I'm having issues running the following configure command on my FreeBSD 5.2.1 machine: ./configure --with-perl-include="/usr/bin/perl" --with-pythonver=2.4 --without-postgres Notable results: > checking for pg_config... no > *** WARNING: POSTGRE NOT FOUND IN PATH. RLIB WILL NOT BE COMPILED WITH SUPPORT FOR IT > checking for gdlib-config... no > *** WARNING: GD NOT FOUND IN PATH. RLIB WILL NOT BE COMPILED WITH SUPPORT FOR IT > checking for PERL files... configure: WARNING: PERL bindings are not going to be used > checking iconv.h usability... no > checking iconv.h presence... no > checking for iconv.h... no > configure: error: cannot find iconf.h Warnings notwithstanding, how do I get past the error in which it can't find iconv.h and iconf.h? On my machine iconv.h can be found in /usr/include/sys/iconv.h I've tried this on both RLIB 1.2.1 and RLIB 1.3.1 -Al |
From: Bob D. <bd...@si...> - 2005-02-20 18:50:02
|
Hi, Hym... Any idea why iconv.h is in /usr/include/sys/iconv.h? I know RLIB does work on FreeBSD. Marty Kacin uses RLIB on FreeBSD For you maybe symlink iconv.h to /usr/include Any ideas Marty? - bob On Sun, 2005-02-20 at 12:14 -0600, Al Arzaga wrote: > Greetings, > > I'm having issues running the following configure command on my FreeBSD > 5.2.1 machine: > > ./configure --with-perl-include="/usr/bin/perl" --with-pythonver=2.4 > --without-postgres > > Notable results: > > checking for pg_config... no > > *** WARNING: POSTGRE NOT FOUND IN PATH. RLIB WILL NOT BE COMPILED WITH > SUPPORT FOR IT > > checking for gdlib-config... no > > *** WARNING: GD NOT FOUND IN PATH. RLIB WILL NOT BE COMPILED WITH SUPPORT > FOR IT > > checking for PERL files... configure: WARNING: PERL bindings are not going > to be used > > checking iconv.h usability... no > > checking iconv.h presence... no > > checking for iconv.h... no > > configure: error: cannot find iconf.h > > Warnings notwithstanding, how do I get past the error in which it can't find > iconv.h and iconf.h? On my machine iconv.h can be found in > /usr/include/sys/iconv.h > > I've tried this on both RLIB 1.2.1 and RLIB 1.3.1 > > > -Al > > > ------------------------------------------------------- > 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 > _______________________________________________ > Rlib-users mailing list > Rli...@li... > https://lists.sourceforge.net/lists/listinfo/rlib-users -- Bob Doan <bd...@si...> |
From: Marty K. <ma...@gm...> - 2005-02-21 21:53:11
|
Hey Guys, I've got iconv.h in both: ./usr/include/sys/iconv.h ./usr/local/include/iconv.h my dev environment (my RLIB compile env) will find the iconv in /usr/local/include. BTW, I don't find iconf.h anywhere on my system but my compiles are working fine. Per the warnings, you might have some path resolution issues and your dev env is not referencing /usr/include/sys by default? I script something similar to the following in order to compile and force some paths: freebsd>env CPPFLAGS="-I/usr/local/include -L/usr/local/lib" ./configure --prefix=/../rlib --exec-prefix=/../rlib --disable-utf8 This info is from a bsd 5.2.1 box. Hope it helps.... -marty On Sun, 20 Feb 2005 13:49:50 -0500, Bob Doan <bd...@si...> wrote: > Hi, > > Hym... Any idea why iconv.h is in /usr/include/sys/iconv.h? > > I know RLIB does work on FreeBSD. > Marty Kacin uses RLIB on FreeBSD > > For you maybe symlink iconv.h to /usr/include > > Any ideas Marty? > > - bob > > > On Sun, 2005-02-20 at 12:14 -0600, Al Arzaga wrote: > > Greetings, > > > > I'm having issues running the following configure command on my FreeBSD > > 5.2.1 machine: > > > > ./configure --with-perl-include="/usr/bin/perl" --with-pythonver=2.4 > > --without-postgres > > > > Notable results: > > > checking for pg_config... no > > > *** WARNING: POSTGRE NOT FOUND IN PATH. RLIB WILL NOT BE COMPILED WITH > > SUPPORT FOR IT > > > checking for gdlib-config... no > > > *** WARNING: GD NOT FOUND IN PATH. RLIB WILL NOT BE COMPILED WITH SUPPORT > > FOR IT > > > checking for PERL files... configure: WARNING: PERL bindings are not going > > to be used > > > checking iconv.h usability... no > > > checking iconv.h presence... no > > > checking for iconv.h... no > > > configure: error: cannot find iconf.h > > > > Warnings notwithstanding, how do I get past the error in which it can't find > > iconv.h and iconf.h? On my machine iconv.h can be found in > > /usr/include/sys/iconv.h > > > > I've tried this on both RLIB 1.2.1 and RLIB 1.3.1 > > > > > > -Al > > > > > > ------------------------------------------------------- > > 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 > > _______________________________________________ > > Rlib-users mailing list > > Rli...@li... > > https://lists.sourceforge.net/lists/listinfo/rlib-users > -- > Bob Doan <bd...@si...> > > |
From: Al A. <aa...@ge...> - 2005-02-22 03:09:14
|
Thanks, Marty. Actually, I do have iconv.h in both directories. I did not look thoroughly before I sent that first post. I followed your example and set CPPFLAGS accordingly. The configure was able to complete with just the warnings. However, when I run a make I get a '/usr/bin/ld: cannot find -ldl' and the make stops there. How do I get passed this one? -Al On Feb 21, 2005, at 3:52 PM, Marty Kacin wrote: > Hey Guys, > > I've got iconv.h in both: > > ./usr/include/sys/iconv.h > ./usr/local/include/iconv.h > > my dev environment (my RLIB compile env) will find the iconv in > /usr/local/include. BTW, I don't find iconf.h anywhere on my system > but my compiles are working fine. Per the warnings, you might have > some path resolution issues and your dev env is not referencing > /usr/include/sys by default? > > I script something similar to the following in order to compile and > force some paths: > > freebsd>env CPPFLAGS="-I/usr/local/include -L/usr/local/lib" > ./configure --prefix=/../rlib --exec-prefix=/../rlib --disable-utf8 > > This info is from a bsd 5.2.1 box. Hope it helps.... > > -marty > > > > On Sun, 20 Feb 2005 13:49:50 -0500, Bob Doan <bd...@si...> > wrote: >> Hi, >> >> Hym... Any idea why iconv.h is in /usr/include/sys/iconv.h? >> >> I know RLIB does work on FreeBSD. >> Marty Kacin uses RLIB on FreeBSD >> >> For you maybe symlink iconv.h to /usr/include >> >> Any ideas Marty? >> >> - bob >> >> >> On Sun, 2005-02-20 at 12:14 -0600, Al Arzaga wrote: >>> Greetings, >>> >>> I'm having issues running the following configure command on my >>> FreeBSD >>> 5.2.1 machine: >>> >>> ./configure --with-perl-include="/usr/bin/perl" --with-pythonver=2.4 >>> --without-postgres >>> >>> Notable results: >>>> checking for pg_config... no >>>> *** WARNING: POSTGRE NOT FOUND IN PATH. RLIB WILL NOT BE COMPILED >>>> WITH >>> SUPPORT FOR IT >>>> checking for gdlib-config... no >>>> *** WARNING: GD NOT FOUND IN PATH. RLIB WILL NOT BE COMPILED WITH >>>> SUPPORT >>> FOR IT >>>> checking for PERL files... configure: WARNING: PERL bindings are >>>> not going >>> to be used >>>> checking iconv.h usability... no >>>> checking iconv.h presence... no >>>> checking for iconv.h... no >>>> configure: error: cannot find iconf.h >>> >>> Warnings notwithstanding, how do I get past the error in which it >>> can't find >>> iconv.h and iconf.h? On my machine iconv.h can be found in >>> /usr/include/sys/iconv.h >>> >>> I've tried this on both RLIB 1.2.1 and RLIB 1.3.1 >>> >>> >>> -Al >>> >>> >>> ------------------------------------------------------- >>> 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 >>> _______________________________________________ >>> Rlib-users mailing list >>> Rli...@li... >>> https://lists.sourceforge.net/lists/listinfo/rlib-users >> -- >> Bob Doan <bd...@si...> >> >> |
From: Bob D. <bd...@si...> - 2005-02-22 11:55:20
|
Hi, Thats my bad. Remove "-ldl" from Makefile.am and re make This will be fixed in RLIB 1.3.2 - bob On Mon, 2005-02-21 at 21:09 -0600, Al Arzaga wrote: > Thanks, Marty. > > Actually, I do have iconv.h in both directories. I did not look > thoroughly before I sent that first post. > > I followed your example and set CPPFLAGS accordingly. The configure > was able to complete with just the warnings. However, when I run a > make I get a '/usr/bin/ld: cannot find -ldl' and the make stops there. > > How do I get passed this one? > > -Al > > On Feb 21, 2005, at 3:52 PM, Marty Kacin wrote: > > > Hey Guys, > > > > I've got iconv.h in both: > > > > ./usr/include/sys/iconv.h > > ./usr/local/include/iconv.h > > > > my dev environment (my RLIB compile env) will find the iconv in > > /usr/local/include. BTW, I don't find iconf.h anywhere on my system > > but my compiles are working fine. Per the warnings, you might have > > some path resolution issues and your dev env is not referencing > > /usr/include/sys by default? > > > > I script something similar to the following in order to compile and > > force some paths: > > > > freebsd>env CPPFLAGS="-I/usr/local/include -L/usr/local/lib" > > ./configure --prefix=/../rlib --exec-prefix=/../rlib --disable-utf8 > > > > This info is from a bsd 5.2.1 box. Hope it helps.... > > > > -marty > > > > > > > > On Sun, 20 Feb 2005 13:49:50 -0500, Bob Doan <bd...@si...> > > wrote: > >> Hi, > >> > >> Hym... Any idea why iconv.h is in /usr/include/sys/iconv.h? > >> > >> I know RLIB does work on FreeBSD. > >> Marty Kacin uses RLIB on FreeBSD > >> > >> For you maybe symlink iconv.h to /usr/include > >> > >> Any ideas Marty? > >> > >> - bob > >> > >> > >> On Sun, 2005-02-20 at 12:14 -0600, Al Arzaga wrote: > >>> Greetings, > >>> > >>> I'm having issues running the following configure command on my > >>> FreeBSD > >>> 5.2.1 machine: > >>> > >>> ./configure --with-perl-include="/usr/bin/perl" --with-pythonver=2.4 > >>> --without-postgres > >>> > >>> Notable results: > >>>> checking for pg_config... no > >>>> *** WARNING: POSTGRE NOT FOUND IN PATH. RLIB WILL NOT BE COMPILED > >>>> WITH > >>> SUPPORT FOR IT > >>>> checking for gdlib-config... no > >>>> *** WARNING: GD NOT FOUND IN PATH. RLIB WILL NOT BE COMPILED WITH > >>>> SUPPORT > >>> FOR IT > >>>> checking for PERL files... configure: WARNING: PERL bindings are > >>>> not going > >>> to be used > >>>> checking iconv.h usability... no > >>>> checking iconv.h presence... no > >>>> checking for iconv.h... no > >>>> configure: error: cannot find iconf.h > >>> > >>> Warnings notwithstanding, how do I get past the error in which it > >>> can't find > >>> iconv.h and iconf.h? On my machine iconv.h can be found in > >>> /usr/include/sys/iconv.h > >>> > >>> I've tried this on both RLIB 1.2.1 and RLIB 1.3.1 > >>> > >>> > >>> -Al > >>> > >>> > >>> ------------------------------------------------------- > >>> 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 > >>> _______________________________________________ > >>> Rlib-users mailing list > >>> Rli...@li... > >>> https://lists.sourceforge.net/lists/listinfo/rlib-users > >> -- > >> Bob Doan <bd...@si...> > >> > >> > > > ------------------------------------------------------- > 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 > _______________________________________________ > Rlib-users mailing list > Rli...@li... > https://lists.sourceforge.net/lists/listinfo/rlib-users -- Bob Doan <bd...@si...> |