Changeset 3302
- Timestamp:
- 01/27/08 23:51:35
- Files:
-
- trunk/ChangeLog (modified) (1 diff)
- trunk/bindings/Makefile.am (modified) (1 diff)
- trunk/bindings/dotnet (added)
- trunk/bindings/dotnet/AssemblyInfo.cs.in (added)
- trunk/bindings/dotnet/Makefile.am (added)
- trunk/bindings/dotnet/libtinymail-1.0.dll.config.in (added)
- trunk/bindings/dotnet/libtinymail-sources.xml (added)
- trunk/configure.ac (modified) (2 diffs)
- trunk/m4/dotnet.m4 (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/ChangeLog
r3301 r3302 1 2008-01-28 Philip Van Hoof <pvanhoof@gnome.org> 2 3 * Added skeleton for unfinished DotNet bindings. This wont work yet, 4 it seems gapi2 is generating a few *Implementor types incorrectly. 5 1 6 2008-01-27 Philip Van Hoof <pvanhoof@gnome.org> 2 7 trunk/bindings/Makefile.am
r3092 r3302 6 6 SUBDIRS = vala 7 7 endif 8 9 if BUILD_NET_BINDINGS 10 SUBDIRS = dotnet 11 endif trunk/configure.ac
r3287 r3302 285 285 esac],[build_vala_bindings=false]) 286 286 AM_CONDITIONAL(BUILD_VALA_BINDINGS, test x$build_vala_bindings = xtrue) 287 288 289 dnl ### Enable the .NET language bindings ## 290 AC_ARG_ENABLE(dotnet-bindings, 291 AC_HELP_STRING([--enable-dotnet-bindings], 292 [Build .NET bindings (no, yes)]), 293 [case "${enableval}" in 294 yes) build_net_bindings=true ;; 295 no) build_net_bindings=false ;; 296 *) AC_MSG_ERROR(bad value ${enableval} for --enable-dotnet-bindings) ;; 297 esac],[build_net_bindings=false]) 298 299 AC_TNY_DOTNET_CHECK 300 301 AM_CONDITIONAL(BUILD_NET_BINDINGS, test x$build_net_bindings = xtrue) 287 302 288 303 … … 504 519 bindings/python/tinymail.pth 505 520 bindings/vala/Makefile 521 bindings/dotnet/Makefile 522 bindings/dotnet/AssemblyInfo.cs 523 bindings/dotnet/libtinymail-1.0.dll.config 506 524 libtinymail/Makefile 507 525 libtinymail/libtinymail.pc
