The following commit has been merged in the master branch: commit ac39abe30bdc1c13a9c1ec3b7f20fa243f0321d0 Author: Stefan Sperling stsp@stsp.in-berlin.de Date: Wed Sep 27 18:29:35 2006 +0200
Rename freebsd.c to bsd.c since this file now supports FreeBSD, Darwin, OpenBSD and possibly NetBSD (not tested).
diff --git a/Makefile b/Makefile index 939ef1e..ee5e254 100755 --- a/Makefile +++ b/Makefile @@ -28,15 +28,15 @@ OS_OBJ= posix.o linux.o endif
ifeq ($(UNAME),Darwin) -OS_OBJ= posix.o freebsd.o +OS_OBJ= posix.o bsd.o endif
ifeq ($(UNAME),FreeBSD) -OS_OBJ= posix.o freebsd.o +OS_OBJ= posix.o bsd.o endif
ifeq ($(UNAME),OpenBSD) -OS_OBJ= posix.o freebsd.o +OS_OBJ= posix.o bsd.o endif
batman: batman.o $(OS_OBJ) diff --git a/freebsd.c b/bsd.c similarity index 100% rename from freebsd.c rename to bsd.c