diff options
author | clement <clement@FreeBSD.org> | 2004-03-08 19:28:14 +0800 |
---|---|---|
committer | clement <clement@FreeBSD.org> | 2004-03-08 19:28:14 +0800 |
commit | 25b8f9ba843154f086fb9ce0edcc072a0806b51c (patch) | |
tree | aa6592a9c47c9885515421999d48f42612bf8754 | |
parent | 52a3940e6cace197e707319600d813538f62c678 (diff) | |
download | freebsd-ports-gnome-25b8f9ba843154f086fb9ce0edcc072a0806b51c.tar.gz freebsd-ports-gnome-25b8f9ba843154f086fb9ce0edcc072a0806b51c.tar.zst freebsd-ports-gnome-25b8f9ba843154f086fb9ce0edcc072a0806b51c.zip |
- (should) Fix build on amd64
Reported by: bento via kris
-rw-r--r-- | www/mod_authenticache/files/patch-Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/www/mod_authenticache/files/patch-Makefile b/www/mod_authenticache/files/patch-Makefile index 24350cb0288d..bb86fc4e07b9 100644 --- a/www/mod_authenticache/files/patch-Makefile +++ b/www/mod_authenticache/files/patch-Makefile @@ -1,6 +1,6 @@ --- Makefile.orig Sat Mar 6 02:03:42 2004 -+++ Makefile Sat Mar 6 12:04:51 2004 -@@ -3,14 +3,16 @@ ++++ Makefile Mon Mar 8 11:36:41 2004 +@@ -3,16 +3,18 @@ NAME = mod_authenticache VERSION = 2.0.8 @@ -18,8 +18,11 @@ +all: $(NAME).so + $(NAME).so: $(OBJS) $(EXPS) - $(CC) $(FLGS) -fpic -shared -o $@ $^ $(LIBS) +- $(CC) $(FLGS) -fpic -shared -o $@ $^ $(LIBS) ++ $(CC) $(FLGS) -fPIC -shared -o $@ $^ $(LIBS) + .c.o: $< + $(CC) $(FLGS) -c $< $(INCS) $(DEFS) @@ -21,7 +23,7 @@ -rm -f *.o *.so |