diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2015-04-12 18:48:17 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2015-04-12 18:48:40 +0200 |
commit | 59fa2dcdee8e277429bca809e7334c7ac53fc1a3 (patch) | |
tree | 8fed9a4a262298baf4b5044a8d36abc9f49e6436 /package/heimdal/patches | |
parent | cb6b9d5287c70d0d4e3142a427f9d80896537825 (diff) |
update to samba4, simplify package, support subpackages later
Diffstat (limited to 'package/heimdal/patches')
-rw-r--r-- | package/heimdal/patches/patch-cf_check-compile-et_m4 | 17 | ||||
-rw-r--r-- | package/heimdal/patches/patch-lib_com_err_Makefile_am | 11 | ||||
-rw-r--r-- | package/heimdal/patches/patch-lib_roken_roken_h_in | 11 |
3 files changed, 39 insertions, 0 deletions
diff --git a/package/heimdal/patches/patch-cf_check-compile-et_m4 b/package/heimdal/patches/patch-cf_check-compile-et_m4 new file mode 100644 index 000000000..0211e2b8f --- /dev/null +++ b/package/heimdal/patches/patch-cf_check-compile-et_m4 @@ -0,0 +1,17 @@ +--- heimdal-1.5.3.orig/cf/check-compile-et.m4 2012-12-09 23:06:44.000000000 +0100 ++++ heimdal-1.5.3/cf/check-compile-et.m4 2014-04-24 11:55:02.000000000 +0200 +@@ -3,12 +3,12 @@ dnl + dnl CHECK_COMPILE_ET + AC_DEFUN([CHECK_COMPILE_ET], [ + +-AC_CHECK_PROG(COMPILE_ET, compile_et, [compile_et]) ++AC_CHECK_PROG(COMPILE_ET, compile_et, [compile_et],[no]) + + krb_cv_compile_et="no" + krb_cv_com_err_need_r="" + krb_cv_compile_et_cross=no +-if test "${COMPILE_ET}" = "compile_et"; then ++if test "${COMPILE_ET}" != no; then + + dnl We have compile_et. Now let's see if it supports `prefix' and `index'. + AC_MSG_CHECKING(whether compile_et has the features we need) diff --git a/package/heimdal/patches/patch-lib_com_err_Makefile_am b/package/heimdal/patches/patch-lib_com_err_Makefile_am new file mode 100644 index 000000000..9c2faa8d8 --- /dev/null +++ b/package/heimdal/patches/patch-lib_com_err_Makefile_am @@ -0,0 +1,11 @@ +--- heimdal-1.5.3.orig/lib/com_err/Makefile.am 2012-12-09 23:06:44.000000000 +0100 ++++ heimdal-1.5.3/lib/com_err/Makefile.am 2014-05-27 11:51:26.000000000 +0200 +@@ -13,7 +13,7 @@ endif + + libcom_err_la_LIBADD = $(LIB_libintl) + +-bin_PROGRAMS = compile_et ++libexec_heimdal_PROGRAMS = compile_et + + include_HEADERS = com_err.h com_right.h + diff --git a/package/heimdal/patches/patch-lib_roken_roken_h_in b/package/heimdal/patches/patch-lib_roken_roken_h_in new file mode 100644 index 000000000..b571cc428 --- /dev/null +++ b/package/heimdal/patches/patch-lib_roken_roken_h_in @@ -0,0 +1,11 @@ +--- heimdal-1.5.3.orig/lib/roken/roken.h.in 2012-12-09 23:06:44.000000000 +0100 ++++ heimdal-1.5.3/lib/roken/roken.h.in 2014-04-24 10:36:35.000000000 +0200 +@@ -551,7 +551,7 @@ ROKEN_LIB_FUNCTION int ROKEN_LIB_CALL ge + ROKEN_LIB_FUNCTION char * ROKEN_LIB_CALL strerror(int); + #endif + +-#if (!defined(HAVE_STRERROR_R) && !defined(strerror_r)) || (!defined(STRERROR_R_PROTO_COMPATIBLE) && defined(HAVE_STRERROR_R)) ++#if (defined(HAVE_STRERROR_R) && !defined(strerror_r)) || (!defined(STRERROR_R_PROTO_COMPATIBLE) && defined(HAVE_STRERROR_R)) + int ROKEN_LIB_FUNCTION rk_strerror_r(int, char *, size_t); + #else + #define rk_strerror_r strerror_r |