From kiril@u.washington.edu Mon Jun 15 07:51:25 1998 From: kiril@u.washington.edu To: users@lists.opensuse.org Subject: [S.u.S.E. Linux] Postgres 6.3.2 Date: Mon, 15 Jun 1998 00:51:25 -0700 Message-ID: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============1314107475331881224==" --===============1314107475331881224== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Has anybody been able to load postgres 6.3.2 with SuSE 5.1? For some reason I can not get psql to compile in the make. The version of postgres that came with SuSE 5.1--postgres 6.2-- seems to load off the distribution disks with no problem. Although I would much prefer that SuSE loaded postgres in /usr/local/pgsql and not in /usr/bin. Thanks for any help. Kerry -- To get out of this list, please send email to majordomo(a)suse.com with this text in its body: unsubscribe suse-linux-e --===============1314107475331881224==-- From ke@suse.de Mon Jun 15 09:04:40 1998 From: ke@suse.de To: users@lists.opensuse.org Subject: Re: [S.u.S.E. Linux] Postgres 6.3.2 Date: Mon, 15 Jun 1998 11:04:40 +0200 Message-ID: In-Reply-To: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============7202655942536868243==" --===============7202655942536868243== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Kerry Boguszewski-Odom writes: | Has anybody been able to load postgres 6.3.2 with SuSE 5.1? Not tested -- but it definitely works with 5.2. Please, apply the configure.in patch I posted last week. | Although I would much prefer that SuSE loaded postgres in | /usr/local/pgsql and not in /usr/bin. /usr/local is not an option -- but I consider to use sonmething like /usr/lib/pgsql in the future (maybe with 6.0, not with 5.3). --=20 Karl Eichwalder S.u.S.E. GmbH Fax +49-911-3206727 ke(a)suse.de Gebhardtstrasse 2 Mo & Th 13:00-18:00: http://www.s= use.de> 90762 Fuerth, Germany Hotline +49-911-3247130 -- To get out of this list, please send email to majordomo(a)suse.com with this text in its body: unsubscribe suse-linux-e --===============7202655942536868243==-- From kiril@u.washington.edu Mon Jun 15 16:11:42 1998 From: kiril@u.washington.edu To: users@lists.opensuse.org Subject: Re: [S.u.S.E. Linux] Postgres 6.3.2 Date: Mon, 15 Jun 1998 09:11:42 -0700 Message-ID: In-Reply-To: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============4812967299570653952==" --===============4812967299570653952== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit On 15 Jun 1998, Karl Eichwalder wrote: > > Not tested -- but it definitely works with 5.2. Please, apply the > configure.in patch I posted last week. > Okay, I'm going to try to load postgres 6.3.2 with SuSE 5.1 and I found the patch that was posted last week. But how does one apply this patch? I am eager to use the new features of postgres 6.3.2. Thanks for any help. Kerry -- To get out of this list, please send email to majordomo(a)suse.com with this text in its body: unsubscribe suse-linux-e --===============4812967299570653952==-- From ke@suse.de Mon Jun 15 16:36:33 1998 From: ke@suse.de To: users@lists.opensuse.org Subject: Re: [S.u.S.E. Linux] Postgres 6.3.2 Date: Mon, 15 Jun 1998 18:36:33 +0200 Message-ID: In-Reply-To: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============1260003477220730911==" --===============1260003477220730911== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Kerry Boguszewski-Odom writes: | Okay, I'm going to try to load postgres 6.3.2 with SuSE 5.1 and I found | the patch that was posted last week. But how does one apply this patch? | I am eager to use the new features of postgres 6.3.2. Thanks for any | help. Save this mail as a file (e.g. postgresql.diff), change into the directory `postgresql-6.3.2': cd .../postgresql-6.3.2 and say: patch -p1 < .../postgresql.diff then invoke `autoconf' to produce a new configure script. Replace the dots (`...') with your paths. Here's the patch again: *** postgresql-6.3.2/src/configure.in~ Fri Apr 17 09:00:46 1998 --- postgresql-6.3.2/src/configure.in Mon May 11 17:37:34 1998 *************** *** 305,311 **** dnl fi dnl AC_SUBST(HAVECXX) dnl **************************************************************** ! HAVECXX=3D'HAVE_Cplusplus=3Dfalse' AC_SUBST(HAVECXX) INSTALLPATH=3D"/usr/ucb:$PATH" AC_PATH_PROGS(INSTALL, ginstall installbsd bsdinst scoinst install, NONE, $= INSTALLPATH) --- 305,311 ---- dnl fi dnl AC_SUBST(HAVECXX) dnl **************************************************************** ! HAVECXX=3D'HAVE_Cplusplus=3Dtrue' AC_SUBST(HAVECXX) INSTALLPATH=3D"/usr/ucb:$PATH" AC_PATH_PROGS(INSTALL, ginstall installbsd bsdinst scoinst install, NONE, $= INSTALLPATH) *************** *** 400,406 **** fi =20 AC_CHECK_LIB(sfio, main) ! AC_CHECK_LIB(curses, main) AC_CHECK_LIB(termcap, main) AC_CHECK_LIB(history, main) AC_CHECK_LIB(readline, main) --- 400,409 ---- fi =20 AC_CHECK_LIB(sfio, main) ! for curses in ncurses curses ; do ! AC_CHECK_LIB(${curses}, main, ! [LIBS=3D"-l${curses} $LIBS"; break]) ! done AC_CHECK_LIB(termcap, main) AC_CHECK_LIB(history, main) AC_CHECK_LIB(readline, main) -- To get out of this list, please send email to majordomo(a)suse.com with this text in its body: unsubscribe suse-linux-e --===============1260003477220730911==-- From kiril@u.washington.edu Tue Jun 16 06:43:21 1998 From: kiril@u.washington.edu To: users@lists.opensuse.org Subject: Re: [S.u.S.E. Linux] Postgres 6.3.2 Date: Mon, 15 Jun 1998 23:43:21 -0700 Message-ID: In-Reply-To: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============6512318814756148799==" --===============6512318814756148799== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Hi, I tried the patch and reran the ./configure script, but still the same problem. The following is from the make.log from the make all. gcc -o psql -L../../interfaces/libpq psql.o stringutils.o -lpq -ldl -lm -lbsd -lreadline -lhistory -export-dynamic /usr/lib/libreadline.a(display.o): In function `rl_redisplay': display.o(.text+0x9bf): undefined reference to `tputs' /usr/lib/libreadline.a(display.o): In function `update_line': display.o(.text+0xf26): undefined reference to `tputs' /usr/lib/libreadline.a(display.o): In function `_rl_move_cursor_relative': display.o(.text+0x11e6): undefined reference to Rats!!! I was really hoping that this would work. Perhaps, I need to wait till August for SuSE 5.3. It does not seem reasonable to buy 5.2 when 5.3 will be out in little over a month. Are there other options with postgres 6.3.2 and SuSE 5.1? Thanks again for any help, Kerry On 15 Jun 1998, Karl Eichwalder wrote: > > Kerry Boguszewski-Odom writes: > > | Okay, I'm going to try to load postgres 6.3.2 with SuSE 5.1 and I found > | the patch that was posted last week. But how does one apply this patch? > | I am eager to use the new features of postgres 6.3.2. Thanks for any > | help. > > Save this mail as a file (e.g. postgresql.diff), change into the > directory `postgresql-6.3.2': > > cd .../postgresql-6.3.2 > > and say: > > patch -p1 < .../postgresql.diff > > then invoke `autoconf' to produce a new configure script. Replace the > dots (`...') with your path -- To get out of this list, please send email to majordomo(a)suse.com with this text in its body: unsubscribe suse-linux-e --===============6512318814756148799==-- From kf@wa.net Tue Jun 16 07:12:33 1998 From: kf@wa.net To: users@lists.opensuse.org Subject: [S.u.S.E. Linux] XSuSE Elsa GLoria & KDE 4 Date: Tue, 16 Jun 1998 00:12:33 -0700 Message-ID: <35861AE1.B9644874@wa.net> In-Reply-To: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============9210281805777697837==" --===============9210281805777697837== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit After many frustrating, unsuccessful attempts trying to upgrade my KDE Beta 3 to Beta 4 ( yes, qt libraries are 1.33 & I complied KDE from source) the results were always the same; the KDE interface would boot, but mouse clicks were ignored. As a last resort, I tried a demo copy of Accerated-X, and to my surprise KDE beta 4 works just fine. So the problem would seem to be with the X11 server, XSuSE ELsa GLoria. Does anybody else on this list use the XSuSE ELSa GLoria server with KDE Beta 4 successfully? Hopefully this problem will be addressed in future releases either KDE or the SuSE X-server. For now I am happily using WindowMaker. Kristian Farren kf(a)wa.net -- To get out of this list, please send email to majordomo(a)suse.com with this text in its body: unsubscribe suse-linux-e --===============9210281805777697837==-- From ke@suse.de Tue Jun 16 07:34:04 1998 From: ke@suse.de To: users@lists.opensuse.org Subject: Re: [S.u.S.E. Linux] Postgres 6.3.2 Date: Tue, 16 Jun 1998 09:34:04 +0200 Message-ID: In-Reply-To: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============1747518064069746160==" --===============1747518064069746160== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Kerry Boguszewski-Odom writes: | gcc -o psql -L../../interfaces/libpq psql.o stringutils.o -lpq -ldl -lm | -lbsd -lreadline -lhistory -export-dynamic | /usr/lib/libreadline.a(display.o): In function `rl_redisplay': | display.o(.text+0x9bf): undefined reference to `tputs' | /usr/lib/libreadline.a(display.o): In function `update_line': | display.o(.text+0xf26): undefined reference to `tputs' | /usr/lib/libreadline.a(display.o): In function `_rl_move_cursor_relative': | display.o(.text+0x11e6): undefined reference to=20 Don't panic -- you forgot to run `autoconf' after patching; `-lncurses' has to appear while you try to link. Perhaps, I wasn't clear enough; here we go again: cd .../postgresql-6.3.2/src autoconf ./configure --with-includes=3D/usr/include/termcap --with-libs=3D/usr/lib= /termcap But I guess, if linking against ncurses, termcap isn't actually needed. --=20 Karl Eichwalder S.u.S.E. GmbH Fax +49-911-3206727 ke(a)suse.de Gebhardtstrasse 2 Mo & Th 13:00-18:00: http://www.s= use.de> 90762 Fuerth, Germany Hotline +49-911-3247130 -- To get out of this list, please send email to majordomo(a)suse.com with this text in its body: unsubscribe suse-linux-e --===============1747518064069746160==-- From kiril@u.washington.edu Wed Jun 17 08:39:42 1998 From: kiril@u.washington.edu To: users@lists.opensuse.org Subject: Re: [S.u.S.E. Linux] Postgres 6.3.2 Date: Wed, 17 Jun 1998 01:39:42 -0700 Message-ID: In-Reply-To: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============4689516886514612867==" --===============4689516886514612867== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Many thanks! I seem to have a working postgres 6.3.2 system running on SuSE 5.1. Although, I was unable to find the command autoconf on my system. All I found after running a find for autoconf was a autoconf.changes in /usr/doc/packages/autoconf/autoconf.changes. Thinking that I was screwed, I proceeded with the rest of your steps and success! psql compiled without the tputs problem. I'm very appreciative of your help with this problem Thanks Again, Kerry On 16 Jun 1998, Karl Eichwalder wrote=20 > Don't panic -- you forgot to run `autoconf' after patching; `-lncurses' > has to appear while you try to link. Perhaps, I wasn't clear enough; > here we go again: >=20 > cd .../postgresql-6.3.2/src > autoconf > ./configure --with-includes=3D/usr/include/termcap --with-libs=3D/usr/l= ib/termcap >=20 > But I guess, if linking against ncurses, termcap isn't actually needed. >=20 > --=20 > Karl Eichwalder S.u.S.E. GmbH Fax +49-911-3206727 > ke(a)suse.de Gebhardtstrasse 2 Mo & Th 13:00-18:00: > http://www= .suse.de> 90762 Fuerth, Germany Hotline +49-911-3247130 > -- > To get out of this list, please send email to majordomo(a)suse.com with > this text in its body: unsubscribe suse-linux-e >=20 -- To get out of this list, please send email to majordomo(a)suse.com with this text in its body: unsubscribe suse-linux-e --===============4689516886514612867==-- From ke@suse.de Thu Jun 18 08:01:02 1998 From: ke@suse.de To: users@lists.opensuse.org Subject: Re: [S.u.S.E. Linux] Postgres 6.3.2 Date: Thu, 18 Jun 1998 10:01:02 +0200 Message-ID: In-Reply-To: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============4196858853567124230==" --===============4196858853567124230== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Kerry Boguszewski-Odom writes: | I seem to have a working postgres 6.3.2 system running on SuSE | 5.1. Although, I was unable to find the command autoconf on my | system. JFYI, it's the first package in serie "d". --=20 Karl Eichwalder S.u.S.E. GmbH Fax +49-911-3206727 ke(a)suse.de Gebhardtstrasse 2 Mo & Th 13:00-18:00: http://www.s= use.de> 90762 Fuerth, Germany Hotline +49-911-3247130 -- To get out of this list, please send email to majordomo(a)suse.com with this text in its body: unsubscribe suse-linux-e --===============4196858853567124230==--