summaryrefslogtreecommitdiff
path: root/archivers/pax/files/configure
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2004-08-21 04:20:50 +0000
committerjlam <jlam@pkgsrc.org>2004-08-21 04:20:50 +0000
commit3179bedc937245295d44bbc9c5b2914e929c67f0 (patch)
tree41321937f16aaa91bfe3435f526617b45f43befb /archivers/pax/files/configure
parent0e84911b78f3a200c3538b46865a43e31ef1f681 (diff)
downloadpkgsrc-3179bedc937245295d44bbc9c5b2914e929c67f0.tar.gz
Mirror change in archivers/mtree by <heinz> on 2004/04/16:
Introduce HAVE_FILE_FLAGS if the system declares UF_SETTABLE and SF_SETTABLE in addition to member 'st_flags' of struct stat. Use HAVE_FILE_FLAGS instead of HAVE_STRUCT_STAT_ST_FLAGS. This avoids confusion on UnixWare which has 'st_flags' but does _not_ support file flags.
Diffstat (limited to 'archivers/pax/files/configure')
-rwxr-xr-xarchivers/pax/files/configure144
1 files changed, 144 insertions, 0 deletions
diff --git a/archivers/pax/files/configure b/archivers/pax/files/configure
index 4b1da1b2eff..29ee50fd6b4 100755
--- a/archivers/pax/files/configure
+++ b/archivers/pax/files/configure
@@ -3368,6 +3368,150 @@ _ACEOF
fi
+echo "$as_me:$LINENO: checking whether UF_SETTABLE is declared" >&5
+echo $ECHO_N "checking whether UF_SETTABLE is declared... $ECHO_C" >&6
+if test "${ac_cv_have_decl_UF_SETTABLE+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ cat >conftest.$ac_ext <<_ACEOF
+/* confdefs.h. */
+_ACEOF
+cat confdefs.h >>conftest.$ac_ext
+cat >>conftest.$ac_ext <<_ACEOF
+/* end confdefs.h. */
+$ac_includes_default
+int
+main ()
+{
+#ifndef UF_SETTABLE
+ char *p = (char *) UF_SETTABLE;
+#endif
+
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>conftest.er1
+ ac_status=$?
+ grep -v '^ *+' conftest.er1 >conftest.err
+ rm -f conftest.er1
+ cat conftest.err >&5
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -z "$ac_c_werror_flag"
+ || test ! -s conftest.err'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; } &&
+ { ac_try='test -s conftest.$ac_objext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_cv_have_decl_UF_SETTABLE=yes
+else
+ echo "$as_me: failed program was:" >&5
+sed 's/^/| /' conftest.$ac_ext >&5
+
+ac_cv_have_decl_UF_SETTABLE=no
+fi
+rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+fi
+echo "$as_me:$LINENO: result: $ac_cv_have_decl_UF_SETTABLE" >&5
+echo "${ECHO_T}$ac_cv_have_decl_UF_SETTABLE" >&6
+if test $ac_cv_have_decl_UF_SETTABLE = yes; then
+
+cat >>confdefs.h <<_ACEOF
+#define HAVE_DECL_UF_SETTABLE 1
+_ACEOF
+
+
+else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_DECL_UF_SETTABLE 0
+_ACEOF
+
+
+fi
+echo "$as_me:$LINENO: checking whether SF_SETTABLE is declared" >&5
+echo $ECHO_N "checking whether SF_SETTABLE is declared... $ECHO_C" >&6
+if test "${ac_cv_have_decl_SF_SETTABLE+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ cat >conftest.$ac_ext <<_ACEOF
+/* confdefs.h. */
+_ACEOF
+cat confdefs.h >>conftest.$ac_ext
+cat >>conftest.$ac_ext <<_ACEOF
+/* end confdefs.h. */
+$ac_includes_default
+int
+main ()
+{
+#ifndef SF_SETTABLE
+ char *p = (char *) SF_SETTABLE;
+#endif
+
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>conftest.er1
+ ac_status=$?
+ grep -v '^ *+' conftest.er1 >conftest.err
+ rm -f conftest.er1
+ cat conftest.err >&5
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -z "$ac_c_werror_flag"
+ || test ! -s conftest.err'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; } &&
+ { ac_try='test -s conftest.$ac_objext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_cv_have_decl_SF_SETTABLE=yes
+else
+ echo "$as_me: failed program was:" >&5
+sed 's/^/| /' conftest.$ac_ext >&5
+
+ac_cv_have_decl_SF_SETTABLE=no
+fi
+rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
+fi
+echo "$as_me:$LINENO: result: $ac_cv_have_decl_SF_SETTABLE" >&5
+echo "${ECHO_T}$ac_cv_have_decl_SF_SETTABLE" >&6
+if test $ac_cv_have_decl_SF_SETTABLE = yes; then
+
+cat >>confdefs.h <<_ACEOF
+#define HAVE_DECL_SF_SETTABLE 1
+_ACEOF
+
+
+else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_DECL_SF_SETTABLE 0
+_ACEOF
+
+
+fi
+
+
+
+
# Checks for library functions.