summaryrefslogtreecommitdiffstats
path: root/patches/samba-3.0.37/0005-configure.in-fix-time_t-detection.patch
diff options
context:
space:
mode:
authorMarc Kleine-Budde <mkl@pengutronix.de>2009-10-29 17:19:54 +0100
committerMarc Kleine-Budde <mkl@pengutronix.de>2009-10-29 20:17:36 +0100
commit59a3c0d7876ee1679d8936e62a2162da8414de72 (patch)
tree2bcdc2b5ab5412dd3866ce2b01a63aaf7912d4da /patches/samba-3.0.37/0005-configure.in-fix-time_t-detection.patch
parenta3dc60932f61a11a4d59d1199f898c47b1c0a81b (diff)
downloadptxdist-59a3c0d7876ee1679d8936e62a2162da8414de72.tar.gz
ptxdist-59a3c0d7876ee1679d8936e62a2162da8414de72.tar.xz
[samba] version bump to 3.0.37
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
Diffstat (limited to 'patches/samba-3.0.37/0005-configure.in-fix-time_t-detection.patch')
-rw-r--r--patches/samba-3.0.37/0005-configure.in-fix-time_t-detection.patch34
1 files changed, 34 insertions, 0 deletions
diff --git a/patches/samba-3.0.37/0005-configure.in-fix-time_t-detection.patch b/patches/samba-3.0.37/0005-configure.in-fix-time_t-detection.patch
new file mode 100644
index 000000000..6e01f6780
--- /dev/null
+++ b/patches/samba-3.0.37/0005-configure.in-fix-time_t-detection.patch
@@ -0,0 +1,34 @@
+From 6f48413916d3575a1f12bc14e0990f40606e894a Mon Sep 17 00:00:00 2001
+From: Marc Kleine-Budde <mkl@pengutronix.de>
+Date: Tue, 7 Jul 2009 18:57:16 +0200
+Subject: [PATCH 5/8] [configure.in] fix time_t detection
+
+Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
+---
+ source/configure.in | 9 ++++++---
+ 1 files changed, 6 insertions(+), 3 deletions(-)
+
+diff --git a/source/configure.in b/source/configure.in
+index 85b0bd7..164dbcb 100644
+--- a/source/configure.in
++++ b/source/configure.in
+@@ -1951,10 +1951,13 @@ if test x"$samba_cv_compiler_supports_ll" = x"yes"; then
+ fi
+
+
++AC_CHECK_SIZEOF(time_t)
+ AC_CACHE_CHECK([for 64 bit time_t],samba_cv_SIZEOF_TIME_T,[
+-AC_TRY_RUN([#include <time.h>
+-main() { exit((sizeof(time_t) == 8) ? 0 : 1); }],
+-samba_cv_SIZEOF_TIME_T=yes,samba_cv_SIZEOF_TIME_T=no,samba_cv_SIZEOF_TIME_T=cross)])
++if test $ac_cv_sizeof_time_t -eq 8; then
++ samba_cv_SIZEOF_TIME_T=yes
++else
++ samba_cv_SIZEOF_TIME_T=no
++fi])
+ if test x"$samba_cv_SIZEOF_TIME_T" = x"yes"; then
+ AC_DEFINE(SIZEOF_TIME_T,8,[The size of the 'time_t' type])
+ fi
+--
+1.6.3.3
+