summaryrefslogtreecommitdiff
path: root/archivers/pax
diff options
context:
space:
mode:
authorjlam <jlam>2004-08-21 06:33:39 +0000
committerjlam <jlam>2004-08-21 06:33:39 +0000
commit7543b47af68a0bb70049ffd4bfb1f006d54982a7 (patch)
tree89cc14e509dd852c4303ab8d2c7a4b504251dd20 /archivers/pax
parent06f9c049a2e59ed5ed5f8d9d1dfae5cf0347b05b (diff)
downloadpkgsrc-7543b47af68a0bb70049ffd4bfb1f006d54982a7.tar.gz
Fix the version number of the package in the configure script, and modify
the Makefiles so that they can be built by really basic make programs.
Diffstat (limited to 'archivers/pax')
-rw-r--r--archivers/pax/files/Makefile.in15
-rwxr-xr-xarchivers/pax/files/configure18
-rw-r--r--archivers/pax/files/configure.ac2
3 files changed, 16 insertions, 19 deletions
diff --git a/archivers/pax/files/Makefile.in b/archivers/pax/files/Makefile.in
index a02620d56e4..886dce3c518 100644
--- a/archivers/pax/files/Makefile.in
+++ b/archivers/pax/files/Makefile.in
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.in,v 1.7 2003/09/15 05:33:41 grant Exp $
+# $NetBSD: Makefile.in,v 1.8 2004/08/21 06:33:39 jlam Exp $
srcdir= @srcdir@
@@ -22,19 +22,16 @@ INSTALL= @INSTALL@
PROG= pax
-SRCS= ar_io.c ar_subs.c buf_subs.c cpio.c file_subs.c ftree.c \
- gen_subs.c getoldopt.c options.c pat_rep.c pax.c sel_subs.c tables.c \
- tar.c tty_subs.c \
- getid.c spec.c misc.c stat_flags.c pack_dev.c
-OBJS= $(SRCS:.c=.o)
+OBJS= ar_io.o ar_subs.o buf_subs.o cpio.o file_subs.o ftree.o \
+ gen_subs.o getoldopt.o options.o pat_rep.o pax.o sel_subs.o tables.o \
+ tar.o tty_subs.o \
+ getid.o spec.o misc.o stat_flags.o pack_dev.o
-.PHONY: all clean install
+all: $(PROG)
.c.o:
$(CC) $(DEFS) $(CPPFLAGS) $(CFLAGS) -c $<
-all: $(PROG)
-
$(PROG): $(OBJS)
$(CCLD) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)
diff --git a/archivers/pax/files/configure b/archivers/pax/files/configure
index d95315fd77e..ef66033ab27 100755
--- a/archivers/pax/files/configure
+++ b/archivers/pax/files/configure
@@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.59 for pax 20030915.
+# Generated by GNU Autoconf 2.59 for pax 20040802.
#
# Report bugs to <grant@NetBSD.org>.
#
@@ -269,8 +269,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
# Identity of this package.
PACKAGE_NAME='pax'
PACKAGE_TARNAME='pax'
-PACKAGE_VERSION='20030915'
-PACKAGE_STRING='pax 20030915'
+PACKAGE_VERSION='20040802'
+PACKAGE_STRING='pax 20040802'
PACKAGE_BUGREPORT='grant@NetBSD.org'
ac_unique_file="pax.c"
@@ -780,7 +780,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
-\`configure' configures pax 20030915 to adapt to many kinds of systems.
+\`configure' configures pax 20040802 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
@@ -837,7 +837,7 @@ fi
if test -n "$ac_init_help"; then
case $ac_init_help in
- short | recursive ) echo "Configuration of pax 20030915:";;
+ short | recursive ) echo "Configuration of pax 20040802:";;
esac
cat <<\_ACEOF
@@ -949,7 +949,7 @@ fi
test -n "$ac_init_help" && exit 0
if $ac_init_version; then
cat <<\_ACEOF
-pax configure 20030915
+pax configure 20040802
generated by GNU Autoconf 2.59
Copyright (C) 2003 Free Software Foundation, Inc.
@@ -963,7 +963,7 @@ cat >&5 <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
-It was created by pax $as_me 20030915, which was
+It was created by pax $as_me 20040802, which was
generated by GNU Autoconf 2.59. Invocation command line was
$ $0 $@
@@ -4085,7 +4085,7 @@ _ASBOX
} >&5
cat >&5 <<_CSEOF
-This file was extended by pax $as_me 20030915, which was
+This file was extended by pax $as_me 20040802, which was
generated by GNU Autoconf 2.59. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@@ -4145,7 +4145,7 @@ _ACEOF
cat >>$CONFIG_STATUS <<_ACEOF
ac_cs_version="\\
-pax config.status 20030915
+pax config.status 20040802
configured by $0, generated by GNU Autoconf 2.59,
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
diff --git a/archivers/pax/files/configure.ac b/archivers/pax/files/configure.ac
index b1deb9b353f..5a4fa132b3b 100644
--- a/archivers/pax/files/configure.ac
+++ b/archivers/pax/files/configure.ac
@@ -1,6 +1,6 @@
dnl Process this file with autoconf to produce a configure script.
AC_PREREQ(2.57)
-AC_INIT([pax], [20030915], [grant@NetBSD.org])
+AC_INIT([pax], [20040802], [grant@NetBSD.org])
AC_CONFIG_SRCDIR([pax.c])
AC_CONFIG_HEADER(config.h)