summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorRuss Allbery <eagle@windlord>2006-11-27 22:49:21 -0800
committerRuss Allbery <eagle@windlord>2006-11-27 22:49:21 -0800
commita2b51da9a4521859b1e9cdfa4953b15348c29c6f (patch)
treea89d6032f7234afe65d79041676e80c9a0ba2190 /Makefile.in
parent737d2f82650d09aeab86759a9e5995e6b9ca2121 (diff)
Pass -shared only to gcc. Report an error for non-gcc compilers on
platforms other than Solaris, since we don't know how to create PIC code or shared objects there.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index 5555e05..02759ea 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -18,7 +18,7 @@ mandir = @mandir@
CC = @CC@
CFLAGS = @CFLAGS@
CPPFLAGS = -I. -I$(srcdir) @CPPFLAGS@
-LDFLAGS = -shared @LDFLAGS@
+LDFLAGS = @LDFLAGS@
LIBS = -lpam @LIBS@
INSTALL = @INSTALL@