diff options
author | Greg Larkin <glarkin@FreeBSD.org> | 2009-11-09 22:28:39 +0000 |
---|---|---|
committer | Greg Larkin <glarkin@FreeBSD.org> | 2009-11-09 22:28:39 +0000 |
commit | b0e1be97c3d34ddf78a620a1febac817def86fed (patch) | |
tree | b0abf5d53bc7b01b278ca230589b77c49de3f852 /devel/cvstrac/files/patch-Makefile | |
parent | Reset maintainer at his request due to lack of time right now. (diff) |
- Fix linker errors after recent SQLite3 update. Certain non-public
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)
Notes
Notes:
svn path=/head/; revision=244044
Diffstat (limited to 'devel/cvstrac/files/patch-Makefile')
-rw-r--r-- | devel/cvstrac/files/patch-Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/devel/cvstrac/files/patch-Makefile b/devel/cvstrac/files/patch-Makefile index 1e40f2f7ab18..b216efed9f03 100644 --- a/devel/cvstrac/files/patch-Makefile +++ b/devel/cvstrac/files/patch-Makefile @@ -1,5 +1,5 @@ ---- Makefile.orig Thu May 8 10:58:17 2003 -+++ Makefile Thu May 8 10:58:32 2003 +--- ./Makefile.orig 2009-11-09 17:15:57.000000000 -0500 ++++ ./Makefile 2009-11-09 17:15:57.000000000 -0500 @@ -0,0 +1,34 @@ +#!/usr/bin/make +# @@ -21,7 +21,7 @@ +# will run on the target platform. This is usually the same +# as BCC, unless you are cross-compiling. +# -+TCC = gcc -g -O0 -Wall -I$(LOCALBASE)/include -lm ++TCC = gcc -g -O0 -Wall -I$(LOCALBASE)/include + +#### Extra arguments for linking against SQLite +# |