List Info

Thread: compiling monodevelop 0.18




compiling monodevelop 0.18
user name
2007-12-22 11:16:21
Hi,
I installed latest mono   from  Open suse  Build sevice';s fedora 8 repo.
Although I have installed mono-addins from source, when I run ./configure for Monodevelop I get this

[shariquesharique-x2 monodevelop-0.18 ]$ ./configure
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking how to create a ustar tar archive... gnutar
checking whether to enable maintainer-specific portions of Makefiles... no
checking for style of include used by make... GNU
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking dependency style of gcc... none
checking for intltool >= 0.25... 0.35.5 found
checking for perl... /usr/bin/perl
checking for XML::Parser... ok
checking for iconv... /usr/bin/iconv
checking for msgfmt... /usr/bin/msgfmt
checking for msgmerge... /usr/bin/msgmerge
checking for xgettext... /usr/bin/xgettext
checking for mono... /usr/bin/mono
checking for gmcs... /usr/bin/gmcs
checking for update-mime-database... /usr/bin/update-mime-database
checking for update-desktop-database... /usr/bin/update-desktop-database
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for UNMANAGED_DEPENDENCIES_MONO... yes
checking for UNMANAGED_DEPENDENCIES_MINT... no

checking for mono... /usr/bin/mono
checking for gmcs... /usr/bin/gmcs
checking for MONO_ADDINS... configure: error: Package requirements (mono-addins >= 0.3) were not met:

No package 'mono-addins' found

Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.

Alternatively, you may set the environment variables MONO_ADDINS_CFLAGS
and MONO_ADDINS_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.

Also how I can check that Moonlight support is compiled in Mono package?
--
Sharique uddin Ahmed Farooqui
(C++/C# Developer, IT Consultant)
A revolution is about to begin.
A world is about to change.
And you and me are "the initiator".
Re: compiling monodevelop 0.18
country flaguser name
France
2007-12-22 11:44:21
Le Sat, 22 Dec 2007 22:46:21 +0530,
"Sharique uddin Ahmed Farooqui" <safknwgmail.com> a écrit :

> No package 'mono-addins' found

You have to install Mono-addins 0.3. You will find link on
monodevelop
download page

_______________________________________________
Monodevelop-list mailing list
Monodevelop-listlists.ximian.com
http://lists.ximian.com/mailman/listinfo/monodevelop-li
st

Re: compiling monodevelop 0.18
user name
2007-12-23 13:19:28
Dependency is relly big problem in linux.&nbsp;
How to set path in pkg-config?

On Dec 23, 2007 8:16 PM, lordphoenix < lordphoenixtuxfamily.org">lordphoenixtuxfamily.org > wrote:
Le Sun, 23 Dec 2007 03:41:27 +0530,
"Sharique uddin Ahmed Farooqui&quot; < safknwgmail.com">safknwgmail.com> a écrit :

> On Dec 22, 2007 11:14 PM, lordphoenix < lordphoenixtuxfamily.org">lordphoenixtuxfamily.org>
&gt; wrote:
>;
> > Le Sat, 22 Dec 2007 22:46:21 +0530,
>; > "Sharique uddin Ahmed Farooqui&quot; < safknwgmail.com">safknwgmail.com> a écrit :
> >
> > > No package 'mono-addins' found
&gt; >
> > You have to install Mono-addins 0.3. You will find link on
> > monodevelop download page
>
> My friend it seems that u hav not read my mail properly.
>  I download Mono-addins 0.3 source (no rpm provided on site), i
> compiled it and installed it. even after that error is same. Do I
> need to do some configurations
Sorry I had not seen it. You must use a special configure option to
compile monodevelop see it in readme file in monodevelop directory.



--
Sharique uddin Ahmed Farooqui
(C++/C# Developer, IT Consultant)
A revolution is about to begin.
A world is about to change.
And you and me are "the initiator&quot;.
Re: compiling monodevelop 0.18
user name
2007-12-30 04:21:57
Now I'm getting following error.
----

** (/usr/lib/mono/2.0/gmcs.exe:4250): WARNING **: The following assembly referenced from /root/tmp/monodevelop-0.17/build/bin/MonoDevelop.Components.dll could not be loaded:
  ; &nbsp; Assembly:&nbsp;  gecko-sharp &nbsp;  (assemblyref_index=11)
 &nbsp; &nbsp; Version:&nbsp; &nbsp; 2.0.0.0
&nbsp;   ; Public Key: ccf7d78a55e9f021
The assembly was not found in the Global Assembly Cache, a path listed in the MONO_PATH environment variable, or in the location of the executing assembly (/root/tmp/monodevelop- 0.17/build/bin/).


** (/usr/lib/mono/2.0/gmcs.exe:4250): WARNING **: Could not load file or assembly 'gecko-sharp, Version=2.0.0.0, Culture=neutral, PublicKeyToken=ccf7d78a55e9f021&#39; or one of its dependencies.
./MonoDevelop.WebReferences.Dialogs/WebReferenceDialog.cs(35,27): error CS0246: The type or namespace name `MozillaControl' could not be found. Are you missing a using directive or an assembly reference?
Compilation failed: 1 error(s), 0 warnings
make[2]: *** [../../build/AddIns/MonoDevelop.WebReferences/MonoDevelop.WebReferences.dll] Error 1

---
Sharique

On Dec 24, 2007 3:13 AM, Radu < kenjiru.rogmail.com"> kenjiru.rogmail.com> wrote:
Good evening.. Ahmed!

First of all dependency is not a problem, but a solution to a problem. A
programmer more than anybody should know that.

Regarding your issue, when you install mono-addins from sources, by
default it will be installed in /usr/local. But the rest of the mono
files are located in /usr, so all you have to do is to tell configure
the correct prefix:

./configure --prefix=/usr/
make
sudo make install

Regards,
Radu

Sharique uddin Ahmed Farooqui wrote:
&gt; Dependency is relly big problem in linux.
>; How to set path in pkg-config?



--
Sharique uddin Ahmed Farooqui
(C++/C# Developer, IT Consultant)
A revolution is about to begin.
A world is about to change.
And you and me are "the initiator&quot;.
Re: compiling monodevelop 0.18
user name
2007-12-30 08:01:35
Remove your ~/.config/MonoDevelop directory.

El dg 30 de 12 del 2007 a les 15:51 +0530, en/na Sharique
uddin Ahmed
Farooqui va escriure:
> Now I'm getting following error.
> ----
> 
> ** (/usr/lib/mono/2.0/gmcs.exe:4250): WARNING **: The
following
> assembly referenced
> from
/root/tmp/monodevelop-0.17/build/bin/MonoDevelop.Components.
dll
> could not be loaded: 
>      Assembly:   gecko-sharp    (assemblyref_index=11)
>      Version:    2.0.0.0
>      Public Key: ccf7d78a55e9f021
> The assembly was not found in the Global Assembly
Cache, a path listed
> in the MONO_PATH environment variable, or in the
location of the
> executing assembly (/root/tmp/monodevelop-
0.17/build/bin/).
> 
> 
> ** (/usr/lib/mono/2.0/gmcs.exe:4250): WARNING **: Could
not load file
> or assembly 'gecko-sharp, Version=2.0.0.0,
Culture=neutral,
> PublicKeyToken=ccf7d78a55e9f021' or one of its
dependencies. 
>
./MonoDevelop.WebReferences.Dialogs/WebReferenceDialog.cs(35
,27):
> error CS0246: The type or namespace name
`MozillaControl' could not be
> found. Are you missing a using directive or an assembly
reference?
> Compilation failed: 1 error(s), 0 warnings 
> make[2]: ***
>
[../../build/AddIns/MonoDevelop.WebReferences/MonoDevelop.We
bReferences.dll] Error 1
> 
> ---
> Sharique
> 
> On Dec 24, 2007 3:13 AM, Radu <kenjiru.rogmail.com> wrote:
>         Good evening.. Ahmed!
>         
>         First of all dependency is not a problem, but a
solution to a
>         problem. A 
>         programmer more than anybody should know that.
>         
>         Regarding your issue, when you install
mono-addins from
>         sources, by
>         default it will be installed in /usr/local. But
the rest of
>         the mono
>         files are located in /usr, so all you have to
do is to tell
>         configure 
>         the correct prefix:
>         
>         ./configure --prefix=/usr/
>         make
>         sudo make install
>         
>         Regards,
>         Radu
>         
>         
>         Sharique uddin Ahmed Farooqui wrote:
>         > Dependency is relly big problem in linux.
>         > How to set path in pkg-config?
>         
> 
> 
> 
> -- 
> Sharique uddin Ahmed Farooqui
> (C++/C# Developer, IT Consultant)
> A revolution is about to begin.
> A world is about to change.
> And you and me are "the initiator". 
> _______________________________________________
> Monodevelop-list mailing list
> Monodevelop-listlists.ximian.com
> http://lists.ximian.com/mailman/listinfo/monodevelop-li
st

_______________________________________________
Monodevelop-list mailing list
Monodevelop-listlists.ximian.com
http://lists.ximian.com/mailman/listinfo/monodevelop-li
st

Re: compiling monodevelop 0.18
user name
2007-12-30 10:18:36

still getting same error.

On Dec 30, 2007 7:31 PM, Lluis Sanchez < lluisximian.com">lluisximian.com> wrote:
Remove your ~/.config/MonoDevelop directory.

El dg 30 de 12 del 2007 a les 15:51 +0530, en/na Sharique uddin Ahmed
Farooqui va escriure:
> Now I'm getting following error.
&gt; ----
>
> ** (/usr/lib/mono/2.0/gmcs.exe:4250): WARNING **: The following
> assembly referenced
> from /root/tmp/monodevelop-0.17/build/bin/MonoDevelop.Components.dll
&gt; could not be loaded:
>      Assembly:   gecko-sharp    (assemblyref_index=11)
>;      Version:    2.0.0.0
&gt;      Public Key: ccf7d78a55e9f021
> The assembly was not found in the Global Assembly Cache, a path listed
&gt; in the MONO_PATH environment variable, or in the location of the
> executing assembly (/root/tmp/monodevelop- 0.17/build/bin/).
>;
>
> ** (/usr/lib/mono/2.0/gmcs.exe:4250): WARNING **: Could not load file
>; or assembly 'gecko-sharp, Version=2.0.0.0, Culture=neutral,
> PublicKeyToken=ccf7d78a55e9f021&#39; or one of its dependencies.
> ./MonoDevelop.WebReferences.Dialogs/WebReferenceDialog.cs(35,27):
> error CS0246: The type or namespace name `MozillaControl' could not be
> found. Are you missing a using directive or an assembly reference?
> Compilation failed: 1 error(s), 0 warnings
&gt; make[2]: ***
> [../../build/AddIns/MonoDevelop.WebReferences/MonoDevelop.WebReferences.dll] Error 1
>
>; ---
> Sharique
&gt;
> On Dec 24, 2007 3:13 AM, Radu < kenjiru.rogmail.com">kenjiru.rogmail.com > wrote:
>;         Good evening.. Ahmed!
>;
>         First of all dependency is not a problem, but a solution to a
>         problem. A
>         programmer more than anybody should know that.
&gt;
>         Regarding your issue, when you install mono-addins from
>         sources, by
>         default it will be installed in /usr/local. But the rest of
>         the mono
>         files are located in /usr, so all you have to do is to tell
>;         configure
>         the correct prefix:
&gt;
>         ./configure --prefix=/usr/
>         make
>         sudo make install
&gt;
>         Regards,
&gt;         Radu
>;
>
>         Sharique uddin Ahmed Farooqui wrote:
>;         > Dependency is relly big problem in linux.
>;         > How to set path in pkg-config?
>
>
>
>
> --
> Sharique uddin Ahmed Farooqui
&gt; (C++/C# Developer, IT Consultant)
> A revolution is about to begin.
>; A world is about to change.
&gt; And you and me are "the initiator&quot;.
> _______________________________________________
> Monodevelop-list mailing list
> Monodevelop-listlists.ximian.com">Monodevelop-listlists.ximian.com
&gt; http://lists.ximian.com/mailman/listinfo/monodevelop-list




--
Sharique uddin Ahmed Farooqui
(C++/C# Developer, IT Consultant)
A revolution is about to begin.
A world is about to change.
And you and me are "the initiator&quot;.
Re: compiling monodevelop 0.18
user name
2007-12-30 13:27:06
On Dec 30, 2007 5:21 AM, Sharique uddin Ahmed Farooqui
<safknwgmail.com> wrote:
> Now I'm getting following error.
> ----
>
> ** (/usr/lib/mono/2.0/gmcs.exe:4250): WARNING **: The
following assembly
> referenced from
>
/root/tmp/monodevelop-0.17/build/bin/MonoDevelop.Components.
dll could not be
> loaded:
>      Assembly:   gecko-sharp    (assemblyref_index=11)
>      Version:    2.0.0.0
>      Public Key: ccf7d78a55e9f021
> The assembly was not found in the Global Assembly
Cache, a path listed in
> the MONO_PATH environment variable, or in the location
of the executing
> assembly (/root/tmp/monodevelop- 0.17/build/bin/).

Didn't your first email say you were building 0.18?

-- 
Michael Hutchinson
http://mjhutchinson.com
_______________________________________________
Monodevelop-list mailing list
Monodevelop-listlists.ximian.com
http://lists.ximian.com/mailman/listinfo/monodevelop-li
st

[1-7]

about | contact  Other archives ( Real Estate discussion Medical topics )