summaryrefslogtreecommitdiff
path: root/comms/jpilot
diff options
context:
space:
mode:
authorjlam <jlam>2002-09-21 07:14:02 +0000
committerjlam <jlam>2002-09-21 07:14:02 +0000
commit0963b5d889919208656715266acaed07a8aec2fb (patch)
tree3550c4056d7139297a4cb5f3bd1d3a2618566a82 /comms/jpilot
parent485d854cba7b6ec5724ccf7c4f54706138414d0f (diff)
downloadpkgsrc-0963b5d889919208656715266acaed07a8aec2fb.tar.gz
* buildlink1 -> buildlink2
* separate the INSTALL_DATA_DIR arguments into multiple commands, as the Solaris install can't handle lots of directories all at once * style nits
Diffstat (limited to 'comms/jpilot')
-rw-r--r--comms/jpilot/Makefile39
-rw-r--r--comms/jpilot/distinfo4
-rw-r--r--comms/jpilot/patches/patch-ae475
3 files changed, 30 insertions, 488 deletions
diff --git a/comms/jpilot/Makefile b/comms/jpilot/Makefile
index a04444f5020..8556488efbe 100644
--- a/comms/jpilot/Makefile
+++ b/comms/jpilot/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.28 2002/09/10 16:06:34 wiz Exp $
+# $NetBSD: Makefile,v 1.29 2002/09/21 07:14:02 jlam Exp $
#
DISTNAME= jpilot-0.99
@@ -14,15 +14,18 @@ BUILD_USES_MSGFMT= # defined
CONFLICTS+= jpilot-libplugin-[0-9]*
-USE_BUILDLINK_ONLY= # defined
+USE_BUILDLINK2= # defined
+USE_X11= # defined
+
GNU_CONFIGURE= # defined
-USE_LIBTOOL= # defined
+CONFIGURE_ARGS+= --with-gtk-prefix="${BUILDLINK_PREFIX.gtk}"
+CONFIGURE_ARGS+= --with-pilot-prefix="${BUILDLINK_PREFIX.pilot-link-libs}"
+CONFIGURE_ENV+= PKGLOCALEDIR="${PKGLOCALEDIR}"
+USE_LIBTOOL= # defined
LTCONFIG_OVERRIDE= ${WRKSRC}/ltconfig
-CONFIGURE_ARGS+= --with-gtk-prefix="${BUILDLINK_DIR}"
-CONFIGURE_ARGS+= --with-pilot-prefix="${BUILDLINK_DIR}"
-CONFIGURE_ENV+= PKGLOCALEDIR="${PKGLOCALEDIR}"
+DOCDIR= ${PREFIX}/share/doc/jpilot
INCDIR= ${PREFIX}/include/jpilot
HTMLDIR= ${PREFIX}/share/doc/html/jpilot
MAN1DIR= ${PREFIX}/man/man1
@@ -32,21 +35,25 @@ post-extract:
${RM} -f ${WRKSRC}/po/Makefile.in
pre-configure:
- ${SED} "s|@PREFIX@|${PREFIX}|g" ${WRKSRC}/docs/jpilot.1 \
- > ${WRKSRC}/docs/jpilot.1.patched && \
- ${MV} ${WRKSRC}/docs/jpilot.1.patched ${WRKSRC}/docs/jpilot.1
+ for file in ${WRKSRC}/docs/jpilot.1; do \
+ ${SED} -e "s|@PREFIX@|${PREFIX}|g" \
+ $${file} > $${file}.fixed; \
+ ${MV} -f $${file}.fixed $${file}; \
+ done
post-install:
- ${INSTALL_DATA_DIR} ${INCDIR} ${HTMLDIR} ${PLUGINSDIR} \
- ${PREFIX}/share/doc/jpilot
+ ${INSTALL_DATA_DIR} ${DOCDIR}
+ ${INSTALL_DATA_DIR} ${INCDIR}
+ ${INSTALL_DATA_DIR} ${HTMLDIR}
+ ${INSTALL_DATA_DIR} ${PLUGINSDIR}
cd ${WRKSRC}; ${INSTALL_DATA} libplugin.h prefs.h ${INCDIR}
- ${INSTALL_DATA} ${WRKSRC}/BUGS ${PREFIX}/share/doc/jpilot
+ ${INSTALL_DATA} ${WRKSRC}/BUGS ${DOCDIR}
cd ${WRKSRC}/docs; ${INSTALL_DATA} *.html ${HTMLDIR}
cd ${WRKSRC}/docs; ${INSTALL_MAN} *.1 ${MAN1DIR}
${TOUCH} ${PLUGINSDIR}/.directory
-.include "../../comms/pilot-link-libs/buildlink.mk"
-.include "../../devel/gettext-lib/buildlink.mk"
-.include "../../x11/gtk/buildlink.mk"
-.include "../../mk/x11.buildlink.mk"
+.include "../../comms/pilot-link-libs/buildlink2.mk"
+.include "../../devel/gettext-lib/buildlink2.mk"
+.include "../../x11/gtk/buildlink2.mk"
+
.include "../../mk/bsd.pkg.mk"
diff --git a/comms/jpilot/distinfo b/comms/jpilot/distinfo
index 2012348540a..05b1d7d8a80 100644
--- a/comms/jpilot/distinfo
+++ b/comms/jpilot/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.5 2002/02/13 22:15:54 skrll Exp $
+$NetBSD: distinfo,v 1.6 2002/09/21 07:14:03 jlam Exp $
SHA1 (jpilot-0.99.tar.gz) = d52e4b31872c1b20bf882c8a062fdb954c8f4b1f
Size (jpilot-0.99.tar.gz) = 488619 bytes
@@ -6,4 +6,4 @@ SHA1 (patch-aa) = 4773e948de2d499cdb07f735d5cbc46c1fde5b92
SHA1 (patch-ab) = 16b18f6b1bdff8e0b97cf975c0dd3e85181fe9c0
SHA1 (patch-ac) = 1dfab3f52134426e362d9bf1a11cad036d5981e7
SHA1 (patch-ad) = ae9ebca51baaca6f2542a2ac9fbd98e31f85ac34
-SHA1 (patch-ae) = 2b61c5fdbd9694150cc557b675c8c52528e37fde
+SHA1 (patch-ae) = b781ab9b8da70b9a5e4cf657aff9c20b3c201cc7
diff --git a/comms/jpilot/patches/patch-ae b/comms/jpilot/patches/patch-ae
index 4ec1b973b60..ffbd00010ae 100644
--- a/comms/jpilot/patches/patch-ae
+++ b/comms/jpilot/patches/patch-ae
@@ -1,8 +1,8 @@
-$NetBSD: patch-ae,v 1.1 2002/02/13 22:15:55 skrll Exp $
+$NetBSD: patch-ae,v 1.2 2002/09/21 07:14:04 jlam Exp $
---- configure.orig Fri Feb 8 23:43:47 2002
+--- configure.orig Tue Feb 6 11:31:18 2001
+++ configure
-@@ -3633,6 +3633,9 @@
+@@ -3633,6 +3633,9 @@ fi
< $srcdir/po/POTFILES.in > po/POTFILES
@@ -12,100 +12,7 @@ $NetBSD: patch-ae,v 1.1 2002/02/13 22:15:55 skrll Exp $
if test "x$MSGFMT" = "xno"; then
if test "x$GMSGFMT" = "xno"; then
echo "$ac_t""I can't find gettext" 1>&6
-@@ -3655,7 +3658,7 @@
- fi
-
- echo $ac_n "checking for pilot-link header files""... $ac_c" 1>&6
--echo "configure:3659: checking for pilot-link header files" >&5
-+echo "configure:3662: checking for pilot-link header files" >&5
- pilotinclude=${FORCE_PILOT_INCLUDES:-no}
- if test $pilotinclude = no ; then
- for pilot_incl in $pilot_prefix/include /usr/include /usr/local/include \
-@@ -3677,7 +3680,7 @@
-
-
- echo $ac_n "checking for pilot library files""... $ac_c" 1>&6
--echo "configure:3681: checking for pilot library files" >&5
-+echo "configure:3684: checking for pilot library files" >&5
- pilotlibs=${FORCE_PILOT_LIBS:-no}
- PILOT_LIBS="-lpisock"
-
-@@ -3710,7 +3713,7 @@
- fi
-
- echo $ac_n "checking for main in -lsocket""... $ac_c" 1>&6
--echo "configure:3714: checking for main in -lsocket" >&5
-+echo "configure:3717: checking for main in -lsocket" >&5
- ac_lib_var=`echo socket'_'main | sed 'y%./+-%__p_%'`
- if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
-@@ -3718,14 +3721,14 @@
- ac_save_LIBS="$LIBS"
- LIBS="-lsocket $LIBS"
- cat > conftest.$ac_ext <<EOF
--#line 3722 "configure"
-+#line 3725 "configure"
- #include "confdefs.h"
-
- int main() {
- main()
- ; return 0; }
- EOF
--if { (eval echo configure:3729: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
-+if { (eval echo configure:3732: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
- rm -rf conftest*
- eval "ac_cv_lib_$ac_lib_var=yes"
- else
-@@ -3757,7 +3760,7 @@
-
- if test "x$enable_pl_test" = "xyes"; then
- echo $ac_n "checking to see if I can compile a pilot link program""... $ac_c" 1>&6
--echo "configure:3761: checking to see if I can compile a pilot link program" >&5
-+echo "configure:3764: checking to see if I can compile a pilot link program" >&5
- ac_save_CFLAGS="$CFLAGS"
- CFLAGS="$CFLAGS $PILOT_FLAGS"
- ac_save_LIBS="$LIBS"
-@@ -3766,7 +3769,7 @@
- pilotcompile=no
-
- cat > conftest.$ac_ext <<EOF
--#line 3770 "configure"
-+#line 3773 "configure"
- #include "confdefs.h"
- #include "pi-config.h"
- #include "pi-socket.h"
-@@ -3774,7 +3777,7 @@
- pi_close (0);
- ; return 0; }
- EOF
--if { (eval echo configure:3778: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
-+if { (eval echo configure:3781: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
- rm -rf conftest*
- pilotcompile=yes
- else
-@@ -3810,18 +3813,18 @@
-
- if test "x$enable_plugins" = "xyes"; then
- echo $ac_n "checking for dlopen""... $ac_c" 1>&6
--echo "configure:3814: checking for dlopen" >&5
-+echo "configure:3817: checking for dlopen" >&5
- save_LIBS="$LIBS"
- LIBS="$LIBS -ldl"
- cat > conftest.$ac_ext <<EOF
--#line 3818 "configure"
-+#line 3821 "configure"
- #include "confdefs.h"
- #include <dlfcn.h>
- int main() {
- dlopen("huh",0);
- ; return 0; }
- EOF
--if { (eval echo configure:3825: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
-+if { (eval echo configure:3828: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
- rm -rf conftest*
- have_dlopen=yes
- else
-@@ -3831,6 +3834,25 @@
+@@ -3831,6 +3834,25 @@ fi
rm -f conftest*
LIBS="$save_LIBS"
@@ -131,7 +38,7 @@ $NetBSD: patch-ae,v 1.1 2002/02/13 22:15:55 skrll Exp $
if test "x$have_dlopen" = "xyes"; then
cat >> confdefs.h <<\EOF
#define ENABLE_PLUGINS 1
-@@ -3866,7 +3888,7 @@
+@@ -3866,7 +3888,7 @@ fi
# Check whether --with-gtk-prefix or --without-gtk-prefix was given.
if test "${with_gtk_prefix+set}" = set; then
withval="$with_gtk_prefix"
@@ -140,375 +47,3 @@ $NetBSD: patch-ae,v 1.1 2002/02/13 22:15:55 skrll Exp $
else
gtk_config_prefix=""
fi
-@@ -3913,7 +3935,7 @@
- # Extract the first word of "gtk-config", so it can be a program name with args.
- set dummy gtk-config; ac_word=$2
- echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
--echo "configure:3917: checking for $ac_word" >&5
-+echo "configure:3939: checking for $ac_word" >&5
- if eval "test \"`echo '$''{'ac_cv_path_GTK_CONFIG'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
-@@ -3948,7 +3970,7 @@
-
- min_gtk_version=1.2.0
- echo $ac_n "checking for GTK - version >= $min_gtk_version""... $ac_c" 1>&6
--echo "configure:3952: checking for GTK - version >= $min_gtk_version" >&5
-+echo "configure:3974: checking for GTK - version >= $min_gtk_version" >&5
- no_gtk=""
- if test "$GTK_CONFIG" = "no" ; then
- no_gtk=yes
-@@ -3971,7 +3993,7 @@
- echo $ac_n "cross compiling; assumed OK... $ac_c"
- else
- cat > conftest.$ac_ext <<EOF
--#line 3975 "configure"
-+#line 3997 "configure"
- #include "confdefs.h"
-
- #include <gtk/gtk.h>
-@@ -4049,7 +4071,7 @@
- }
-
- EOF
--if { (eval echo configure:4053: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
-+if { (eval echo configure:4075: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
- then
- :
- else
-@@ -4083,7 +4105,7 @@
- CFLAGS="$CFLAGS $GTK_CFLAGS"
- LIBS="$LIBS $GTK_LIBS"
- cat > conftest.$ac_ext <<EOF
--#line 4087 "configure"
-+#line 4109 "configure"
- #include "confdefs.h"
-
- #include <gtk/gtk.h>
-@@ -4093,7 +4115,7 @@
- return ((gtk_major_version) || (gtk_minor_version) || (gtk_micro_version));
- ; return 0; }
- EOF
--if { (eval echo configure:4097: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
-+if { (eval echo configure:4119: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
- rm -rf conftest*
- echo "*** The test program compiled, but did not run. This usually means"
- echo "*** that the run-time linker is not finding GTK or finding the wrong"
-@@ -4133,12 +4155,12 @@
-
-
- echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6
--echo "configure:4137: checking for ANSI C header files" >&5
-+echo "configure:4159: checking for ANSI C header files" >&5
- if eval "test \"`echo '$''{'ac_cv_header_stdc'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
--#line 4142 "configure"
-+#line 4164 "configure"
- #include "confdefs.h"
- #include <stdlib.h>
- #include <stdarg.h>
-@@ -4146,7 +4168,7 @@
- #include <float.h>
- EOF
- ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
--{ (eval echo configure:4150: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
-+{ (eval echo configure:4172: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
- ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
- if test -z "$ac_err"; then
- rm -rf conftest*
-@@ -4163,7 +4185,7 @@
- if test $ac_cv_header_stdc = yes; then
- # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
- cat > conftest.$ac_ext <<EOF
--#line 4167 "configure"
-+#line 4189 "configure"
- #include "confdefs.h"
- #include <string.h>
- EOF
-@@ -4181,7 +4203,7 @@
- if test $ac_cv_header_stdc = yes; then
- # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
- cat > conftest.$ac_ext <<EOF
--#line 4185 "configure"
-+#line 4207 "configure"
- #include "confdefs.h"
- #include <stdlib.h>
- EOF
-@@ -4202,7 +4224,7 @@
- :
- else
- cat > conftest.$ac_ext <<EOF
--#line 4206 "configure"
-+#line 4228 "configure"
- #include "confdefs.h"
- #include <ctype.h>
- #define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
-@@ -4213,7 +4235,7 @@
- exit (0); }
-
- EOF
--if { (eval echo configure:4217: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
-+if { (eval echo configure:4239: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
- then
- :
- else
-@@ -4237,12 +4259,12 @@
- fi
-
- echo $ac_n "checking for sys/wait.h that is POSIX.1 compatible""... $ac_c" 1>&6
--echo "configure:4241: checking for sys/wait.h that is POSIX.1 compatible" >&5
-+echo "configure:4263: checking for sys/wait.h that is POSIX.1 compatible" >&5
- if eval "test \"`echo '$''{'ac_cv_header_sys_wait_h'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
--#line 4246 "configure"
-+#line 4268 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #include <sys/wait.h>
-@@ -4258,7 +4280,7 @@
- s = WIFEXITED (s) ? WEXITSTATUS (s) : 1;
- ; return 0; }
- EOF
--if { (eval echo configure:4262: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
-+if { (eval echo configure:4284: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
- rm -rf conftest*
- ac_cv_header_sys_wait_h=yes
- else
-@@ -4282,17 +4304,17 @@
- do
- ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
- echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
--echo "configure:4286: checking for $ac_hdr" >&5
-+echo "configure:4308: checking for $ac_hdr" >&5
- if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
--#line 4291 "configure"
-+#line 4313 "configure"
- #include "confdefs.h"
- #include <$ac_hdr>
- EOF
- ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
--{ (eval echo configure:4296: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
-+{ (eval echo configure:4318: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
- ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
- if test -z "$ac_err"; then
- rm -rf conftest*
-@@ -4320,12 +4342,12 @@
-
-
- echo $ac_n "checking for pid_t""... $ac_c" 1>&6
--echo "configure:4324: checking for pid_t" >&5
-+echo "configure:4346: checking for pid_t" >&5
- if eval "test \"`echo '$''{'ac_cv_type_pid_t'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
--#line 4329 "configure"
-+#line 4351 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #if STDC_HEADERS
-@@ -4353,12 +4375,12 @@
- fi
-
- echo $ac_n "checking whether time.h and sys/time.h may both be included""... $ac_c" 1>&6
--echo "configure:4357: checking whether time.h and sys/time.h may both be included" >&5
-+echo "configure:4379: checking whether time.h and sys/time.h may both be included" >&5
- if eval "test \"`echo '$''{'ac_cv_header_time'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
--#line 4362 "configure"
-+#line 4384 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #include <sys/time.h>
-@@ -4367,7 +4389,7 @@
- struct tm *tp;
- ; return 0; }
- EOF
--if { (eval echo configure:4371: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
-+if { (eval echo configure:4393: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
- rm -rf conftest*
- ac_cv_header_time=yes
- else
-@@ -4388,12 +4410,12 @@
- fi
-
- echo $ac_n "checking whether struct tm is in sys/time.h or time.h""... $ac_c" 1>&6
--echo "configure:4392: checking whether struct tm is in sys/time.h or time.h" >&5
-+echo "configure:4414: checking whether struct tm is in sys/time.h or time.h" >&5
- if eval "test \"`echo '$''{'ac_cv_struct_tm'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
--#line 4397 "configure"
-+#line 4419 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #include <time.h>
-@@ -4401,7 +4423,7 @@
- struct tm *tp; tp->tm_sec;
- ; return 0; }
- EOF
--if { (eval echo configure:4405: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
-+if { (eval echo configure:4427: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
- rm -rf conftest*
- ac_cv_struct_tm=time.h
- else
-@@ -4423,12 +4445,12 @@
-
-
- echo $ac_n "checking return type of signal handlers""... $ac_c" 1>&6
--echo "configure:4427: checking return type of signal handlers" >&5
-+echo "configure:4449: checking return type of signal handlers" >&5
- if eval "test \"`echo '$''{'ac_cv_type_signal'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
--#line 4432 "configure"
-+#line 4454 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #include <signal.h>
-@@ -4445,7 +4467,7 @@
- int i;
- ; return 0; }
- EOF
--if { (eval echo configure:4449: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
-+if { (eval echo configure:4471: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
- rm -rf conftest*
- ac_cv_type_signal=void
- else
-@@ -4464,12 +4486,12 @@
-
-
- echo $ac_n "checking for strftime""... $ac_c" 1>&6
--echo "configure:4468: checking for strftime" >&5
-+echo "configure:4490: checking for strftime" >&5
- if eval "test \"`echo '$''{'ac_cv_func_strftime'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
--#line 4473 "configure"
-+#line 4495 "configure"
- #include "confdefs.h"
- /* System header to define __stub macros and hopefully few prototypes,
- which can conflict with char strftime(); below. */
-@@ -4492,7 +4514,7 @@
-
- ; return 0; }
- EOF
--if { (eval echo configure:4496: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
-+if { (eval echo configure:4518: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
- rm -rf conftest*
- eval "ac_cv_func_strftime=yes"
- else
-@@ -4514,7 +4536,7 @@
- echo "$ac_t""no" 1>&6
- # strftime is in -lintl on SCO UNIX.
- echo $ac_n "checking for strftime in -lintl""... $ac_c" 1>&6
--echo "configure:4518: checking for strftime in -lintl" >&5
-+echo "configure:4540: checking for strftime in -lintl" >&5
- ac_lib_var=`echo intl'_'strftime | sed 'y%./+-%__p_%'`
- if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
-@@ -4522,7 +4544,7 @@
- ac_save_LIBS="$LIBS"
- LIBS="-lintl $LIBS"
- cat > conftest.$ac_ext <<EOF
--#line 4526 "configure"
-+#line 4548 "configure"
- #include "confdefs.h"
- /* Override any gcc2 internal prototype to avoid an error. */
- /* We use char because int might match the return type of a gcc2
-@@ -4533,7 +4555,7 @@
- strftime()
- ; return 0; }
- EOF
--if { (eval echo configure:4537: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
-+if { (eval echo configure:4559: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
- rm -rf conftest*
- eval "ac_cv_lib_$ac_lib_var=yes"
- else
-@@ -4560,7 +4582,7 @@
- fi
-
- echo $ac_n "checking whether utime accepts a null argument""... $ac_c" 1>&6
--echo "configure:4564: checking whether utime accepts a null argument" >&5
-+echo "configure:4586: checking whether utime accepts a null argument" >&5
- if eval "test \"`echo '$''{'ac_cv_func_utime_null'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
-@@ -4570,7 +4592,7 @@
- ac_cv_func_utime_null=no
- else
- cat > conftest.$ac_ext <<EOF
--#line 4574 "configure"
-+#line 4596 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #include <sys/stat.h>
-@@ -4581,7 +4603,7 @@
- && t.st_mtime - s.st_mtime < 120));
- }
- EOF
--if { (eval echo configure:4585: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
-+if { (eval echo configure:4607: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
- then
- ac_cv_func_utime_null=yes
- else
-@@ -4609,12 +4631,12 @@
- getcwd strerror
- do
- echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
--echo "configure:4613: checking for $ac_func" >&5
-+echo "configure:4635: checking for $ac_func" >&5
- if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
--#line 4618 "configure"
-+#line 4640 "configure"
- #include "confdefs.h"
- /* System header to define __stub macros and hopefully few prototypes,
- which can conflict with char $ac_func(); below. */
-@@ -4637,7 +4659,7 @@
-
- ; return 0; }
- EOF
--if { (eval echo configure:4641: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
-+if { (eval echo configure:4663: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
- rm -rf conftest*
- eval "ac_cv_func_$ac_func=yes"
- else
-@@ -4664,12 +4686,12 @@
- for ac_func in setenv
- do
- echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
--echo "configure:4668: checking for $ac_func" >&5
-+echo "configure:4690: checking for $ac_func" >&5
- if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
--#line 4673 "configure"
-+#line 4695 "configure"
- #include "confdefs.h"
- /* System header to define __stub macros and hopefully few prototypes,
- which can conflict with char $ac_func(); below. */
-@@ -4692,7 +4714,7 @@
-
- ; return 0; }
- EOF
--if { (eval echo configure:4696: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
-+if { (eval echo configure:4718: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
- rm -rf conftest*
- eval "ac_cv_func_$ac_func=yes"
- else