diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2010-04-29 17:48:08 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2010-04-29 17:48:08 -0700 |
commit | c2545396940919ae2bc5edccade3796bca396183 (patch) | |
tree | 423ccb877abd36574221d9c4ccca946588b74b1e | |
parent | ccd463bb2d143ad785b2388b058dc53e49ec1870 (diff) |
Mark plugins as loadable modules so we don't waste time building lib*.a
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r-- | plugin/Makefile.am | 2 | ||||
-rw-r--r-- | xnest-plugin/Makefile.am | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/plugin/Makefile.am b/plugin/Makefile.am index eccd255..df7c6c2 100644 --- a/plugin/Makefile.am +++ b/plugin/Makefile.am @@ -35,7 +35,7 @@ AM_CPPFLAGS = $(DEFINES) AM_CFLAGS = -DXP_UNIX @XRX_CFLAGS@ @XRX_PLUGIN_CFLAGS@ @PLUGIN_CFLAGS@ libxrx_la_LIBADD = @XRX_LIBS@ @XRX_PLUGIN_LIBS@ -libxrx_la_LDFLAGS = -avoid-version +libxrx_la_LDFLAGS = -avoid-version -module PARAMS_SRCS = $(RXSRC)/PRead.c $(RXSRC)/PParse.c $(RXSRC)/BuildReq.c XMISC_SRCS = $(RXSRC)/XUrls.c $(RXSRC)/XAuth.c $(RXSRC)/XDpyName.c \ diff --git a/xnest-plugin/Makefile.am b/xnest-plugin/Makefile.am index 82becd2..b31336e 100644 --- a/xnest-plugin/Makefile.am +++ b/xnest-plugin/Makefile.am @@ -49,4 +49,4 @@ libxrxnest_la_SOURCES = \ AM_CFLAGS = @XRX_CFLAGS@ @XRX_PLUGIN_CFLAGS@ @PLUGIN_CFLAGS@ libxrxnest_la_LIBADD = @XRX_LIBS@ @XRX_PLUGIN_LIBS@ -libxrxnest_la_LDFLAGS = -avoid-version +libxrxnest_la_LDFLAGS = -avoid-version -module |