summaryrefslogtreecommitdiff
path: root/pkgtools/pkg_install/files/configure.ac
AgeCommit message (Collapse)AuthorFilesLines
2005-06-10add autoconf test for missing (like in openbsd-3.6) or broken (likedmcmahill1-1/+45
in AIX-4.3.2) PRIu64. If it is missing or broken, provide one. Should address PR30375. Welcome to pkg_install-20050607
2005-05-28- pull in the changes from usr.sbin which prevent an over flowdmcmahill1-2/+2
of a 32 bit signed number when pkg_add-ing a binary package file larger than 512 Mb. - Bump PKGTOOLS_VERSION (NOT!!! PKGTOOLS_REQD) to 20050527
2004-08-21Fix the version number of the package in the configure script, and modifyjlam1-1/+1
the Makefiles so that they can be built by really basic make programs.
2004-08-21Alphabetize list of headers.jlam1-3/+4
2004-08-13Typo: it's <regex.h>, not <regext.h>.jlam1-1/+1
2004-08-13Add checks for all of the system headers used in the sources. Also includejlam1-2/+6
missing <netdb.h> in lib/ftpio.c for MAXHOSTNAMELEN definition on Solaris.
2004-08-06Sync with version 20040730 from src/usr.sbin/pkg_install on the HEAD:jlam1-3/+3
> Re-work the code which checks the recorded build versions of a binary > package to make pkg_add work properly when no +BUILD_INFO file exists. > > Modify the return value from read_buildinfo() to return 1 for success > and 0 for failure. > > Use symbolic constants, rather than integers. > > If we can't read the build information, always tell of this fact. > > Bump version to 20040730 > > Addresses PR 26429; a different version of these mods were verified to > allow a +BUILD_INFO-less binary package to be added by Martin Husemann.
2004-06-01Import 20040601.minskim1-1/+1
- Handle symlinks in a view correctly. - Remove superfluous escapes in BRE. This closes PR pkg/24190.
2004-01-12don't bother checking for md5.h, as the result overrides libnbcompat'sgrant1-1/+1
more appropriate test. fixes build problem noted on RedHat.
2003-12-20Sync pkgtools/pkg_install with src/usr.sbin/pkg_install from 20031220.grant1-1/+1
New features include OS/arch/version checking and a large speed improvement to pkg_info.
2003-09-23bump dategrant1-1/+1
2003-09-23add --with-{ftp,mtree,pax,tar} to allow overriding the commands thatgrant1-2/+25
pkg_install calls, and pass the full path for each from the pkg Makefile. fixes issue with pkg_add and pkg_create calling non-existent or less-than-functional tools since it relied on $PATH.
2003-09-08Substitute for various program paths used by the linkfarm(1) andjlam1-1/+18
pkg_view(1) shell scripts.
2003-09-04Allow this to compile on systems without vfork by #define'ing it to fork.jlam1-1/+7
This is okay since we just do vfork()/exec() in lib/ftpio.c and don't rely on any vfork vs. fork semantics.
2003-09-01Update pkg_install to 20030823, which has the changes to supportjlam1-0/+47
package views. Pkgsrc changes include: * Convert to use pkgtools/libnbcompat so that it's easier to keep this in sync with src/usr.sbin/pkg_install. * Add a src2nbcompat script that converts src/usr.sbin/pkg_install into an appropriate start for pkgtools/pkg_install. The script removes the Makefiles, adds CPP inclusion guards around each #include <...> line, and includes <nbcompat.h> at the top of each *.c file. This should make it even easier to keep sources in sync with the HEAD.