diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-09-13 16:33:27 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-10-23 21:52:03 +0300 |
commit | 1f5a9d02c6aa41ded7dfbc0e1b1d22504f0e83fb (patch) | |
tree | 2a2cea46c0fa8076be0c9f94c13f9f07edb0cbcf /src/plugins | |
parent | 3579235602638631f5d6e10e18567291d5de1350 (diff) | |
download | hercules-1f5a9d02c6aa41ded7dfbc0e1b1d22504f0e83fb.tar.gz hercules-1f5a9d02c6aa41ded7dfbc0e1b1d22504f0e83fb.tar.bz2 hercules-1f5a9d02c6aa41ded7dfbc0e1b1d22504f0e83fb.tar.xz hercules-1f5a9d02c6aa41ded7dfbc0e1b1d22504f0e83fb.zip |
In configure add option --enable-static
This option enable static build for server binaries and map cache.
For plugins this option enable static linking with gcc.
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/Makefile.in b/src/plugins/Makefile.in index 77040d567..39f445319 100644 --- a/src/plugins/Makefile.in +++ b/src/plugins/Makefile.in @@ -80,4 +80,4 @@ Makefile: Makefile.in ../../plugins/%@DLLEXT@: %.c $(ALL_H) $$(shell ls %/* 2>/dev/null) @echo " CC $<" - @$(CC) @DEFS@ @CFLAGS@ @CPPFLAGS@ @LDFLAGS@ @SOFLAGS@ -o $@ $< + @$(CC) @PLUGINSTATIC@ @DEFS@ @CFLAGS@ @CPPFLAGS@ @LDFLAGS@ @SOFLAGS@ -o $@ $< |