Thread: [Java-gnome-developer] Ubuntu installation from source...
Brought to you by:
afcowie
From: Sean C. <exc...@gm...> - 2004-10-30 18:03:30
|
On a clean ubuntu install with all the appropiate packages i had to configure like this ./configure CFLAGS=-I/usr/lib/gcc/i486-linux/3.4.2/include/ and do this before a make export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig/:/usr/lib/pkgconfig/ to get java-gnome up and running. was there an easier way? or is this worth up on the wiki? Sean |
From: Mark H. <mh...@ti...> - 2004-11-01 19:52:43
|
On Sat, Oct 30, 2004 at 07:03:21PM +0100, Sean Coughlan wrote: > On a clean ubuntu install with all the appropiate packages i had to > configure like this > ./configure CFLAGS=-I/usr/lib/gcc/i486-linux/3.4.2/include/ This should not be needed. We've been talking to the gcj developers about this -- if the gcj includes cannot be found then your distribution has broken gcj. > and do this before a make > export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig/:/usr/lib/pkgconfig/ > to get java-gnome up and running. This is probably needed for installing anything if you have a lot of things installed in /usr/local/ -- .''`. Mark Howard : :' : `. `' http://www.tildemh.com `- mh...@de... | mh...@ti... |
From: Skip C. <sco...@gm...> - 2004-11-14 18:19:48
|
Hey all, I am also running ubuntu and am trying to compile the 2.8 from source. I get this err: aclocal: configure.in: 42: macro `AM_PATH_GTK' not found in library ./configure: line 1240: JG_COMMON: command not found aclocal: configure.in: 40: macro `AM_PATH_GTK' not found in library ./configure: line 1236: syntax error near unexpected token `2.4' ./configure: line 1236: `JG_GTK_JAVA(2.4)' Any ideas ? scoon On Mon, 1 Nov 2004 19:52:27 +0000, Mark Howard <mh...@ti...> wrote: > On Sat, Oct 30, 2004 at 07:03:21PM +0100, Sean Coughlan wrote: > > On a clean ubuntu install with all the appropiate packages i had to > > configure like this > > ./configure CFLAGS=-I/usr/lib/gcc/i486-linux/3.4.2/include/ > This should not be needed. We've been talking to the gcj developers about this > -- if the gcj includes cannot be found then your distribution has broken gcj. > > > and do this before a make > > export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig/:/usr/lib/pkgconfig/ > > to get java-gnome up and running. > This is probably needed for installing anything if you have a lot of things > installed in /usr/local/ > > -- > .''`. Mark Howard > : :' : > `. `' http://www.tildemh.com > `- mh...@de... | mh...@ti... > > > > > ------------------------------------------------------- > This SF.Net email is sponsored by: > Sybase ASE Linux Express Edition - download now for FREE > LinuxWorld Reader's Choice Award Winner for best database on Linux. > http://ads.osdn.com/?ad_id=5588&alloc_id=12065&op=click > _______________________________________________ > java-gnome-developer mailing list > jav...@li... > https://lists.sourceforge.net/lists/listinfo/java-gnome-developer > |
From: Mark H. <mh...@ti...> - 2004-11-15 13:09:16
|
Do you have libgtk...-dev packages installed? In fact, it's probably best to install gnome-devel. -- .""`. Mark Howard : :" : `. `" http://www.tildemh.com `- mh...@de... | mh...@ti... |
From: Skip C. <sco...@gm...> - 2004-11-15 14:09:51
|
Hey there, I do have gnome-devel installed. When I run autogen.sh, I get this: -------------------------------------------------------------------------------- -- Running ./autogen.sh in libgtk-java aclocal: configure.in: 42: macro `AM_PATH_GTK' not found in library ./configure: line 1240: JG_COMMON: command not found configure: creating ./config.status config.status: creating Makefile config.status: creating gtk2-java.pc config.status: creating gtk2-java.pc.buildplace config.status: creating doc/Makefile config.status: creating doc/examples/runExample.sh config.status: creating src/Makefile config.status: creating src/java//org/gnu/gtk/Gtk.java config.status: creating src/java/org/gnu/gdk/Gdk.java config.status: creating src/java/org/gnu/glib/GObject.java -------------------------------------------------------------------------------- -- Running ./autogen.sh in libgnome-java using macro dir /home/scoon/java-gnome/src/java-gnome/libgtk-java/macros/ aclocal: configure.in: 40: macro `AM_PATH_GTK' not found in library ./configure: line 1236: syntax error near unexpected token `2.4' ./configure: line 1236: `JG_GTK_JAVA(2.4)' I am not really certain on what to do next. I looked at the configure file and at least around the above complaint seems ok. I am getting java-gnome like this: CVSROOT=":pserver:ano...@an...:/cvs/gnome" cvs -z3 co -r MAINT_2_8 java-gnome Maybe that is my problem, but everything checks out all right. Thanks for any input, scoon On Mon, 15 Nov 2004 13:08:51 +0000, Mark Howard <mh...@ti...> wrote: > Do you have libgtk...-dev packages installed? In fact, it's probably best to > install gnome-devel. > > -- > .""`. Mark Howard > > > : :" : > `. `" http://www.tildemh.com > `- mh...@de... | mh...@ti... > |
From: Mark H. <mh...@ti...> - 2004-11-15 14:32:14
|
Quoting Skip Coon <sco...@gm...>: > Hey there, > > I do have gnome-devel installed. When I run autogen.sh, I get this: > > -------------------------------------------------------------------------------- > -- Running ./autogen.sh in libgtk-java > > aclocal: configure.in: 42: macro `AM_PATH_GTK' not found in library > ./configure: line 1240: JG_COMMON: command not found Try editing libgtk-java/autogen, adding an exta -I /usr/share/aclocal/ (or wherever libgtk...-dev installes the M4 macro which defines AM_PATH_GTK) -- .""`. Mark Howard : :" : `. `" http://www.tildemh.com `- mh...@de... | mh...@ti... |