Prechádzať zdrojové kódy

* Fixed two missing @LDFLAGS@ in src/plugins/Makefile.in.

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@11993 54d463be-8e91-2dee-dedb-b68131a5f0ec
FlavioJS 17 rokov pred
rodič
commit
4c54d4923f
2 zmenil súbory, kde vykonal 3 pridanie a 2 odobranie
  1. 1 0
      Changelog-Trunk.txt
  2. 2 2
      src/plugins/Makefile.in

+ 1 - 0
Changelog-Trunk.txt

@@ -4,6 +4,7 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK.  ALL UNTESTED BUGFIXES/FEATURES GO
 IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
 
 2007/12/29
+	
 	* Implemented THE official Steal skill equation and game mechanics
 	  (basically version from /stable plus a few tweaks) (see topic:116540)
 	* Added missing bAddStealRate reference to doc/item_bonus.txt

+ 2 - 2
src/plugins/Makefile.in

@@ -44,13 +44,13 @@ help:
 #####################################################################
 
 %@DLLEXT@: %.c
-	@CC@ @CFLAGS@ @CPPFLAGS@ -shared -o ../../plugins/$@ $<
+	@CC@ @CFLAGS@ @CPPFLAGS@ @LDFLAGS@ -shared -o ../../plugins/$@ $<
 
 gui@DLLEXT@: ../../plugins/gui.conf
 upnp@DLLEXT@: ../../plugins/upnp.conf
 
 sig@DLLEXT@: sig.c $(COMMON_OBJ)
-	@CC@ @CFLAGS@ @CPPFLAGS@ -shared -o ../../plugins/$@ $< $(COMMON_OBJ)
+	@CC@ @CFLAGS@ @CPPFLAGS@ @LDFLAGS@ -shared -o ../../plugins/$@ $< $(COMMON_OBJ)
 
 ../../plugins/%.conf: %.txt
 	cp -r $< $@