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/tool | |
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/tool')
-rw-r--r-- | src/tool/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tool/Makefile.in b/src/tool/Makefile.in index 127d3841b..2d7699db0 100644 --- a/src/tool/Makefile.in +++ b/src/tool/Makefile.in @@ -36,7 +36,7 @@ mapcache: ../../mapcache@EXEEXT@ ../../mapcache@EXEEXT@: $(MAPCACHE_DEPENDS) Makefile @echo " LD $(notdir $@)" - @$(CC) @LDFLAGS@ -o ../../mapcache@EXEEXT@ $(MAPCACHE_DEPENDS) @LIBS@ + @$(CC) @STATIC@ @LDFLAGS@ -o ../../mapcache@EXEEXT@ $(MAPCACHE_DEPENDS) @LIBS@ buildclean: @echo " CLEAN tool (build temp files)" |