Re: Building On CentOS 8 Dependency Help

2020-02-18 Thread Kay Schenk
On Tue, Feb 18, 2020, 03:06 Carl Marcum  wrote:

>
>
> On 2/17/20 9:59 PM, Kay Schenk wrote:
> > On Mon, Feb 17, 2020, 16:44 Carl Marcum  wrote:
> >
> >>
> >> On 2/17/20 6:31 PM, Kay Schenk wrote:
> >>> OK. Here's the section of configure.ac that applies to your issue...
> >>>
> >>> *** begin code ***
> >>>
> >>> dnl ===
> >>> dnl Check whether the gtk 2.0 libraries are available.
> >>> dnl ===
> >>>
> >>> GTK_CFLAGS=""
> >>> GTK_LIBS=""
> >>> ENABLE_SYSTRAY_GTK=""
> >>> ENABLE_DBUS=""
> >>> if test  "$test_gtk" = "yes"; then
> >>>
> >>> if test "$ENABLE_GTK" = "TRUE" ; then
> >>>PKG_CHECK_MODULES(GTK, gtk+-2.0 >= 2.4 gdk-pixbuf-xlib-2.0 >=
> >>> 2.2 ,,AC_MSG_ERROR([requirements to build the gtk-plugin not met. Use
> >>> --disable-gtk or install the missing packages]))
> >>>PKG_CHECK_MODULES(GTHREAD,
> >>> gthread-2.0,,AC_MSG_ERROR([requirements to build the gtk-plugin not
> >>> met. Use --disable-gtk or install the missing packages]))
> >>>
> >>> *** end code ***
> >>>
> >>> Configure wants a gtk+-2.0 version that is 2.4 or later. From your
> >>> first message, this is what you show --
> >>>
> >>> gtk2.x86_64   2.24.32-4.el8
> >>>
> >>> To me, it seems PKG_CHECK_MODULES couldn't determine if 2.24.32-4.el8
> >>> passed the   "gtk+-2.0 >= 2.4" test. Maybe someone else can offer
> >>> suggestions on how to fix that.
> >>>
> >>> Sorry I couldn't help more
> >>>
> >>> --Kay
> >>>
> >> Hi Kay,
> >>
> >> Sounds reasonable that may be the issue.
> >> The the two error messages are the same for GTK and GTHREADI edited the
> >> error messages to make them different confirmed it is the GTK check
> >> that's the problem.
> >> Any idea where PKG_CHECK_MODULES lives?
> >>
> >> Thanks,
> >> Carl
> >>
> > Hi Carl --
> >
> > PKG_CHECK_MODULES is a macro that is part of autoconf (autotools)
> >
> > https://autotools.io/pkgconfig/pkg_cpkg_check_modules.html
> >
> > HTH,
> >
> > Kay
>
> Hi Kay,
>
> I got a 404 on that link but I found it here:
> https://autotools.io/pkgconfig/pkg_check_modules.html
>
> I'll look at it this evening.
>
> Thanks again for your help!
>
> Best regards,
> Carl
>

OK good. Sorry about the messed up link.

-- Kay


> -
> To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
> For additional commands, e-mail: dev-h...@openoffice.apache.org
>
>


Re: Building On CentOS 8 Dependency Help

2020-02-18 Thread Carl Marcum




On 2/17/20 9:59 PM, Kay Schenk wrote:

On Mon, Feb 17, 2020, 16:44 Carl Marcum  wrote:



On 2/17/20 6:31 PM, Kay Schenk wrote:

OK. Here's the section of configure.ac that applies to your issue...

*** begin code ***

dnl ===
dnl Check whether the gtk 2.0 libraries are available.
dnl ===

GTK_CFLAGS=""
GTK_LIBS=""
ENABLE_SYSTRAY_GTK=""
ENABLE_DBUS=""
if test  "$test_gtk" = "yes"; then

if test "$ENABLE_GTK" = "TRUE" ; then
   PKG_CHECK_MODULES(GTK, gtk+-2.0 >= 2.4 gdk-pixbuf-xlib-2.0 >=
2.2 ,,AC_MSG_ERROR([requirements to build the gtk-plugin not met. Use
--disable-gtk or install the missing packages]))
   PKG_CHECK_MODULES(GTHREAD,
gthread-2.0,,AC_MSG_ERROR([requirements to build the gtk-plugin not
met. Use --disable-gtk or install the missing packages]))

*** end code ***

Configure wants a gtk+-2.0 version that is 2.4 or later. From your
first message, this is what you show --

gtk2.x86_64   2.24.32-4.el8

To me, it seems PKG_CHECK_MODULES couldn't determine if 2.24.32-4.el8
passed the   "gtk+-2.0 >= 2.4" test. Maybe someone else can offer
suggestions on how to fix that.

Sorry I couldn't help more

--Kay


Hi Kay,

Sounds reasonable that may be the issue.
The the two error messages are the same for GTK and GTHREADI edited the
error messages to make them different confirmed it is the GTK check
that's the problem.
Any idea where PKG_CHECK_MODULES lives?

Thanks,
Carl


Hi Carl --

PKG_CHECK_MODULES is a macro that is part of autoconf (autotools)

https://autotools.io/pkgconfig/pkg_cpkg_check_modules.html

HTH,

Kay


Hi Kay,

I got a 404 on that link but I found it here:
https://autotools.io/pkgconfig/pkg_check_modules.html

I'll look at it this evening.

Thanks again for your help!

Best regards,
Carl

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: Building On CentOS 8 Dependency Help

2020-02-17 Thread Kay Schenk
On Mon, Feb 17, 2020, 16:44 Carl Marcum  wrote:

>
>
> On 2/17/20 6:31 PM, Kay Schenk wrote:
> > OK. Here's the section of configure.ac that applies to your issue...
> >
> > *** begin code ***
> >
> > dnl ===
> > dnl Check whether the gtk 2.0 libraries are available.
> > dnl ===
> >
> > GTK_CFLAGS=""
> > GTK_LIBS=""
> > ENABLE_SYSTRAY_GTK=""
> > ENABLE_DBUS=""
> > if test  "$test_gtk" = "yes"; then
> >
> >if test "$ENABLE_GTK" = "TRUE" ; then
> >   PKG_CHECK_MODULES(GTK, gtk+-2.0 >= 2.4 gdk-pixbuf-xlib-2.0 >=
> > 2.2 ,,AC_MSG_ERROR([requirements to build the gtk-plugin not met. Use
> > --disable-gtk or install the missing packages]))
> >   PKG_CHECK_MODULES(GTHREAD,
> > gthread-2.0,,AC_MSG_ERROR([requirements to build the gtk-plugin not
> > met. Use --disable-gtk or install the missing packages]))
> >
> > *** end code ***
> >
> > Configure wants a gtk+-2.0 version that is 2.4 or later. From your
> > first message, this is what you show --
> >
> > gtk2.x86_64   2.24.32-4.el8
> >
> > To me, it seems PKG_CHECK_MODULES couldn't determine if 2.24.32-4.el8
> > passed the   "gtk+-2.0 >= 2.4" test. Maybe someone else can offer
> > suggestions on how to fix that.
> >
> > Sorry I couldn't help more
> >
> > --Kay
> >
>
> Hi Kay,
>
> Sounds reasonable that may be the issue.
> The the two error messages are the same for GTK and GTHREADI edited the
> error messages to make them different confirmed it is the GTK check
> that's the problem.
> Any idea where PKG_CHECK_MODULES lives?
>
> Thanks,
> Carl
>

Hi Carl --

PKG_CHECK_MODULES is a macro that is part of autoconf (autotools)

https://autotools.io/pkgconfig/pkg_cpkg_check_modules.html

HTH,

Kay



> -
> To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
> For additional commands, e-mail: dev-h...@openoffice.apache.org
>
>


Re: Building On CentOS 8 Dependency Help

2020-02-17 Thread Carl Marcum




On 2/17/20 7:35 PM, Damjan Jovanovic wrote:

On Sat, Feb 15, 2020 at 4:14 PM Carl Marcum  wrote:


Hi All,

Not sure if anyone has went down this road yet but I've installed CentOS
8 with a Gnome desktop env, on a server of mine and would like to build
AOO 4.2 on it  or even 4.1.x if needed.
My starting point was the Building Guide section for Centos 7 for AOO
4.2.  [1]

I have the following repos enabled:
CentOS-8 - AppStream9.1 kB/s | 4.3 kB 00:00
CentOS-8 - Base 8.0 kB/s | 3.8 kB 00:00
CentOS-8 - Extras   1.2 kB/s | 1.5 kB 00:01
CentOS-8 - PowerTools   8.5 kB/s | 4.3 kB 00:00
Extra Packages for Enterprise Linux Modular 8 -  27 kB/s |  12 kB 00:00
Extra Packages for Enterprise Linux 8 - x86_64   32 kB/s |  17 kB 00:00

But I'm not finding a few of the listed dependencies:

No match for argument: gnome-vfs2-devel
No match for argument: gstreamer-devel
No match for argument: gstreamer-plugins-base-devel
No match for argument: ORBit2-devel
Error: Unable to find a match: gnome-vfs2-devel gstreamer-devel
gstreamer-plugins-base-devel ORBit2-devel

I found that gstreamer 0.1 is no longer maintained and they suggest 1.0
series. [2]
Do we still need 0.1 for building.


We moved to 1.0 a year ago:

commit b6e71573e19c0b24193aa83c913ad163e3fbb449
Author: Damjan Jovanovic 
Date:   Fri Mar 2 06:14:01 2018 +

 Use gstreamer 1.0 instead of the long obsolete
 version 0.1.



It looks like gnome-vfs2 is superseded by GVfs [3] .
I have a number of gvfs-* packages installed already so I added gvfs-devel.
Would this work ?


gvfs was superseded by gio long ago, and we've supported gio since 2011.
The default should now be --enable-gio --disable-gnome-vfs



I see ORBit2 is used for CORBA.   I'm coming up blank on any CentOS 8
package.

Also, what minimum or better yet latest Java could I build 4.2 with?


Java 7 onwards should work. If one doesn't, please report, I'll fix it.
However we really should ensure that for release builds we build with 7;
newer .class file formats may be incompatible with older JREs if we didn't
pass -source and -target flags to javac, etc.

Damjan


Hi Damjan,

Thanks for the help.  I'll update my notes on the build flags and 
dependencies.


Best regards,
Carl

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: Building On CentOS 8 Dependency Help

2020-02-17 Thread Carl Marcum




On 2/17/20 6:31 PM, Kay Schenk wrote:

OK. Here's the section of configure.ac that applies to your issue...

*** begin code ***

dnl ===
dnl Check whether the gtk 2.0 libraries are available.
dnl ===

GTK_CFLAGS=""
GTK_LIBS=""
ENABLE_SYSTRAY_GTK=""
ENABLE_DBUS=""
if test  "$test_gtk" = "yes"; then

   if test "$ENABLE_GTK" = "TRUE" ; then
  PKG_CHECK_MODULES(GTK, gtk+-2.0 >= 2.4 gdk-pixbuf-xlib-2.0 >= 
2.2 ,,AC_MSG_ERROR([requirements to build the gtk-plugin not met. Use 
--disable-gtk or install the missing packages]))
  PKG_CHECK_MODULES(GTHREAD, 
gthread-2.0,,AC_MSG_ERROR([requirements to build the gtk-plugin not 
met. Use --disable-gtk or install the missing packages]))


*** end code ***

Configure wants a gtk+-2.0 version that is 2.4 or later. From your 
first message, this is what you show --


gtk2.x86_64   2.24.32-4.el8

To me, it seems PKG_CHECK_MODULES couldn't determine if 2.24.32-4.el8  
passed the   "gtk+-2.0 >= 2.4" test. Maybe someone else can offer 
suggestions on how to fix that.


Sorry I couldn't help more

--Kay



Hi Kay,

Sounds reasonable that may be the issue.
The the two error messages are the same for GTK and GTHREADI edited the 
error messages to make them different confirmed it is the GTK check 
that's the problem.

Any idea where PKG_CHECK_MODULES lives?

Thanks,
Carl

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: Building On CentOS 8 Dependency Help

2020-02-17 Thread Damjan Jovanovic
On Sat, Feb 15, 2020 at 4:14 PM Carl Marcum  wrote:

> Hi All,
>
> Not sure if anyone has went down this road yet but I've installed CentOS
> 8 with a Gnome desktop env, on a server of mine and would like to build
> AOO 4.2 on it  or even 4.1.x if needed.
> My starting point was the Building Guide section for Centos 7 for AOO
> 4.2.  [1]
>
> I have the following repos enabled:
> CentOS-8 - AppStream9.1 kB/s | 4.3 kB 00:00
> CentOS-8 - Base 8.0 kB/s | 3.8 kB 00:00
> CentOS-8 - Extras   1.2 kB/s | 1.5 kB 00:01
> CentOS-8 - PowerTools   8.5 kB/s | 4.3 kB 00:00
> Extra Packages for Enterprise Linux Modular 8 -  27 kB/s |  12 kB 00:00
> Extra Packages for Enterprise Linux 8 - x86_64   32 kB/s |  17 kB 00:00
>
> But I'm not finding a few of the listed dependencies:
>
> No match for argument: gnome-vfs2-devel
> No match for argument: gstreamer-devel
> No match for argument: gstreamer-plugins-base-devel
> No match for argument: ORBit2-devel
> Error: Unable to find a match: gnome-vfs2-devel gstreamer-devel
> gstreamer-plugins-base-devel ORBit2-devel
>
> I found that gstreamer 0.1 is no longer maintained and they suggest 1.0
> series. [2]
> Do we still need 0.1 for building.
>

We moved to 1.0 a year ago:

commit b6e71573e19c0b24193aa83c913ad163e3fbb449
Author: Damjan Jovanovic 
Date:   Fri Mar 2 06:14:01 2018 +

Use gstreamer 1.0 instead of the long obsolete
version 0.1.


> It looks like gnome-vfs2 is superseded by GVfs [3] .
> I have a number of gvfs-* packages installed already so I added gvfs-devel.
> Would this work ?
>

gvfs was superseded by gio long ago, and we've supported gio since 2011.
The default should now be --enable-gio --disable-gnome-vfs


>
> I see ORBit2 is used for CORBA.   I'm coming up blank on any CentOS 8
> package.
>
> Also, what minimum or better yet latest Java could I build 4.2 with?
>

Java 7 onwards should work. If one doesn't, please report, I'll fix it.
However we really should ensure that for release builds we build with 7;
newer .class file formats may be incompatible with older JREs if we didn't
pass -source and -target flags to javac, etc.

Damjan


Re: Building On CentOS 8 Dependency Help

2020-02-17 Thread Keith N. McKenna
On 2/17/2020 6:14 PM, Carl Marcum wrote:
> 
> 
> On 2/17/20 5:35 PM, Keith N. McKenna wrote:
>> On 2/15/2020 9:14 AM, Carl Marcum wrote:
>>> Hi All,
>>>
>>> Not sure if anyone has went down this road yet but I've installed CentOS
>>> 8 with a Gnome desktop env, on a server of mine and would like to build
>>> AOO 4.2 on it  or even 4.1.x if needed.
>>> My starting point was the Building Guide section for Centos 7 for AOO
>>> 4.2.  [1]
>>>
>>> I have the following repos enabled:
>>> CentOS-8 - AppStream    9.1 kB/s | 4.3 kB
>>> 00:00
>>> CentOS-8 - Base 8.0 kB/s | 3.8 kB
>>> 00:00
>>> CentOS-8 - Extras   1.2 kB/s | 1.5 kB
>>> 00:01
>>> CentOS-8 - PowerTools   8.5 kB/s | 4.3 kB
>>> 00:00
>>> Extra Packages for Enterprise Linux Modular 8 -  27 kB/s |  12 kB
>>> 00:00
>>> Extra Packages for Enterprise Linux 8 - x86_64   32 kB/s |  17 kB
>>> 00:00
>>>
>>> But I'm not finding a few of the listed dependencies:
>>>
>>> No match for argument: gnome-vfs2-devel
>>> No match for argument: gstreamer-devel
>>> No match for argument: gstreamer-plugins-base-devel
>>> No match for argument: ORBit2-devel
>>> Error: Unable to find a match: gnome-vfs2-devel gstreamer-devel
>>> gstreamer-plugins-base-devel ORBit2-devel
>>>
>>> I found that gstreamer 0.1 is no longer maintained and they suggest 1.0
>>> series. [2]
>>> Do we still need 0.1 for building.
>>>
>>> It looks like gnome-vfs2 is superseded by GVfs [3] .
>>> I have a number of gvfs-* packages installed already so I added
>>> gvfs-devel.
>>> Would this work ?
>>>
>>> I see ORBit2 is used for CORBA.   I'm coming up blank on any CentOS 8
>>> package.
>>>
>>> Also, what minimum or better yet latest Java could I build 4.2 with?
>>>
>>> Any help would be appreciated.
>>>
>>> [1]
>>> https://wiki.openoffice.org/wiki/Documentation/Building_Guide_AOO/Step_by_step#CentOS_7_for_AOO_4.2.x_and_later
>>>
>>>
>>> [2]
>>> https://gstreamer.freedesktop.org/documentation/frequently-asked-questions/getting.html?gi-language=c
>>>
>>>
>>> [3] https://en.wikipedia.org/wiki/GVfs
>>>
>>> Thanks,
>>> Carl
>> Carl;
>>
>> As I do not build I cannot help much with the problems you are
>> encountering but what i can do is as you find solutions to the problems
>> that are version 8 specific I can add a section to the guide for
>> CentOS 8.
>>
>> Regards
>> Keith
>>
> Hi Keith,
> 
> Thank you.
> 
> I'm trying to keep good notes to help update the guides.
> In addition to the base server itself,  I also setup 2 fresh VM's. One
> with CentOS 8 with a basic Gnome Desktop and one with CentOS 7 the same
> way so I can try to verify as many dependencies as I can instead of
> starting with a system already setup for building software.
> That way I can always roll them back and start again.
> I could always add more types if it would be useful.
> I used to have a MSDN subscription and could get Windows OS's for
> development but not anymore so Windows is out for now.
> 
> Best regards,
> Carl

Carl that sounds great. I look forward to working with you to get those
sections updated. Also I have started a thread on dev@ to discuss
options for restructuring the Build Guides. Any thoughts you have would
be more than welcome there.

Regards
Keith



signature.asc
Description: OpenPGP digital signature


Re: Building On CentOS 8 Dependency Help

2020-02-17 Thread Kay Schenk

OK. Here's the section of configure.ac that applies to your issue...

*** begin code ***

dnl ===
dnl Check whether the gtk 2.0 libraries are available.
dnl ===

GTK_CFLAGS=""
GTK_LIBS=""
ENABLE_SYSTRAY_GTK=""
ENABLE_DBUS=""
if test  "$test_gtk" = "yes"; then

   if test "$ENABLE_GTK" = "TRUE" ; then
  PKG_CHECK_MODULES(GTK, gtk+-2.0 >= 2.4 gdk-pixbuf-xlib-2.0 >= 2.2 
,,AC_MSG_ERROR([requirements to build the gtk-plugin not met. Use 
--disable-gtk or install the missing packages]))
  PKG_CHECK_MODULES(GTHREAD, 
gthread-2.0,,AC_MSG_ERROR([requirements to build the gtk-plugin not met. 
Use --disable-gtk or install the missing packages]))


*** end code ***

Configure wants a gtk+-2.0 version that is 2.4 or later. From your first 
message, this is what you show --


gtk2.x86_64   2.24.32-4.el8

To me, it seems PKG_CHECK_MODULES couldn't determine if 2.24.32-4.el8  
passed the   "gtk+-2.0 >= 2.4" test. Maybe someone else can offer 
suggestions on how to fix that.


Sorry I couldn't help more

--Kay


On 2/17/20 2:14 PM, Carl Marcum wrote:

Hi Kay,


On 2/17/20 3:55 PM, Kay Schenk wrote:

Hi --

I remember having configure issues when pkg-config was not properly 
recognizing my installed packs.


On your system you might try typing --

pkg-config --list-all | sort

so you see what configure is picking up for your gtk version.

I have not tried building in quite some time, but my CentOS system 
has this in my list --


gtk+-3.0

Hope this helps,

Kay



This I what I get:

$ pkg-config --list-all | sort
...
gtk+-2.0   GTK+ - GTK+ Graphical UI Library (x11 
target)

gtk+-3.0   GTK+ - GTK+ Graphical UI Library
gtk+-broadway-3.0  GTK+ - GTK+ Graphical UI Library
gtk+-unix-print-2.0    GTK+ - GTK+ Unix print support
gtk+-unix-print-3.0    GTK+ - GTK+ Unix print support
gtk+-wayland-3.0   GTK+ - GTK+ Graphical UI Library
gtk+-x11-2.0   GTK+ - GTK+ Graphical UI Library (x11 
target)

gtk+-x11-3.0   GTK+ - GTK+ Graphical UI Library
...

Thanks,
Carl



On 2/16/20 6:17 AM, Carl Marcum wrote:

Hi All,

Now I'm stuck GTK.
I'm not sure if it may be related to the gnome-vfs package being 
changed to gvfs or not.


Here is my configure
./configure \
--enable-category-b \
--enable-bundled-dictionaries \
--enable-dbgutil \
--with-package-format="installed" \
--with-rat-scan

last bit of latest error:
checking for zip... /usr/bin/zip
checking for unzip... /usr/bin/unzip
checking which VCLplugs shall be built... gtk
checking whether to enable GConf support... yes
checking for GCONF... yes
checking whether to enable GNOME VFS support... no
checking for GTK... no
configure: error: requirements to build the gtk-plugin not met. Use 
--disable-gtk or install the missing packages



Installed Packages
gtk-update-icon-cache.x86_64  3.22.30-4.el8
gtk-vnc2.x86_64   0.9.0-1.el8
gtk2.x86_64   2.24.32-4.el8
gtk2-devel.x86_64 2.24.32-4.el8
gtk3.x86_64   3.22.30-4.el8
gtk3-devel.x86_64 3.22.30-4.el8
gtkmm30.x86_64    3.22.2-2.el8
gtksourceview3.x86_64 3.24.9-1.el8

Installed Packages
gvfs.x86_64   1.36.2-6.el8
gvfs-afc.x86_64   1.36.2-6.el8
gvfs-afp.x86_64   1.36.2-6.el8
gvfs-archive.x86_64   1.36.2-6.el8
gvfs-client.x86_64    1.36.2-6.el8
gvfs-devel.x86_64 1.36.2-6.el8
gvfs-fuse.x86_64  1.36.2-6.el8
gvfs-goa.x86_64   1.36.2-6.el8
gvfs-gphoto2.x86_64   1.36.2-6.el8
gvfs-mtp.x86_64   1.36.2-6.el8
gvfs-smb.x86_64   1.36.2-6.el8

Thanks,
Carl


-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org






-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: Building On CentOS 8 Dependency Help

2020-02-17 Thread Carl Marcum




On 2/17/20 5:35 PM, Keith N. McKenna wrote:

On 2/15/2020 9:14 AM, Carl Marcum wrote:

Hi All,

Not sure if anyone has went down this road yet but I've installed CentOS
8 with a Gnome desktop env, on a server of mine and would like to build
AOO 4.2 on it  or even 4.1.x if needed.
My starting point was the Building Guide section for Centos 7 for AOO
4.2.  [1]

I have the following repos enabled:
CentOS-8 - AppStream    9.1 kB/s | 4.3 kB 00:00
CentOS-8 - Base 8.0 kB/s | 3.8 kB 00:00
CentOS-8 - Extras   1.2 kB/s | 1.5 kB 00:01
CentOS-8 - PowerTools   8.5 kB/s | 4.3 kB 00:00
Extra Packages for Enterprise Linux Modular 8 -  27 kB/s |  12 kB 00:00
Extra Packages for Enterprise Linux 8 - x86_64   32 kB/s |  17 kB 00:00

But I'm not finding a few of the listed dependencies:

No match for argument: gnome-vfs2-devel
No match for argument: gstreamer-devel
No match for argument: gstreamer-plugins-base-devel
No match for argument: ORBit2-devel
Error: Unable to find a match: gnome-vfs2-devel gstreamer-devel
gstreamer-plugins-base-devel ORBit2-devel

I found that gstreamer 0.1 is no longer maintained and they suggest 1.0
series. [2]
Do we still need 0.1 for building.

It looks like gnome-vfs2 is superseded by GVfs [3] .
I have a number of gvfs-* packages installed already so I added gvfs-devel.
Would this work ?

I see ORBit2 is used for CORBA.   I'm coming up blank on any CentOS 8
package.

Also, what minimum or better yet latest Java could I build 4.2 with?

Any help would be appreciated.

[1]
https://wiki.openoffice.org/wiki/Documentation/Building_Guide_AOO/Step_by_step#CentOS_7_for_AOO_4.2.x_and_later

[2]
https://gstreamer.freedesktop.org/documentation/frequently-asked-questions/getting.html?gi-language=c

[3] https://en.wikipedia.org/wiki/GVfs

Thanks,
Carl

Carl;

As I do not build I cannot help much with the problems you are
encountering but what i can do is as you find solutions to the problems
that are version 8 specific I can add a section to the guide for CentOS 8.

Regards
Keith


Hi Keith,

Thank you.

I'm trying to keep good notes to help update the guides.
In addition to the base server itself,  I also setup 2 fresh VM's. One 
with CentOS 8 with a basic Gnome Desktop and one with CentOS 7 the same 
way so I can try to verify as many dependencies as I can instead of 
starting with a system already setup for building software.

That way I can always roll them back and start again.
I could always add more types if it would be useful.
I used to have a MSDN subscription and could get Windows OS's for 
development but not anymore so Windows is out for now.


Best regards,
Carl



-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: Building On CentOS 8 Dependency Help

2020-02-17 Thread Keith N. McKenna
On 2/15/2020 9:14 AM, Carl Marcum wrote:
> Hi All,
> 
> Not sure if anyone has went down this road yet but I've installed CentOS
> 8 with a Gnome desktop env, on a server of mine and would like to build
> AOO 4.2 on it  or even 4.1.x if needed.
> My starting point was the Building Guide section for Centos 7 for AOO
> 4.2.  [1]
> 
> I have the following repos enabled:
> CentOS-8 - AppStream    9.1 kB/s | 4.3 kB 00:00
> CentOS-8 - Base 8.0 kB/s | 3.8 kB 00:00
> CentOS-8 - Extras   1.2 kB/s | 1.5 kB 00:01
> CentOS-8 - PowerTools   8.5 kB/s | 4.3 kB 00:00
> Extra Packages for Enterprise Linux Modular 8 -  27 kB/s |  12 kB 00:00
> Extra Packages for Enterprise Linux 8 - x86_64   32 kB/s |  17 kB 00:00
> 
> But I'm not finding a few of the listed dependencies:
> 
> No match for argument: gnome-vfs2-devel
> No match for argument: gstreamer-devel
> No match for argument: gstreamer-plugins-base-devel
> No match for argument: ORBit2-devel
> Error: Unable to find a match: gnome-vfs2-devel gstreamer-devel
> gstreamer-plugins-base-devel ORBit2-devel
> 
> I found that gstreamer 0.1 is no longer maintained and they suggest 1.0
> series. [2]
> Do we still need 0.1 for building.
> 
> It looks like gnome-vfs2 is superseded by GVfs [3] .
> I have a number of gvfs-* packages installed already so I added gvfs-devel.
> Would this work ?
> 
> I see ORBit2 is used for CORBA.   I'm coming up blank on any CentOS 8
> package.
> 
> Also, what minimum or better yet latest Java could I build 4.2 with?
> 
> Any help would be appreciated.
> 
> [1]
> https://wiki.openoffice.org/wiki/Documentation/Building_Guide_AOO/Step_by_step#CentOS_7_for_AOO_4.2.x_and_later
> 
> [2]
> https://gstreamer.freedesktop.org/documentation/frequently-asked-questions/getting.html?gi-language=c
> 
> [3] https://en.wikipedia.org/wiki/GVfs
> 
> Thanks,
> Carl

Carl;

As I do not build I cannot help much with the problems you are
encountering but what i can do is as you find solutions to the problems
that are version 8 specific I can add a section to the guide for CentOS 8.

Regards
Keith




signature.asc
Description: OpenPGP digital signature


Re: Building On CentOS 8 Dependency Help

2020-02-17 Thread Carl Marcum

Hi Kay,


On 2/17/20 3:55 PM, Kay Schenk wrote:

Hi --

I remember having configure issues when pkg-config was not properly 
recognizing my installed packs.


On your system you might try typing --

pkg-config --list-all | sort

so you see what configure is picking up for your gtk version.

I have not tried building in quite some time, but my CentOS system has 
this in my list --


gtk+-3.0

Hope this helps,

Kay



This I what I get:

$ pkg-config --list-all | sort
...
gtk+-2.0   GTK+ - GTK+ Graphical UI Library (x11 target)
gtk+-3.0   GTK+ - GTK+ Graphical UI Library
gtk+-broadway-3.0  GTK+ - GTK+ Graphical UI Library
gtk+-unix-print-2.0    GTK+ - GTK+ Unix print support
gtk+-unix-print-3.0    GTK+ - GTK+ Unix print support
gtk+-wayland-3.0   GTK+ - GTK+ Graphical UI Library
gtk+-x11-2.0   GTK+ - GTK+ Graphical UI Library (x11 target)
gtk+-x11-3.0   GTK+ - GTK+ Graphical UI Library
...

Thanks,
Carl



On 2/16/20 6:17 AM, Carl Marcum wrote:

Hi All,

Now I'm stuck GTK.
I'm not sure if it may be related to the gnome-vfs package being 
changed to gvfs or not.


Here is my configure
./configure \
--enable-category-b \
--enable-bundled-dictionaries \
--enable-dbgutil \
--with-package-format="installed" \
--with-rat-scan

last bit of latest error:
checking for zip... /usr/bin/zip
checking for unzip... /usr/bin/unzip
checking which VCLplugs shall be built... gtk
checking whether to enable GConf support... yes
checking for GCONF... yes
checking whether to enable GNOME VFS support... no
checking for GTK... no
configure: error: requirements to build the gtk-plugin not met. Use 
--disable-gtk or install the missing packages



Installed Packages
gtk-update-icon-cache.x86_64  3.22.30-4.el8
gtk-vnc2.x86_64   0.9.0-1.el8
gtk2.x86_64   2.24.32-4.el8
gtk2-devel.x86_64 2.24.32-4.el8
gtk3.x86_64   3.22.30-4.el8
gtk3-devel.x86_64 3.22.30-4.el8
gtkmm30.x86_64    3.22.2-2.el8
gtksourceview3.x86_64 3.24.9-1.el8

Installed Packages
gvfs.x86_64   1.36.2-6.el8
gvfs-afc.x86_64   1.36.2-6.el8
gvfs-afp.x86_64   1.36.2-6.el8
gvfs-archive.x86_64   1.36.2-6.el8
gvfs-client.x86_64    1.36.2-6.el8
gvfs-devel.x86_64 1.36.2-6.el8
gvfs-fuse.x86_64  1.36.2-6.el8
gvfs-goa.x86_64   1.36.2-6.el8
gvfs-gphoto2.x86_64   1.36.2-6.el8
gvfs-mtp.x86_64   1.36.2-6.el8
gvfs-smb.x86_64   1.36.2-6.el8

Thanks,
Carl


-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org






-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: Building On CentOS 8 Dependency Help

2020-02-17 Thread Kay Schenk

Hi --

I remember having configure issues when pkg-config was not properly 
recognizing my installed packs.


On your system you might try typing --

pkg-config --list-all | sort

so you see what configure is picking up for your gtk version.

I have not tried building in quite some time, but my CentOS system has 
this in my list --


gtk+-3.0

Hope this helps,

Kay


On 2/16/20 6:17 AM, Carl Marcum wrote:

Hi All,

Now I'm stuck GTK.
I'm not sure if it may be related to the gnome-vfs package being 
changed to gvfs or not.


Here is my configure
./configure \
--enable-category-b \
--enable-bundled-dictionaries \
--enable-dbgutil \
--with-package-format="installed" \
--with-rat-scan

last bit of latest error:
checking for zip... /usr/bin/zip
checking for unzip... /usr/bin/unzip
checking which VCLplugs shall be built... gtk
checking whether to enable GConf support... yes
checking for GCONF... yes
checking whether to enable GNOME VFS support... no
checking for GTK... no
configure: error: requirements to build the gtk-plugin not met. Use 
--disable-gtk or install the missing packages



Installed Packages
gtk-update-icon-cache.x86_64  3.22.30-4.el8
gtk-vnc2.x86_64   0.9.0-1.el8
gtk2.x86_64   2.24.32-4.el8
gtk2-devel.x86_64 2.24.32-4.el8
gtk3.x86_64   3.22.30-4.el8
gtk3-devel.x86_64 3.22.30-4.el8
gtkmm30.x86_64    3.22.2-2.el8
gtksourceview3.x86_64 3.24.9-1.el8

Installed Packages
gvfs.x86_64   1.36.2-6.el8
gvfs-afc.x86_64   1.36.2-6.el8
gvfs-afp.x86_64   1.36.2-6.el8
gvfs-archive.x86_64   1.36.2-6.el8
gvfs-client.x86_64    1.36.2-6.el8
gvfs-devel.x86_64 1.36.2-6.el8
gvfs-fuse.x86_64  1.36.2-6.el8
gvfs-goa.x86_64   1.36.2-6.el8
gvfs-gphoto2.x86_64   1.36.2-6.el8
gvfs-mtp.x86_64   1.36.2-6.el8
gvfs-smb.x86_64   1.36.2-6.el8

Thanks,
Carl


-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: Building On CentOS 8 Dependency Help

2020-02-16 Thread Carl Marcum

Hi All,

Now I'm stuck GTK.
I'm not sure if it may be related to the gnome-vfs package being changed 
to gvfs or not.


Here is my configure
./configure \
--enable-category-b \
--enable-bundled-dictionaries \
--enable-dbgutil \
--with-package-format="installed" \
--with-rat-scan

last bit of latest error:
checking for zip... /usr/bin/zip
checking for unzip... /usr/bin/unzip
checking which VCLplugs shall be built... gtk
checking whether to enable GConf support... yes
checking for GCONF... yes
checking whether to enable GNOME VFS support... no
checking for GTK... no
configure: error: requirements to build the gtk-plugin not met. Use 
--disable-gtk or install the missing packages



Installed Packages
gtk-update-icon-cache.x86_64  3.22.30-4.el8
gtk-vnc2.x86_64   0.9.0-1.el8
gtk2.x86_64   2.24.32-4.el8
gtk2-devel.x86_64 2.24.32-4.el8
gtk3.x86_64   3.22.30-4.el8
gtk3-devel.x86_64 3.22.30-4.el8
gtkmm30.x86_64    3.22.2-2.el8
gtksourceview3.x86_64 3.24.9-1.el8

Installed Packages
gvfs.x86_64   1.36.2-6.el8
gvfs-afc.x86_64   1.36.2-6.el8
gvfs-afp.x86_64   1.36.2-6.el8
gvfs-archive.x86_64   1.36.2-6.el8
gvfs-client.x86_64    1.36.2-6.el8
gvfs-devel.x86_64 1.36.2-6.el8
gvfs-fuse.x86_64  1.36.2-6.el8
gvfs-goa.x86_64   1.36.2-6.el8
gvfs-gphoto2.x86_64   1.36.2-6.el8
gvfs-mtp.x86_64   1.36.2-6.el8
gvfs-smb.x86_64   1.36.2-6.el8

Thanks,
Carl


-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: Building On CentOS 8 Dependency Help

2020-02-15 Thread Carl Marcum




On 2/15/20 9:44 AM, Peter Kovacs wrote:

We have updated to Gstreamer some time now. 0.1 is not supported anymore.

Minimum Java is 1.7 But I think it builds with latest 1.8


Thanks Peter !

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: Building On CentOS 8 Dependency Help

2020-02-15 Thread Carl Marcum

Hi Mechtilde,

I could not find where you mean

packages.debian.org

Do you mean the Debian 12.04 section? I see a package list there.

I don't see anything about ORBit2 so I'll move on without that one.

Thanks,
Carl

On 2/15/20 10:03 AM, Mechtilde wrote:

hello,

I build AOO 4.2 sucessfully on Debian 9 aka Stretch.

under packages.debian.org you can look which version of the packages I used.

Yes I build succesfull with Java-8.

I couldn't build under Debian 10 aka buster with Java-11.

Kind regards

Mechtilde

Am 15.02.20 um 15:44 schrieb Peter Kovacs:

We have updated to Gstreamer some time now. 0.1 is not supported anymore.

Minimum Java is 1.7 But I think it builds with latest 1.8

Am 15.02.20 um 15:14 schrieb Carl Marcum:

Hi All,

Not sure if anyone has went down this road yet but I've installed
CentOS 8 with a Gnome desktop env, on a server of mine and would like
to build AOO 4.2 on it  or even 4.1.x if needed.
My starting point was the Building Guide section for Centos 7 for AOO
4.2.  [1]

I have the following repos enabled:
CentOS-8 - AppStream    9.1 kB/s | 4.3 kB
00:00
CentOS-8 - Base 8.0 kB/s | 3.8 kB
00:00
CentOS-8 - Extras   1.2 kB/s | 1.5 kB
00:01
CentOS-8 - PowerTools   8.5 kB/s | 4.3 kB
00:00
Extra Packages for Enterprise Linux Modular 8 -  27 kB/s |  12 kB
00:00
Extra Packages for Enterprise Linux 8 - x86_64   32 kB/s |  17 kB
00:00

But I'm not finding a few of the listed dependencies:

No match for argument: gnome-vfs2-devel
No match for argument: gstreamer-devel
No match for argument: gstreamer-plugins-base-devel
No match for argument: ORBit2-devel
Error: Unable to find a match: gnome-vfs2-devel gstreamer-devel
gstreamer-plugins-base-devel ORBit2-devel

I found that gstreamer 0.1 is no longer maintained and they suggest
1.0 series. [2]
Do we still need 0.1 for building.

It looks like gnome-vfs2 is superseded by GVfs [3] .
I have a number of gvfs-* packages installed already so I added
gvfs-devel.
Would this work ?

I see ORBit2 is used for CORBA.   I'm coming up blank on any CentOS 8
package.

Also, what minimum or better yet latest Java could I build 4.2 with?

Any help would be appreciated.

[1]
https://wiki.openoffice.org/wiki/Documentation/Building_Guide_AOO/Step_by_step#CentOS_7_for_AOO_4.2.x_and_later

[2]
https://gstreamer.freedesktop.org/documentation/frequently-asked-questions/getting.html?gi-language=c

[3] https://en.wikipedia.org/wiki/GVfs

Thanks,
Carl

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org




-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: Building On CentOS 8 Dependency Help

2020-02-15 Thread Mechtilde
hello,

I build AOO 4.2 sucessfully on Debian 9 aka Stretch.

under packages.debian.org you can look which version of the packages I used.

Yes I build succesfull with Java-8.

I couldn't build under Debian 10 aka buster with Java-11.

Kind regards

Mechtilde

Am 15.02.20 um 15:44 schrieb Peter Kovacs:
> We have updated to Gstreamer some time now. 0.1 is not supported anymore.
> 
> Minimum Java is 1.7 But I think it builds with latest 1.8
> 
> Am 15.02.20 um 15:14 schrieb Carl Marcum:
>> Hi All,
>>
>> Not sure if anyone has went down this road yet but I've installed
>> CentOS 8 with a Gnome desktop env, on a server of mine and would like
>> to build AOO 4.2 on it  or even 4.1.x if needed.
>> My starting point was the Building Guide section for Centos 7 for AOO
>> 4.2.  [1]
>>
>> I have the following repos enabled:
>> CentOS-8 - AppStream    9.1 kB/s | 4.3 kB
>> 00:00
>> CentOS-8 - Base 8.0 kB/s | 3.8 kB
>> 00:00
>> CentOS-8 - Extras   1.2 kB/s | 1.5 kB
>> 00:01
>> CentOS-8 - PowerTools   8.5 kB/s | 4.3 kB
>> 00:00
>> Extra Packages for Enterprise Linux Modular 8 -  27 kB/s |  12 kB
>> 00:00
>> Extra Packages for Enterprise Linux 8 - x86_64   32 kB/s |  17 kB
>> 00:00
>>
>> But I'm not finding a few of the listed dependencies:
>>
>> No match for argument: gnome-vfs2-devel
>> No match for argument: gstreamer-devel
>> No match for argument: gstreamer-plugins-base-devel
>> No match for argument: ORBit2-devel
>> Error: Unable to find a match: gnome-vfs2-devel gstreamer-devel
>> gstreamer-plugins-base-devel ORBit2-devel
>>
>> I found that gstreamer 0.1 is no longer maintained and they suggest
>> 1.0 series. [2]
>> Do we still need 0.1 for building.
>>
>> It looks like gnome-vfs2 is superseded by GVfs [3] .
>> I have a number of gvfs-* packages installed already so I added
>> gvfs-devel.
>> Would this work ?
>>
>> I see ORBit2 is used for CORBA.   I'm coming up blank on any CentOS 8
>> package.
>>
>> Also, what minimum or better yet latest Java could I build 4.2 with?
>>
>> Any help would be appreciated.
>>
>> [1]
>> https://wiki.openoffice.org/wiki/Documentation/Building_Guide_AOO/Step_by_step#CentOS_7_for_AOO_4.2.x_and_later
>>
>> [2]
>> https://gstreamer.freedesktop.org/documentation/frequently-asked-questions/getting.html?gi-language=c
>>
>> [3] https://en.wikipedia.org/wiki/GVfs
>>
>> Thanks,
>> Carl
>>
>> -
>> To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
>> For additional commands, e-mail: dev-h...@openoffice.apache.org
>>
> 
> -
> To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
> For additional commands, e-mail: dev-h...@openoffice.apache.org
> 

-- 
Mechtilde Stehmann
## Apache OpenOffice
## Freie Office Suite für Linux, MacOSX, Windows
## Debian Developer
## PGP encryption welcome
## F0E3 7F3D C87A 4998 2899  39E7 F287 7BBA 141A AD7F



signature.asc
Description: OpenPGP digital signature


Re: Building On CentOS 8 Dependency Help

2020-02-15 Thread Peter Kovacs

We have updated to Gstreamer some time now. 0.1 is not supported anymore.

Minimum Java is 1.7 But I think it builds with latest 1.8

Am 15.02.20 um 15:14 schrieb Carl Marcum:

Hi All,

Not sure if anyone has went down this road yet but I've installed 
CentOS 8 with a Gnome desktop env, on a server of mine and would like 
to build AOO 4.2 on it  or even 4.1.x if needed.
My starting point was the Building Guide section for Centos 7 for AOO 
4.2.  [1]


I have the following repos enabled:
CentOS-8 - AppStream    9.1 kB/s | 4.3 kB 
00:00
CentOS-8 - Base 8.0 kB/s | 3.8 kB 
00:00
CentOS-8 - Extras   1.2 kB/s | 1.5 kB 
00:01
CentOS-8 - PowerTools   8.5 kB/s | 4.3 kB 
00:00
Extra Packages for Enterprise Linux Modular 8 -  27 kB/s |  12 kB 
00:00
Extra Packages for Enterprise Linux 8 - x86_64   32 kB/s |  17 kB 
00:00


But I'm not finding a few of the listed dependencies:

No match for argument: gnome-vfs2-devel
No match for argument: gstreamer-devel
No match for argument: gstreamer-plugins-base-devel
No match for argument: ORBit2-devel
Error: Unable to find a match: gnome-vfs2-devel gstreamer-devel 
gstreamer-plugins-base-devel ORBit2-devel


I found that gstreamer 0.1 is no longer maintained and they suggest 
1.0 series. [2]

Do we still need 0.1 for building.

It looks like gnome-vfs2 is superseded by GVfs [3] .
I have a number of gvfs-* packages installed already so I added 
gvfs-devel.

Would this work ?

I see ORBit2 is used for CORBA.   I'm coming up blank on any CentOS 8 
package.


Also, what minimum or better yet latest Java could I build 4.2 with?

Any help would be appreciated.

[1] 
https://wiki.openoffice.org/wiki/Documentation/Building_Guide_AOO/Step_by_step#CentOS_7_for_AOO_4.2.x_and_later
[2] 
https://gstreamer.freedesktop.org/documentation/frequently-asked-questions/getting.html?gi-language=c

[3] https://en.wikipedia.org/wiki/GVfs

Thanks,
Carl

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Building On CentOS 8 Dependency Help

2020-02-15 Thread Carl Marcum

Hi All,

Not sure if anyone has went down this road yet but I've installed CentOS 
8 with a Gnome desktop env, on a server of mine and would like to build 
AOO 4.2 on it  or even 4.1.x if needed.
My starting point was the Building Guide section for Centos 7 for AOO 
4.2.  [1]


I have the following repos enabled:
CentOS-8 - AppStream    9.1 kB/s | 4.3 kB 00:00
CentOS-8 - Base 8.0 kB/s | 3.8 kB 00:00
CentOS-8 - Extras   1.2 kB/s | 1.5 kB 00:01
CentOS-8 - PowerTools   8.5 kB/s | 4.3 kB 00:00
Extra Packages for Enterprise Linux Modular 8 -  27 kB/s |  12 kB 00:00
Extra Packages for Enterprise Linux 8 - x86_64   32 kB/s |  17 kB 00:00

But I'm not finding a few of the listed dependencies:

No match for argument: gnome-vfs2-devel
No match for argument: gstreamer-devel
No match for argument: gstreamer-plugins-base-devel
No match for argument: ORBit2-devel
Error: Unable to find a match: gnome-vfs2-devel gstreamer-devel 
gstreamer-plugins-base-devel ORBit2-devel


I found that gstreamer 0.1 is no longer maintained and they suggest 1.0 
series. [2]

Do we still need 0.1 for building.

It looks like gnome-vfs2 is superseded by GVfs [3] .
I have a number of gvfs-* packages installed already so I added gvfs-devel.
Would this work ?

I see ORBit2 is used for CORBA.   I'm coming up blank on any CentOS 8 
package.


Also, what minimum or better yet latest Java could I build 4.2 with?

Any help would be appreciated.

[1] 
https://wiki.openoffice.org/wiki/Documentation/Building_Guide_AOO/Step_by_step#CentOS_7_for_AOO_4.2.x_and_later
[2] 
https://gstreamer.freedesktop.org/documentation/frequently-asked-questions/getting.html?gi-language=c

[3] https://en.wikipedia.org/wiki/GVfs

Thanks,
Carl

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org