Date: Wed, 12 Mar 2003 02:38:26 EST-10EDT,10,-1,0,7200,3,-1,0,7200,3600 Subject: [Ux2bs_Archive] No. 103 ************************************************** Tuesday 11 March 2003 Number 103 ************************************************** Subjects for today 1 Re: Problems building GREP : Andreas Buening 2 Re: Apache : Ted Sikora 3 Re: Apache : John Poltorak 4 Re: Apache : Hannes Hromadka 5 Re: Apache : Hannes Hromadka **= Email 1 ==========================** Date: Wed, 12 Mar 2003 00:58:59 +0100 From: Andreas Buening Subject: Re: Problems building GREP John Poltorak wrote: > > On Mon, Mar 10, 2003 at 10:00:52PM +0100, Andreas Buening wrote: > > John Poltorak wrote: > > > > > > Here is part of my build log:- > > > > [snip] > > > > > checking for GNU gettext in libc... no > > > checking for GNU gettext in libintl... no > > > > [snip] > > > > > It seems there are a few differences... You have gettext in libintl, but I > > > don't. How do I check that manually? > > > > Depending on whether you use -Zomf or not you need a intl.lib or intl.a > > in your LIBRARY_PATH. > > I've tried creating intl.a, intl.lib, libintl.a, libintl.lib. I've also > tried compiling with and without -Zomf, but can't find any way for the > check for GNU gettext in libintl to come back with yes... intl.a and intl.lib are definitely enough. > There must be some way of finding out why configure doesn't find it... You can look at config.log. There should be lines like that: ---------------- configure:7994: checking for GNU gettext in libintl configure:8027: gcc -o conftest.exe -Os -Zomf -Zmt -Wall -D__ST_MT_ERRNO__ -s -Zcrtdll -Zlinker /exepack:2 -Zlinker /pm:vio -Zstack 0x8000 conftest.c -lgcc -lintl >&5 configure:8030: $? = 0 configure:8033: test -s conftest.exe configure:8036: $? = 0 configure:8097: result: yes configure:8148: checking how to link with libintl configure:8150: result: -lintl ---------------- The first line is the configure output, the second is the compiler command and all what follows is the result. A failing test looks like that: ---------------- configure:7566: checking for GNU gettext in libc configure:7591: gcc -o conftest.exe -Os -Zomf -Zmt -Wall -D__ST_MT_ERRNO__ -s -Zcrtdll -Zlinker /exepack:2 -Zlinker /pm:vio -Zstack 0x8000 conftest.c -lgcc >&5 d:\temp\cci4k0ZO.obj(cci4k0ZO.obj) : error L2029: 'bindtextdomain' : unresolved external d:\temp\cci4k0ZO.obj(cci4k0ZO.obj) : error L2029: '_nl_msg_cat_cntr' : unresolved external d:\temp\cci4k0ZO.obj(cci4k0ZO.obj) : error L2029: 'gettext' : unresolved external d:\temp\cci4k0ZO.obj(cci4k0ZO.obj) : error L2029: 'ngettext' : unresolved external d:\temp\cci4k0ZO.obj(cci4k0ZO.obj) : error L2029: '_nl_domain_bindings' : unresolved external There were 5 errors detected configure:7594: $? = 1 configure: failed program was: ... ---------------- > I guess I need to download your binary version of gettext and see if it > will find the versions included in that... > > I can't see that I'm doing anything wrong, and AFAICT, I've followed your > build instructions as closely as possible. I have no clue, too. :-( Bye, Andreas -- One OS to rule them all, One OS to find them, One OS to bring them all and in the darkness bind them In the Land of Mordor where the Shadows lie. _______________________________________________ UX2BS mailing list UX2BS at os2ports.com http://os2ports.com/mailman/listinfo/ux2bs **= Email 2 ==========================** Date: Wed, 12 Mar 2003 09:04:40 +0000 From: Ted Sikora Subject: Re: Apache John Poltorak wrote: > On Wed, Mar 12, 2003 at 01:10:56PM +0100, Hannes Hromadka wrote: > >>On Tue, Mar 11, 2003 at 02:38:16PM +0000, John Poltorak wrote: >> >> >>>I'd like to have a go at building it... Is it possible to use a build >>>prefix on OS/2? >>> >>>Has anyone tried building it? How difficult is it? >> >>Which one ? >>1.3.27 or 2.0.44 ? > > > AIUI v2 takes advantage of threads and is much better suited to an OS/2 > environment, although from what you say it may not yet be ready for > primetime... > It is! I'm in the process of switching all our sites over and mine too. Runs great! > >>I _compiled_ 1.3.27 with SSL according to >>http://silk.apana.org.au/apache/building.html >> >>This worked "out of the box" and I could build mod_rexx with SSL support >>after that. > > > What I'm hoping to do is devise a a build script for UX2BS which will > enable Apache to be built simply by running:- > > build apache > > I'll see how far I get... > > >>Than I tried 2.0.44 with a minimalistic configuration building just one >>module. Here I could run configure, but make failed somewhere >> >>I gave up, because Apache 2 is still not very stable for dynamic sites >>using heavy PHP and mysql stuff. >> >>I suggest you have a look the configure file from Brian. > > > Will do. > > >> Ciao, Hannes >> >>-- >>Johannes Hromadka | Email Office: HromadkaJ at gmx.at >> | Home : Johannes.Hromadka at gmx.net >>Vienna/Austria/Europe | OECC: http://www.oecc.org/ >> >>>>>Rust never sleeps (borrowed from Neil YOUNG) <<< >>>> > > -- -- Ted Sikora tsikora at ntplx.net _______________________________________________ UX2BS mailing list UX2BS at os2ports.com http://os2ports.com/mailman/listinfo/ux2bs **= Email 3 ==========================** Date: Wed, 12 Mar 2003 12:52:16 +0000 From: John Poltorak Subject: Re: Apache On Wed, Mar 12, 2003 at 01:10:56PM +0100, Hannes Hromadka wrote: > On Tue, Mar 11, 2003 at 02:38:16PM +0000, John Poltorak wrote: > > > I'd like to have a go at building it... Is it possible to use a build > > prefix on OS/2? > > > > Has anyone tried building it? How difficult is it? > > Which one ? > 1.3.27 or 2.0.44 ? AIUI v2 takes advantage of threads and is much better suited to an OS/2 environment, although from what you say it may not yet be ready for primetime... > > I _compiled_ 1.3.27 with SSL according to > http://silk.apana.org.au/apache/building.html > > This worked "out of the box" and I could build mod_rexx with SSL support > after that. What I'm hoping to do is devise a a build script for UX2BS which will enable Apache to be built simply by running:- build apache I'll see how far I get... > Than I tried 2.0.44 with a minimalistic configuration building just one > module. Here I could run configure, but make failed somewhere > > I gave up, because Apache 2 is still not very stable for dynamic sites > using heavy PHP and mysql stuff. > > I suggest you have a look the configure file from Brian. Will do. > > Ciao, Hannes > > -- > Johannes Hromadka | Email Office: HromadkaJ at gmx.at > | Home : Johannes.Hromadka at gmx.net > Vienna/Austria/Europe | OECC: http://www.oecc.org/ > >>> Rust never sleeps (borrowed from Neil YOUNG) <<< -- John _______________________________________________ UX2BS mailing list UX2BS at os2ports.com http://os2ports.com/mailman/listinfo/ux2bs **= Email 4 ==========================** Date: Wed, 12 Mar 2003 13:10:56 +0100 From: Hannes Hromadka Subject: Re: Apache On Tue, Mar 11, 2003 at 02:38:16PM +0000, John Poltorak wrote: > I'd like to have a go at building it... Is it possible to use a build > prefix on OS/2? > > Has anyone tried building it? How difficult is it? Which one ? 1.3.27 or 2.0.44 ? I _compiled_ 1.3.27 with SSL according to http://silk.apana.org.au/apache/building.html This worked "out of the box" and I could build mod_rexx with SSL support after that. Than I tried 2.0.44 with a minimalistic configuration building just one module. Here I could run configure, but make failed somewhere I gave up, because Apache 2 is still not very stable for dynamic sites using heavy PHP and mysql stuff. I suggest you have a look the configure file from Brian. Ciao, Hannes -- Johannes Hromadka | Email Office: HromadkaJ at gmx.at | Home : Johannes.Hromadka at gmx.net Vienna/Austria/Europe | OECC: http://www.oecc.org/ >>> Rust never sleeps (borrowed from Neil YOUNG) <<< _______________________________________________ UX2BS mailing list UX2BS at os2ports.com http://os2ports.com/mailman/listinfo/ux2bs **= Email 5 ==========================** Date: Wed, 12 Mar 2003 17:23:31 +0100 From: Hannes Hromadka Subject: Re: Apache On Wed, Mar 12, 2003 at 12:52:16PM +0000, John Poltorak wrote: > > What I'm hoping to do is devise a a build script for UX2BS which will > enable Apache to be built simply by running:- > > build apache There are sooooooo many options to configure it, what will be in the "standard" I need (at least): mod_php4.c, mod_ssl.c, mod_headers.c, mod_auth.c, mod_access.c, mod_alias.c, mod_dir.c, mod_autoindex.c, mod_info.c, mod_status.c, Ciao, Hannes -- Johannes Hromadka | Email Office: HromadkaJ at gmx.at | Home : Johannes.Hromadka at gmx.net Vienna/Austria/Europe | OECC: http://www.oecc.org/ >>> Rust never sleeps (borrowed from Neil YOUNG) <<< _______________________________________________ UX2BS mailing list UX2BS at os2ports.com http://os2ports.com/mailman/listinfo/ux2bs