PERFORCE change 147416 for review

Christian S.J. Peron csjp at FreeBSD.org
Fri Aug 15 00:58:35 UTC 2008


http://perforce.freebsd.org/chv.cgi?CH=147416

Change 147416 by csjp at ibm01 on 2008/08/15 00:57:48

	- Drop in the crypto code for the writer (client) side
	- Fix the Makefile so that only use the pthread linking
	  flag when it's required for linking
	- change -pthread -> -lpthread

Affected files ...

.. //depot/projects/trustedbsd/netauditd/Makefile#7 edit
.. //depot/projects/trustedbsd/netauditd/crypto.h#3 add
.. //depot/projects/trustedbsd/netauditd/crypto_client.c#1 add
.. //depot/projects/trustedbsd/netauditd/crypto_common.c#1 add

Differences ...

==== //depot/projects/trustedbsd/netauditd/Makefile#7 (text+ko) ====

@@ -1,7 +1,7 @@
 CC = gcc
-CFLAGS = -Wall -g -pthread
+CFLAGS = -Wall -g
 TARGETS = netauditd
-OBJ = conf.o lex.yy.o netauditd.o reader.o y.tab.o writer.o
+OBJ = conf.o crypto_common.o crypto_client.o lex.yy.o netauditd.o reader.o y.tab.o writer.o
 
 all: $(TARGETS)
 
@@ -16,7 +16,7 @@
 	$(CC) $(CFLAGS) -c lex.yy.c
 
 netauditd: $(OBJ)
-	$(CC) $(CFLAGS) -o $@ $(OBJ)
+	$(CC) $(CFLAGS) -o $@ $(OBJ) -lssl -lpthread
 
 y.tab.o: grammar.y
 	yacc -vd grammar.y


More information about the p4-projects mailing list