2004-05-11 Mike Kestner <mkestner@ximian.com>
* *.pc.in : add Requires so that dependent libs are pulled in too. svn path=/trunk/gtk-sharp/; revision=27132
This commit is contained in:
parent
b071a8c507
commit
60d2fab857
7 changed files with 14 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
2004-05-11 Mike Kestner <mkestner@ximian.com>
|
||||
|
||||
* *.pc.in : add Requires so that dependent libs are pulled in too.
|
||||
|
||||
2004-05-11 Mike Kestner <mkestner@ximian.com>
|
||||
|
||||
* gconf/GConf/NotifyWrapper.cs : add some defensive null checking.
|
||||
|
|
|
@ -6,4 +6,5 @@ libdir=${exec_prefix}/lib
|
|||
Name: GConf#
|
||||
Description: GConf# - GConf .NET Binding
|
||||
Version: @VERSION@
|
||||
Requires: gnome-sharp
|
||||
Libs: -lib:${libdir}/mono/@PACKAGE@ -r:gconf-sharp -r:gconf-sharp-peditors
|
||||
|
|
|
@ -116,6 +116,11 @@ namespace GtkSharp.Generation {
|
|||
if ((i == count - 1) && ctype == "gpointer" && (parm_name.EndsWith ("data") || parm_name.EndsWith ("data_or_owner")))
|
||||
continue;
|
||||
|
||||
if (ctype == "GError**") {
|
||||
sw.WriteLine ("\t\t\t" + parm_name + " = IntPtr.Zero;");
|
||||
continue;
|
||||
}
|
||||
|
||||
string cstype = parms[i].CSType;
|
||||
ClassBase parm_wrapper = table.GetClassGen (ctype);
|
||||
sw.Write("\t\t\t" + cstype + " _arg" + idx);
|
||||
|
|
|
@ -6,4 +6,5 @@ libdir=${exec_prefix}/lib
|
|||
Name: Glade#
|
||||
Description: Glade# - Glade .NET Binding
|
||||
Version: @VERSION@
|
||||
Requires: gtk-sharp
|
||||
Libs: -lib:${libdir}/mono/@PACKAGE@ -r:glade-sharp
|
||||
|
|
|
@ -6,4 +6,5 @@ libdir=${exec_prefix}/lib
|
|||
Name: Gnome#
|
||||
Description: Gnome# - GNOME .NET Binding
|
||||
Version: @VERSION@
|
||||
Requires: gtk-sharp art-sharp
|
||||
Libs: -lib:${libdir}/mono/@PACKAGE@ -r:gnome-sharp
|
||||
|
|
|
@ -6,4 +6,5 @@ libdir=${exec_prefix}/lib
|
|||
Name: Gtkhtml#
|
||||
Description: Gtkhtml# - Gtkhtml .NET Binding
|
||||
Version: @VERSION@
|
||||
Requires: gnome-sharp
|
||||
Libs: -lib:${libdir}/mono/@PACKAGE@ -r:gtkhtml-sharp
|
||||
|
|
|
@ -6,4 +6,5 @@ libdir=${exec_prefix}/lib
|
|||
Name: Vte#
|
||||
Description: Vte# - libvte .NET Binding
|
||||
Version: @VERSION@
|
||||
Requires: gnome-sharp
|
||||
Libs: -lib:${libdir}/mono/@PACKAGE@ -r:vte-sharp
|
||||
|
|
Loading…
Reference in a new issue