pkgsrc/graphics/evas/patches/patch-configure.ac
sno 5d40512024 Updating enlightenment libraries to 1.7.7, add missing enlightenment 0.17.3
libraries and enlightenment 0.17.3 itself.

Upstream changes of Eina (to get an impression):
Eina 1.7.7

Changes since Eina 1.7.6:
-------------------------

No changes, just updating to keep in sync with last release.


Changes since Eina 1.7.5:
-------------------------

Improvements:
    * Honor tile size in Eina_Tiler.

Fixes:
    * Prevent denial of service on Eina_Hash function.
    * Fix map leak in Eina_File infrastructure.
    * Fix portability issue on 64bits system for Eina_CList.
    * Fix magic failure in eina_value_array_count when array has not been allocated

Changes since Eina 1.7.4:
-------------------------

No changes, just updating to keep in sync with last release.

Changes since Eina 1.7.3:
-------------------------

Fixes:
    * Fix EINA_INLIST_FOREACH_SAFE macro
    * Add XML output to doc
    * Add installation rule for doc
    * Fix build for Windows platforms.

Changes since Eina 1.7.2:
-------------------------

    * Fix Solaris build.
    * Don't leak fd after exec.

Changes since Eina 1.7.1:
-------------------------

No changes, just updating to keep in sync with last release.
2013-06-16 18:56:04 +00:00

19 lines
518 B
Text

$NetBSD: patch-configure.ac,v 1.4 2013/06/16 18:56:05 sno Exp $
Patch for solaris nice name
--- configure.ac.orig Thu Nov 17 03:25:24 2011
+++ configure.ac Thu Sep 27 13:04:34 2012
@@ -80,8 +80,11 @@
mingw32ce*)
MODULE_ARCH="$host_os-$host_cpu"
;;
+ solaris*)
+ MODULE_ARCH="solaris-$host_cpu-v_maj.v_min.v_mic"
+ ;;
*)
- MODULE_ARCH="$host_os-$host_cpu-v_maj.v_min.v_mic"
+ MODULE_ARCH="${host_os%-gnu}-$host_cpu-v_maj.v_min.v_mic"
;;
esac
AC_SUBST(MODULE_ARCH)