~ubuntu-branches/debian/sid/filezilla/sid

« back to all changes in this revision

Viewing changes to configure.in

  • Committer: Bazaar Package Importer
  • Author(s): Adrien Cunin
  • Date: 2010-04-20 09:25:39 UTC
  • mfrom: (1.3.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20100420092539-10d1003e0nm4zfyp
Tags: 3.3.2.1-1
* New upstream release
   - Really fixes previously mentioned bugs (the patches for them were not
     included in upstream 3.3.1)
* Added libgtk2.0-dev to build-deps
* Added libtinyxml-dev to build-deps, so that the system libtinyxml is used
* Added debian/README.source saying that dpatch is used
* Updated Standards-Version, no change needed

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
AC_INIT(FileZilla, 3.3.1, tim.kosse@filezilla-project.org)
 
1
AC_INIT(FileZilla, 3.3.2.1, tim.kosse@filezilla-project.org)
2
2
AC_CONFIG_HEADERS([src/include/config.h])
3
3
AC_CONFIG_AUX_DIR(config)
4
4
AM_INIT_AUTOMAKE([dist-bzip2])
318
318
    fi
319
319
  fi
320
320
  if test "x$use_precomp" = "xyes"; then
 
321
    CPPFLAGS="$CPPFLAGS -fpch-preprocess"
321
322
    AC_MSG_RESULT([yes])
322
323
  else
323
324
    AC_MSG_RESULT([no])
454
455
    if test -z "$xdgopen"; then
455
456
      AC_MSG_ERROR([xdg-open not found. This program is the preferred way to launch the default browser. Please install the xdg-utils.])
456
457
    fi
 
458
 
 
459
    PKG_CHECK_MODULES(LIBGTK, gtk+-2.0,, [
 
460
      AC_MSG_ERROR([gtk+-2.0 was not found, even though the used version of wxWidgets depends on it. Are you missing the gtk+2.0 development files?])
 
461
    ])
 
462
 
 
463
    AC_SUBST(LIBGTK_LIBS)
 
464
    AC_SUBST(LIBGTK_CFLAGS)
457
465
  fi
458
466
 
459
467
  # Some more obscure platforms (e.g. HP-UX) don't have setenv which is required by POSIX