mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-10 11:09:04 -04:00
Fixed dodgy makefile generation
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2507 e03df62e-2008-0410-955e-edbf42e46eb7
This commit is contained in:
parent
453fed1325
commit
d9e78741ad
4
configure
vendored
4
configure
vendored
@ -1079,7 +1079,7 @@ CC = im a cheezeball
|
|||||||
|
|
||||||
CXXFLAGS = -I../include \${FLAGS}
|
CXXFLAGS = -I../include \${FLAGS}
|
||||||
|
|
||||||
all: libIRCDcommand_parse.so libIRCDcull_list.so libIRCDuserprocess.so libIRCDsocketengine.so libIRCDsocket.so libIRCDhash.so libIRCDchannels.so libIRCDmode.so libIRCDxline.so libIRCDstring.so libIRCDasyncdns.so libIRCDbase.so libIRCDio.so libIRCDmessage.so libIRCDcommands.so libIRCDdnsqueue.so libIRCDdynamic.so libIRCDusers.so libIRCDmodules.so libIRCDwildcard.so libIRCDhelper.so inspircd
|
all: libIRCDcull_list.so libIRCDuserprocess.so libIRCDsocketengine.so libIRCDsocket.so libIRCDhash.so libIRCDchannels.so libIRCDmode.so libIRCDxline.so libIRCDstring.so libIRCDasyncdns.so libIRCDbase.so libIRCDio.so libIRCDmessage.so libIRCDcommands.so libIRCDdnsqueue.so libIRCDdynamic.so libIRCDusers.so libIRCDmodules.so libIRCDwildcard.so libIRCDhelper.so libIRCDcommand_parse.so inspircd
|
||||||
|
|
||||||
inspircd: inspircd.cpp ../include/base.h ../include/channels.h ../include/inspircd.h ../include/channels.h ../include/globals.h ../include/inspircd_config.h ../include/socket.h
|
inspircd: inspircd.cpp ../include/base.h ../include/channels.h ../include/inspircd.h ../include/channels.h ../include/globals.h ../include/inspircd_config.h ../include/socket.h
|
||||||
\$(CC) -I../include \$(FLAGS) -rdynamic -L. inspircd.cpp -o inspircd \$(LDLIBS) libIRCDchannels.so libIRCDmode.so libIRCDxline.so libIRCDstring.so libIRCDasyncdns.so libIRCDbase.so libIRCDio.so libIRCDmessage.so libIRCDcommands.so libIRCDdnsqueue.so libIRCDdynamic.so libIRCDusers.so libIRCDmodules.so libIRCDwildcard.so libIRCDhelper.so libIRCDhash.so libIRCDsocket.so libIRCDsocketengine.so libIRCDuserprocess.so libIRCDcull_list.so libIRCDcommand_parse.so
|
\$(CC) -I../include \$(FLAGS) -rdynamic -L. inspircd.cpp -o inspircd \$(LDLIBS) libIRCDchannels.so libIRCDmode.so libIRCDxline.so libIRCDstring.so libIRCDasyncdns.so libIRCDbase.so libIRCDio.so libIRCDmessage.so libIRCDcommands.so libIRCDdnsqueue.so libIRCDdynamic.so libIRCDusers.so libIRCDmodules.so libIRCDwildcard.so libIRCDhelper.so libIRCDhash.so libIRCDsocket.so libIRCDsocketengine.so libIRCDuserprocess.so libIRCDcull_list.so libIRCDcommand_parse.so
|
||||||
@ -1090,7 +1090,7 @@ libIRCDsocketengine.so: socketengine.cpp ../include/base.h ../include/hashcomp.h
|
|||||||
|
|
||||||
libIRCDcommand_parse.so: command_parse.cpp ../include/base.h ../include/hashcomp.h ../include/inspircd.h ../include/users.h ../include/globals.h ../include/inspircd_config.h
|
libIRCDcommand_parse.so: command_parse.cpp ../include/base.h ../include/hashcomp.h ../include/inspircd.h ../include/users.h ../include/globals.h ../include/inspircd_config.h
|
||||||
\$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c command_parse.cpp
|
\$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c command_parse.cpp
|
||||||
\$(CC) -shared -o libIRCDcommand_parse.so command_parse.cpp
|
\$(CC) -shared -o libIRCDcommand_parse.so command_parse.o
|
||||||
|
|
||||||
libIRCDcull_list.so: cull_list.cpp ../include/base.h ../include/hashcomp.h ../include/globals.h ../include/inspircd_config.h ../include/users.h ../include/channels.h
|
libIRCDcull_list.so: cull_list.cpp ../include/base.h ../include/hashcomp.h ../include/globals.h ../include/inspircd_config.h ../include/users.h ../include/channels.h
|
||||||
\$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c cull_list.cpp
|
\$(CC) -pipe -I../include \$(FLAGS) -export-dynamic -c cull_list.cpp
|
||||||
|
@ -49,6 +49,7 @@ using namespace std;
|
|||||||
#include "socketengine.h"
|
#include "socketengine.h"
|
||||||
#include "typedefs.h"
|
#include "typedefs.h"
|
||||||
#include "modules.h"
|
#include "modules.h"
|
||||||
|
#include "command_parse.h"
|
||||||
|
|
||||||
extern SocketEngine* SE;
|
extern SocketEngine* SE;
|
||||||
extern ServerConfig *Config;
|
extern ServerConfig *Config;
|
||||||
|
@ -51,6 +51,7 @@ extern serverstats* stats;
|
|||||||
extern ServerConfig *Config;
|
extern ServerConfig *Config;
|
||||||
extern user_hash clientlist;
|
extern user_hash clientlist;
|
||||||
extern whowas_hash whowas;
|
extern whowas_hash whowas;
|
||||||
|
extern Module* IOHookModule;
|
||||||
std::vector<userrec*> local_users;
|
std::vector<userrec*> local_users;
|
||||||
|
|
||||||
std::vector<userrec*> all_opers;
|
std::vector<userrec*> all_opers;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user