Changeset 98983


Ignore:
Timestamp:
Oct 22, 2012, 10:23:57 PM (12 years ago)
Author:
ryandesign@…
Message:

glib2-devel: merge r93246 from glib2: BSD readlink doesn't accept -f flag; see https://bugzilla.gnome.org/show_bug.cgi?id=640834

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dports/devel/glib2-devel/files/patch-configure.diff

    r97888 r98983  
    11--- configure.orig      2012-09-17 16:50:13.000000000 -0500
    2 +++ configure   2012-09-18 16:14:27.000000000 -0500
     2+++ configure   2012-10-22 17:19:20.000000000 -0500
     3@@ -5584,7 +5584,7 @@
     4 fi
     5 
     6 GLIB_RUNTIME_LIBDIR="$with_runtime_libdir"
     7-ABS_GLIB_RUNTIME_LIBDIR="`readlink -f $libdir/$with_runtime_libdir`"
     8+ABS_GLIB_RUNTIME_LIBDIR="`readlink $libdir/$with_runtime_libdir`"
     9 
     10 
     11  if test "x$with_runtime_libdir" != "x"; then
    312@@ -30644,10 +30644,10 @@
    413 *)                     glib_vacopy=''
     
    2433+${glib_extension}typedef signed long gint64;
    2534+${glib_extension}typedef unsigned long guint64;
    26 +
     35 
     36-#define G_GINT64_CONSTANT(val) $gint64_constant
     37-#define G_GUINT64_CONSTANT(val)        $guint64_constant
    2738+#define G_GINT64_CONSTANT(val) (val##L)
    2839+#define G_GUINT64_CONSTANT(val)        (val##UL)
     
    3041+${glib_extension}typedef signed long long gint64;
    3142+${glib_extension}typedef unsigned long long guint64;
    32  
    33 -#define G_GINT64_CONSTANT(val) $gint64_constant
    34 -#define G_GUINT64_CONSTANT(val)        $guint64_constant
     43+
    3544+#define G_GINT64_CONSTANT(val) (G_GNUC_EXTENSION (val##LL))
    3645+#define G_GUINT64_CONSTANT(val)        (G_GNUC_EXTENSION (val##ULL))
Note: See TracChangeset for help on using the changeset viewer.