mirror of
https://git.freebsd.org/ports.git
synced 2025-06-24 22:20:35 -04:00
A little milter application I installed (spamassassin related) was hanging every once in a while. I'm not sure if this patch will fix it, but it sure seems like the right step to take. Without it, the libmilter sources are compiled without the -pthread, even though the library is linked with -pthread (rather needlessly, since it is a static lib only). Submitted by: mi
8 lines
280 B
Text
8 lines
280 B
Text
--- devtools/OS/FreeBSD Wed Jan 10 21:44:08 2001
|
|
+++ devtools/OS/FreeBSD Thu Feb 14 08:59:38 2002
|
|
@@ -5,4 +5,5 @@
|
|
define(`confLD', `cc')
|
|
define(`confMTLDOPTS', `-pthread')
|
|
+define(`confMTCCOPTS', `-pthread')
|
|
define(`confLDOPTS_SO', `-shared')
|
|
define(`confCCOPTS_SO', `-fPIC')
|