diff options
author | etheisen <etheisen@cvs.openbsd.org> | 1996-09-22 22:27:44 +0000 |
---|---|---|
committer | etheisen <etheisen@cvs.openbsd.org> | 1996-09-22 22:27:44 +0000 |
commit | 22a752835403cfe80da12df495051f5cfb08ac05 (patch) | |
tree | 8a0d25b075e1d048676b32de5042c187f0042ae1 /gnu | |
parent | cc04e747e850a1b934103ca066e485ce94df1185 (diff) |
ld is broken when handling weak symbols in shared libararies. This is
a quick workaround to allow libg++ to build.
WARNING: If you use libg++, you must EXPLICIDLY link against libcurses,
even if you don't use curses.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/lib/libg++/libg++/Makefile.bsd-wrapper | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/lib/libg++/libg++/Makefile.bsd-wrapper b/gnu/lib/libg++/libg++/Makefile.bsd-wrapper index 86a5b60e67f..3e506faeebb 100644 --- a/gnu/lib/libg++/libg++/Makefile.bsd-wrapper +++ b/gnu/lib/libg++/libg++/Makefile.bsd-wrapper @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.bsd-wrapper,v 1.5 1996/07/31 18:27:40 deraadt Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.6 1996/09/22 22:27:43 etheisen Exp $ .if defined(OBJMACHINE) OBJDIR= obj.${MACHINE} @@ -33,7 +33,7 @@ LIB= g++ CXXFLAGS+= -fno-implicit-templates CPPFLAGS+= -I. -I$(.CURDIR)/src -I$(.CURDIR)/../libio \ -I$(.CURDIR)/../libstdc++ -I$(LIBIO_OBJDIR) -LDADD+= -lcurses +#LDADD+= -lcurses CXXSRCS= AllocRing.cc Obstack.cc builtin.cc $(REGEX_OBJ) Regex.cc \ String.cc Intdouble.cc Integer.cc Rational.cc Random.cc \ |