commit bd6ac331d8f50d516f5ad7b489d9c5a547d0c133
parent 6227d0be31fc6e287feb44c82fbac15afd2bed71
Author: tjg <tjg>
Date: Thu, 25 Oct 2001 09:33:51 +0000
Feature: large file support.
Diffstat:
3 files changed, 9 insertions(+), 3 deletions(-)
diff --git a/ChangeLog b/ChangeLog
@@ -723,3 +723,7 @@ Changes since rc-1.5b2
2001-10-12
Release: rc-1.6b3.
+
+2001-10-25
+
+ Feature: large file support.
diff --git a/configure.ac b/configure.ac
@@ -8,7 +8,7 @@ dnl Automake stuff.
dnl Use this one for snapshots...
dnl AM_INIT_AUTOMAKE(rc, 1.6s`echo $RELDATE |sed 's/-//g'`)
dnl ...and this one for releases
-AM_INIT_AUTOMAKE(rc, 1.6b3)
+AM_INIT_AUTOMAKE(rc, 1.6b4)
AM_CONFIG_HEADER(config.h)
@@ -24,6 +24,8 @@ case "$GCC" in
yes) CFLAGS="-Wall $CFLAGS" ;;
esac
+AC_SYS_LARGEFILE
+
AC_PROG_CPP
AC_CHECK_PROGS(LN, ln cp)
diff --git a/rc.h b/rc.h
@@ -1,9 +1,9 @@
#define NDEBUG 1
-#include <assert.h>
-
#include "config.h"
#include "proto.h"
+#include <assert.h>
+
/* datatypes */
#define ENV_SEP '\001'