--------------------- PatchSet 1398 Date: 2001/01/27 01:21:19 Author: adri Branch: sfs Tag: (none) Log: Make sfs_test *nearly* compile - use LDFLAGS rather than -lpthread which doesn't work on FreeBSD, include sfs_shim.o .. Members: src/fs/sfs/Makefile.in:1.1.2.4->1.1.2.5 Index: squid/src/fs/sfs/Makefile.in =================================================================== RCS file: /cvsroot/squid-sf//squid/src/fs/sfs/Attic/Makefile.in,v retrieving revision 1.1.2.4 retrieving revision 1.1.2.5 diff -u -r1.1.2.4 -r1.1.2.5 --- squid/src/fs/sfs/Makefile.in 26 Jan 2001 19:28:21 -0000 1.1.2.4 +++ squid/src/fs/sfs/Makefile.in 27 Jan 2001 01:21:19 -0000 1.1.2.5 @@ -1,7 +1,7 @@ # # Makefile for the sfs storage driver for the Squid Object Cache server # -# $Id: Makefile.in,v 1.1.2.4 2001/01/26 19:28:21 darius Exp $ +# $Id: Makefile.in,v 1.1.2.5 2001/01/27 01:21:19 adri Exp $ # FS = sfs @@ -15,6 +15,7 @@ RANLIB = @RANLIB@ AC_CFLAGS = @CFLAGS@ SHELL = /bin/sh +LDFLAGS = @LDFLAGS@ INCLUDE = -I../../../include -I$(top_srcdir)/include -I$(top_srcdir)/src/ CFLAGS = $(AC_CFLAGS) $(INCLUDE) $(DEFINES) @@ -35,7 +36,7 @@ all: $(OUT) test: $(SFSOBJS) sfs_test.o - $(CC) $(CFLAGS) -L../../../lib $(SFSOBJS) sfs_test.o ../../globals.o -lmiscutil -lpthread -lm -o sfs_test + $(CC) $(CFLAGS) $(LDFLAGS) -L../../../lib $(SFSOBJS) sfs_test.o sfs_shim.o ../../globals.o -lmiscutil -lm -o sfs_test $(OUT): $(OBJS) @rm -f ../stamp