1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-02-05 11:35:01 +00:00

Fix MD5 checksum (found by bento):

* Changes in the Makefile
* Added History to the README
* Various fixes in the sources without changing
  the version number
This commit is contained in:
Chris D. Faulhaber 2000-01-25 00:39:46 +00:00
parent 69a64cb4d0
commit b7de923415
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=25044
2 changed files with 5 additions and 5 deletions

View File

@ -1 +1 @@
MD5 (xinv3d.1.1.tar.gz) = d7807498116603d855f31cbd5ccd91ef
MD5 (xinv3d.1.1.tar.gz) = b68a6e63978d5b06fd1df1f415a842bf

View File

@ -1,5 +1,5 @@
--- Makefile.orig Thu Jan 20 23:49:54 2000
+++ Makefile Fri Jan 21 23:20:08 2000
--- Makefile.orig Sun Jan 23 13:53:02 2000
+++ Makefile Mon Jan 24 19:36:27 2000
@@ -1,6 +1,6 @@
all: game
@ -11,7 +11,7 @@
@@ -8,12 +8,12 @@
vec4x1.o mat4x4.o
DEPENDS =
#CFLAGS = -g -Wall -ansi
#CFLAGS = -g -Wall -pedantic -ansi
-CFLAGS = -ansi
+#CFLAGS = -ansi
#OPTIONS = -D_GNU_SOURCE -DGAME_LINUX_X11 -DGAME_DEBUG
@ -19,7 +19,7 @@
.c.o: $(DEPENDS)
- $(CC) -c $(CFLAGS) $(OPTIONS) $< -o $@
+ $(CC) -c $(CFLAGS) $(OPTIONS) $(XLIB) $< -o $@
+ $(CC) -c $(CFLAGS) $(XLIB) $(OPTIONS) $< -o $@
game: $(OBJS) $(DEPENDS)
$(CC) -g -o xinv3d $(OBJS) $(XLIB) $(LIBS) $(OPTIONS)