diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-01-25 17:31:46 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-01-25 17:31:46 +0000 |
commit | f4ecf32b83f630e04aa14079367fedca0cecbc81 (patch) | |
tree | a64a0ff717876336ebd9a36fc43405dacdb4e4cc | |
parent | 86c496cf14c77a6862f4167dd449d23366f74581 (diff) |
FIXED to actually do things PROPERLY - why do people have to mess with stuff that works fine, so close to release date?
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2892 e03df62e-2008-0410-955e-edbf42e46eb7
-rwxr-xr-x | configure | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1087,7 +1087,7 @@ sub write_dynamic_modules_makefile { # for assisting with making this work right. # # Automatically Generated by ./configure to add a modules -# please run ./configure --update +# please run ./configure -update or ./configure -modupdate all: \$(MODULES) @@ -1105,6 +1105,8 @@ foreach $i (@modlist) { ### # Write Entry to the MakeFile ### + $cmflags = getcompilerflags("src/modules/m_".$i.".cpp"); + $liflags = getlinkerflags("src/modules/m_".$i.".cpp"); print FILEHANDLE <<EOCHEESE; m_$i.so: m_$i.cpp ../../include/modules.h ../../include/users.h ../../include/channels.h ../../include/base.h ../../include/inspircd_config.h ../../include/inspircd.h ../../include/inspircd_io.h \$(CC) -pipe -I../../include \$(FLAGS) $cmflags -export-dynamic -c m_$i.cpp |