diff options
author | Haru <haru@dotalux.com> | 2015-12-02 21:06:53 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2015-12-02 21:08:21 +0100 |
commit | 1e2f24a2fcb13b8a2fe06f4cc829670303760929 (patch) | |
tree | 30451ce67ff9d99ac943a8ad785126e2b0f0930a /src/map/Makefile.in | |
parent | 60dc92a6f2367fe6d75b0e7e6227d4fa5baaa60b (diff) | |
download | hercules-1e2f24a2fcb13b8a2fe06f4cc829670303760929.tar.gz hercules-1e2f24a2fcb13b8a2fe06f4cc829670303760929.tar.bz2 hercules-1e2f24a2fcb13b8a2fe06f4cc829670303760929.tar.xz hercules-1e2f24a2fcb13b8a2fe06f4cc829670303760929.zip |
Fixed an issue with the HPMDataCheck when PCRE is enabled
- Follow-up to 300668d, thanks to AnnieRuru
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/map/Makefile.in')
-rw-r--r-- | src/map/Makefile.in | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/map/Makefile.in b/src/map/Makefile.in index ac1b4d837..ca6f70472 100644 --- a/src/map/Makefile.in +++ b/src/map/Makefile.in @@ -45,13 +45,6 @@ else MAP_SERVER_SQL_DEPENDS=needs_mysql endif -HAVE_PCRE=@HAVE_PCRE@ -ifeq ($(HAVE_PCRE),yes) - PCRE_CFLAGS=-DPCRE_SUPPORT @PCRE_CFLAGS@ -else - PCRE_CFLAGS= -endif - @SET_MAKE@ CC = @CC@ @@ -113,7 +106,7 @@ map-server: ../../map-server@EXEEXT@ obj_sql/%.o: %.c $(MAP_H) $(COMMON_H) $(CONFIG_H) $(MT19937AR_H) $(LIBCONFIG_H) | obj_sql @echo " CC $<" - @$(CC) @CFLAGS@ @DEFS@ $(COMMON_INCLUDE) $(THIRDPARTY_INCLUDE) $(PCRE_CFLAGS) @MYSQL_CFLAGS@ @CPPFLAGS@ -c $(OUTPUT_OPTION) $< + @$(CC) @CFLAGS@ @DEFS@ $(COMMON_INCLUDE) $(THIRDPARTY_INCLUDE) @PCRE_CFLAGS@ @MYSQL_CFLAGS@ @CPPFLAGS@ -c $(OUTPUT_OPTION) $< # missing object files $(COMMON_D)/obj_all/common.a: |