summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--Makefile2
2 files changed, 5 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index e71102af8..946c4806f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2002-10-22 Moritz Schulte <moritz@duesseldorf.ccc.de>
+
+ * Makefile (CFLAGS): Added -D_FILE_OFFSET_BITS=64.
+
2002-10-19 Moritz Schulte <moritz@duesseldorf.ccc.de>
* netio.h (NETIO_VERSION): Set to "0.2".
@@ -21,8 +25,6 @@
* main.c: (main): Set netfs_root_node->nn_stat.st_fsid after
netfs_root_node->nn_stat is initialized.
-
- * Makefile (CFLAGS): Added -D_FILE_OFFSET_BITS=64.
2002-05-27 Moritz Schulte <moritz@duesseldorf.ccc.de>
diff --git a/Makefile b/Makefile
index 6e5259276..40eb53d5c 100644
--- a/Makefile
+++ b/Makefile
@@ -16,7 +16,7 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
# USA
-CFLAGS = -g -Wall -D_GNU_SOURCE
+CFLAGS = -g -Wall -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64
netio: main.o netfs.o node.o lib.o protocol.o
gcc $(CFLAGS) -lnetfs -lfshelp -liohelp -lthreads -lports \