forked from Lainports/freebsd-ports
SQLite3 functions were used by cvstrac, and they were recently made intern, causing the linker errors. See: http://osdir.com/ml/sqlite-users/2009-07/msg00300.html Reported by: pointyhat (pav)
11 lines
422 B
Makefile
11 lines
422 B
Makefile
--- ./main.mk.orig 2009-11-09 17:16:12.000000000 -0500
|
|
+++ ./main.mk 2009-11-09 17:16:19.000000000 -0500
|
|
@@ -115,7 +115,7 @@
|
|
$(BCC) -o maketestdb $(SRCDIR)/maketestdb.c $(LIBSQLITE)
|
|
|
|
$(APPNAME): headers $(OBJ)
|
|
- $(TCC) -o $(APPNAME) $(OBJ) $(LIBSQLITE)
|
|
+ $(TCC) -o $(APPNAME) $(OBJ) $(LIBSQLITE) -lm
|
|
|
|
index.html: $(SRCDIR)/webpage.html $(SRCDIR)/VERSION
|
|
sed -f $(SRCDIR)/VERSION $(SRCDIR)/webpage.html >index.html
|