diff options
author | Roland McGrath <roland@gnu.org> | 2001-08-25 01:40:34 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2001-08-25 01:40:34 +0000 |
commit | 98a00899ba97e74c63f81d9ad70ea7b0404366f6 (patch) | |
tree | 081a4b6a87fdc33432d71ace2ea9ad835bba6cdc | |
parent | d869fe55a7997a110209452c054f4bbf71f710e9 (diff) |
2001-08-24 Roland McGrath <roland@frob.com>
* Makeconf ($(libname).so.$(hurd-version)): Replace $($@-LDFLAGS)
with $($(libname).so-LDFLAGS).
-rw-r--r-- | Makeconf | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -58,7 +58,7 @@ endif # Generic compiler options, appended to whatever the particular makefile set. # The config.make file will append the values chosed by configure. CPPFLAGS += -I. $(srcdirinc) -I.. $(top_srcdirinc) -I$(top_srcdir)/include \ - -D_GNU_SOURCE $($*-CPPFLAGS) + -D_GNU_SOURCE -D_IO_MTSAFE_IO $($*-CPPFLAGS) CFLAGS += -Wall -g -O3 # Include the configure-generated file of parameters. @@ -339,7 +339,7 @@ $(libname)_pic.a: $(patsubst %.o,%_pic.o,$(OBJS)) # we make that a symlink. $(libname).so.$(hurd-version): $(patsubst %.o,%_pic.o,$(OBJS)) $(library_deps) $(CC) -shared -Wl,-soname=$@ -o $@ \ - $(rpath) $(CFLAGS) $(LDFLAGS) $($@-LDFLAGS) $^ + $(rpath) $(CFLAGS) $(LDFLAGS) $($(libname).so-LDFLAGS) $^ $(libname).so: $(libname).so.$(hurd-version) ln -f -s $< $@ endif |