# Check for a GNU tar named 'gtar', or 'gnutar' (MacOS X) and
# Check for a GNU tar named 'gtar', or 'gnutar' (MacOS X) and
# fall back to 'tar' otherwise and hope that it's a GNU tar as well
# fall back to 'tar' otherwise and hope that it's a GNU tar as well
AC_CHECK_PROGS(TAR, gnutar gtar tar)
AC_CHECK_PROGS(TAR, gnutar gtar tar)
dnl We use a path for perl so the script startup works
dnl We use a path for perl so the script startup works
dnl We make sure to use perl, not perl5, in hopes that the RPMs will
dnl We make sure to use perl, not perl5, in hopes that the RPMs will
dnl not depend on the perl5 binary being installed (probably a bug in RPM)
dnl not depend on the perl5 binary being installed (probably a bug in RPM)
...
@@ -453,7 +454,11 @@ fi
...
@@ -453,7 +454,11 @@ fi
NOINST_LDFLAGS=
NOINST_LDFLAGS=
AC_ARG_WITH(other-libc,
AC_ARG_WITH(other-libc,
[--with-other-libc=/path/to/other/libc/dir Link against libc and other standard libraries installed in the specified non-standard location overriding default. Originally added to be able to link against glibc 2.2 without making the user upgrade the standard libc installation ],
[--with-other-libc=DIR Link against libc and other standard libraries
installed in the specified non-standard location
overriding default. Originally added to be able to
link against glibc 2.2 without making the user
upgrade the standard libc installation.],
[
[
other_libc_include="$withval/include"
other_libc_include="$withval/include"
other_libc_lib="$withval/lib"
other_libc_lib="$withval/lib"
...
@@ -504,7 +509,6 @@ AC_SUBST(NOINST_LDFLAGS)
...
@@ -504,7 +509,6 @@ AC_SUBST(NOINST_LDFLAGS)
AC_ARG_WITH(server-suffix,
AC_ARG_WITH(server-suffix,
[--with-server-suffix Append value to the version string.],
[--with-server-suffix Append value to the version string.],
# I heard that 'cut' isn't portable. Isn't there a better way?