~ubuntu-branches/ubuntu/vivid/glib2.0/vivid-proposed

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Package Import Robot
  • Author(s): Iain Lane, Laurent Bigonville, Iain Lane
  • Date: 2015-01-20 13:46:28 UTC
  • mfrom: (207.1.8 experimental)
  • Revision ID: package-import@ubuntu.com-20150120134628-b6muiofhl885twuy
Tags: 2.43.3-1
[ Laurent Bigonville ]
* debian/control.in, debian/libglib2.0-dev.install.in,
  debian/libglib2.0-0-dbg.install.in: Install the gdb python scripts in the
  proper locations, move them to the -dbg package and add the needed
  Breaks/Replaces (Closes: #774024)

[ Iain Lane ]
* New upstream release 2.43.3
  + add g_set_object() convenience function
  + GNetworkMonitor: check if NM is not running and don't crash
  + fix some races with g_mkdir_with_parents
  + avoid use of G_STRLOC in G_OBJECT_WARN_INVALID_PSPEC in order to save on
    static strings
  + fix some content type vs. mime issues
* 07_disable_tests_on_slow_archs.patch: Refresh

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
 
32
32
m4_define([glib_major_version], [2])
33
33
m4_define([glib_minor_version], [43])
34
 
m4_define([glib_micro_version], [2])
 
34
m4_define([glib_micro_version], [3])
35
35
m4_define([glib_interface_age], [0])
36
36
m4_define([glib_binary_age],
37
37
          [m4_eval(100 * glib_minor_version + glib_micro_version)])
762
762
# check for bytesex stuff
763
763
AC_C_BIGENDIAN
764
764
if test x$ac_cv_c_bigendian = xuniversal ; then
765
 
AC_TRY_COMPILE([#include <endian.h>], [#if __BYTE_ORDER == __BIG_ENDIAN
766
 
#else
767
 
#error Not a big endian. 
768
 
#endif],
769
 
    ac_cv_c_bigendian=yes
770
 
    ,AC_TRY_COMPILE([#include <endian.h>], [#if __BYTE_ORDER == __LITTLE_ENDIAN
771
 
#else
772
 
#error Not a little endian. 
773
 
#endif],
774
 
    ac_cv_c_bigendian=no
775
 
    ,AC_MSG_WARN([Could not determine endianness.])))
 
765
  AC_MSG_ERROR([Universal builds not supported: see https://bugs.gnome.org/742548])
776
766
fi
777
767
 
778
768