diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | Makefile | 2 |
2 files changed, 5 insertions, 3 deletions
@@ -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> @@ -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 \ |