~ubuntu-branches/ubuntu/natty/gtk-sharp2/natty

« back to all changes in this revision

Viewing changes to configure.in

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2010-05-18 00:00:41 UTC
  • mfrom: (1.1.16 upstream) (13.1.7 sid)
  • Revision ID: james.westby@ubuntu.com-20100518000041-tlgvki554jx6ndhi
Tags: 2.12.10-1
* New upstream release
* debian/rules:
  + Bump API version to 2.12.10
* debian/control:
  + Bump Standards to 3.8.4 (no changes needed)
* debian/source/format:
  + Force Debian source format 1.0
* debian/rules:
  + Write a get-orig-source rule
* debian/watch:
  + Get rid of evil "debian uupdate" line which breaks packaging work on
    Ubuntu
* debian/patches/01_dllmaps.dpatch:
  + Refreshed

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
AC_INIT(README)
3
3
AC_CANONICAL_SYSTEM
4
4
AM_CONFIG_HEADER(config.h)
5
 
AM_INIT_AUTOMAKE(gtk-sharp, 2.12.9)
 
5
AM_INIT_AUTOMAKE(gtk-sharp, 2.12.10)
6
6
AM_MAINTAINER_MODE
7
7
 
8
8
API_VERSION=2.12.0.0
77
77
)
78
78
fi
79
79
 
 
80
if test "x$platform_win32" = "xyes"; then
 
81
        AC_PATH_PROG(WIX, candle, no)
 
82
        if test "x$WIX" = "xno" ; then
 
83
                enable_msi = no
 
84
        else
 
85
                enable_msi = yes
 
86
        fi
 
87
else
 
88
        enable_msi = no
 
89
fi
 
90
 
80
91
CSDEFINES='-define:GTK_SHARP_2_6 -define:GTK_SHARP_2_8 -define:GTK_SHARP_2_10 -define:GTK_SHARP_2_12'
81
92
CSFLAGS="$DEBUG_FLAGS $CSDEFINES $WIN64DEFINES"
82
93
AC_SUBST(CSFLAGS)
101
112
 
102
113
MONO_REQUIRED_VERSION=1.0
103
114
PKG_CHECK_MODULES(MONO_DEPENDENCY, mono >= $MONO_REQUIRED_VERSION, has_mono=true, has_mono=false)
 
115
if test "x$has_mono" = "xfalse" ; then
 
116
        PKG_CHECK_MODULES(MONO_DEPENDENCY, mono-2 >= $MONO_REQUIRED_VERSION, has_mono=true, has_mono=false)
 
117
fi
104
118
 
105
119
AC_PATH_PROG(GACUTIL, gacutil, no)
106
120
if test "x$GACUTIL" = "xno" ; then
190
204
AC_SUBST(GLADE_CFLAGS)
191
205
AC_SUBST(GLADE_LIBS)
192
206
 
 
207
GDK_BACKEND=`pkg-config --variable=target gtk+-2.0`
 
208
AC_SUBST(GDK_BACKEND)
 
209
 
193
210
AC_PATH_PROG(MDASSEMBLER, mdassembler, no)
194
211
AC_PATH_PROG(MONODOCER, monodocer, no)
195
212
if test "x$MONODOCER" = "xno" -o "x$MDASSEMBLER" = "xno"; then
206
223
AM_CONDITIONAL(ENABLE_GLADE, test "x$enable_glade" = "xyes")
207
224
AM_CONDITIONAL(ENABLE_DOTNET, test "x$enable_dotnet" = "xyes")
208
225
AM_CONDITIONAL(ENABLE_MONODOC, test "x$enable_monodoc" = "xyes")
 
226
AM_CONDITIONAL(ENABLE_MSI, test "x$enable_msi" = "xyes")
209
227
AM_CONDITIONAL(ENABLE_MONOGETOPTIONS, test "x$has_mono" = "xtrue")
210
228
 
211
229
AC_SUBST(CFLAGS)
214
232
AssemblyInfo.cs
215
233
Makefile
216
234
policy.config
217
 
gtk-sharp-2.0.wxs
 
235
msi/gtk-sharp-2.0.wxs
 
236
msi/Makefile
 
237
msi/unmanaged/Makefile
 
238
msi/unmanaged/custom/Makefile
 
239
msi/unmanaged/custom/etc/Makefile
 
240
msi/unmanaged/custom/etc/gtk-2.0/Makefile
 
241
msi/unmanaged/custom/share/Makefile
 
242
msi/unmanaged/custom/share/icons/Makefile
 
243
msi/unmanaged/custom/share/icons/hicolor/Makefile
218
244
sources/Makefile
219
245
parser/Makefile
220
246
parser/gapi-2.0.pc