diff options
| -rw-r--r-- | src/config/ChangeLog | 3 | ||||
| -rw-r--r-- | src/config/pre.in | 5 |
2 files changed, 7 insertions, 1 deletions
diff --git a/src/config/ChangeLog b/src/config/ChangeLog index e302e47ea..6c23eadf0 100644 --- a/src/config/ChangeLog +++ b/src/config/ChangeLog @@ -1,5 +1,8 @@ 2004-06-18 Ken Raeburn <raeburn@mit.edu> + * pre.in (PTHREAD_CFLAGS): New variable. + (ALL_CFLAGS): Include it. + * win-pre.in (SLIB): New variable. 2004-06-16 Ken Raeburn <raeburn@mit.edu> diff --git a/src/config/pre.in b/src/config/pre.in index 2bf2f155a..9409a3ed6 100644 --- a/src/config/pre.in +++ b/src/config/pre.in @@ -150,10 +150,13 @@ FAKELIBDIR=$(FAKEPREFIX)/lib # LOCALINCLUDES set by local Makefile.in # CPPFLAGS user override # CFLAGS user override but starts off set by configure +# PTHREAD_CFLAGS set by configure, not included in CFLAGS so that we +# don't pull the pthreads library into shared libraries ALL_CFLAGS = $(DEFS) $(DEFINES) $(KRB_INCLUDES) $(LOCALINCLUDES) \ - $(CPPFLAGS) $(CFLAGS) + $(CPPFLAGS) $(CFLAGS) $(PTHREAD_CFLAGS) CFLAGS = @CFLAGS@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ CPPFLAGS = @CPPFLAGS@ DEFS = @DEFS@ CC = @CC@ |
