mirror of
https://git.openafs.org/openafs.git
synced 2025-01-31 05:27:44 +00:00
dc8b3d0c3c
The wrong commit was tagged for the 1.6.3 release by accident. Update the version strings to 1.6.4, and adapt the release notes. Change-Id: I0c4f8e796a1017aebaaf6c219fd12e1547ad9319 Reviewed-on: http://gerrit.openafs.org/9983 Tested-by: BuildBot <buildbot@rampaginggeek.com> Reviewed-by: Derrick Brashear <shadow@your-file-system.com>
27 lines
650 B
Plaintext
27 lines
650 B
Plaintext
AC_PRERQ([2.60])
|
|
AC_INIT([OpenAFS], m4_esyscmd([build-tools/git-version .]))
|
|
AC_CONFIG_AUX_DIR([build-tools])
|
|
AC_CONFIG_SRCDIR(src/libafs/Makefile.common.in)
|
|
AM_INIT_AUTOMAKE
|
|
|
|
AC_CONFIG_HEADER(src/config/afsconfig.h)
|
|
MACOS_VERSION=1.6.4
|
|
|
|
AC_SUBST(MACOS_VERSION)
|
|
|
|
dnl If the user hasn't specified CFLAGS don't let configure pick -g -O2
|
|
AS_IF([test -z "$CFLAGS"], [CFLAGS=" "], [])
|
|
AC_PROG_CC
|
|
|
|
OPENAFS_CONFIGURE_COMMON
|
|
|
|
AC_OUTPUT( \
|
|
Makefile \
|
|
src/config/Makefile \
|
|
src/config/Makefile.config \
|
|
src/config/Makefile.version-CML \
|
|
src/config/Makefile.version-NOCML \
|
|
src/libafs/Makefile.common \
|
|
src/libafs/MakefileProto \
|
|
)
|