mirror of
https://github.com/anope/anope.git
synced 2026-07-03 15:13:14 +02:00
Fix extras build
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
#include "module.h"
|
||||
#include "sql.h"
|
||||
#include "modules/sql.h"
|
||||
|
||||
class MySQLInterface : public SQL::Interface
|
||||
{
|
||||
|
||||
@@ -6,8 +6,8 @@
|
||||
*/
|
||||
|
||||
#include "module.h"
|
||||
#include "httpd.h"
|
||||
#include "ssl.h"
|
||||
#include "modules/httpd.h"
|
||||
#include "modules/ssl.h"
|
||||
|
||||
static Anope::string BuildDate()
|
||||
{
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
/* RequiredLibraries: ldap,lber */
|
||||
|
||||
#include "module.h"
|
||||
#include "ldapapi.h"
|
||||
#include "modules/ldap.h"
|
||||
#include <ldap.h>
|
||||
|
||||
static Pipe *me;
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
#include "module.h"
|
||||
#include "nickserv.h"
|
||||
#include "ldapapi.h"
|
||||
#include "modules/ldap.h"
|
||||
|
||||
static Module *me;
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#include "module.h"
|
||||
#include "ldapapi.h"
|
||||
#include "modules/ldap.h"
|
||||
|
||||
static std::set<Oper *> my_opers;
|
||||
static Anope::string opertype_attribute;
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
/* RequiredLibraries: mysqlclient */
|
||||
|
||||
#include "module.h"
|
||||
#include "modules/sql.h"
|
||||
#define NO_CLIENT_LONG_LONG
|
||||
#include <mysql/mysql.h>
|
||||
#include "sql.h"
|
||||
|
||||
using namespace SQL;
|
||||
|
||||
|
||||
@@ -1,8 +1,7 @@
|
||||
#include "module.h"
|
||||
#include "sql.h"
|
||||
#include "modules/sql.h"
|
||||
|
||||
static Module *me;
|
||||
static ServiceReference<NickServService> nickserv("NickServService", "NickServ");
|
||||
|
||||
class SQLAuthenticationResult : public SQL::Interface
|
||||
{
|
||||
@@ -43,7 +42,7 @@ class SQLAuthenticationResult : public SQL::Interface
|
||||
{
|
||||
na = new NickAlias(req->GetAccount(), new NickCore(req->GetAccount()));
|
||||
FOREACH_MOD(I_OnNickRegister, OnNickRegister(user, na));
|
||||
if (user && nickserv)
|
||||
if (user && NickServ)
|
||||
user->SendMessage(NickServ, _("Your account \002%s\002 has been successfully created."), na->nick.c_str());
|
||||
}
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#include "module.h"
|
||||
#include "sql.h"
|
||||
#include "modules/sql.h"
|
||||
|
||||
class SQLOperResult : public SQL::Interface
|
||||
{
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
/* RequiredLibraries: sqlite3 */
|
||||
|
||||
#include "module.h"
|
||||
#include "modules/sql.h"
|
||||
#include <sqlite3.h>
|
||||
#include "sql.h"
|
||||
|
||||
using namespace SQL;
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
/* RequiredLibraries: ssl,crypto */
|
||||
|
||||
#include "module.h"
|
||||
#include "ssl.h"
|
||||
#include "modules/ssl.h"
|
||||
|
||||
#define OPENSSL_NO_SHA512
|
||||
#include <openssl/bio.h>
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
|
||||
#include "module.h"
|
||||
#include "xmlrpc.h"
|
||||
#include "httpd.h"
|
||||
#include "modules/xmlrpc.h"
|
||||
#include "modules/httpd.h"
|
||||
|
||||
class MyXMLRPCServiceInterface : public XMLRPCServiceInterface, public HTTPPage
|
||||
{
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#include "module.h"
|
||||
#include "xmlrpc.h"
|
||||
#include "modules/xmlrpc.h"
|
||||
|
||||
static Module *me;
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
* Please read COPYING and README for further details.
|
||||
*/
|
||||
|
||||
#include "../../httpd.h"
|
||||
#include "modules/httpd.h"
|
||||
|
||||
namespace WebCPanel
|
||||
{
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
* Please read COPYING and README for further details.
|
||||
*/
|
||||
|
||||
#include "../../httpd.h"
|
||||
#include "modules/httpd.h"
|
||||
|
||||
namespace WebCPanel
|
||||
{
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
* Please read COPYING and README for further details.
|
||||
*/
|
||||
|
||||
#include "../../httpd.h"
|
||||
#include "modules/httpd.h"
|
||||
|
||||
namespace WebCPanel
|
||||
{
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
* Please read COPYING and README for further details.
|
||||
*/
|
||||
|
||||
#include "../httpd.h"
|
||||
#include "modules/httpd.h"
|
||||
|
||||
/* A basic file server. Used for serving static content on disk. */
|
||||
class StaticFileServer : public HTTPPage
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
* Please read COPYING and README for further details.
|
||||
*/
|
||||
|
||||
#include "../httpd.h"
|
||||
#include "modules/httpd.h"
|
||||
|
||||
/* A basic file server. Used for serving non-static non-binary content on disk. */
|
||||
class TemplateFileServer
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
*/
|
||||
|
||||
#include "module.h"
|
||||
#include "../httpd.h"
|
||||
#include "modules/httpd.h"
|
||||
|
||||
#include "static_fileserver.h"
|
||||
#include "template_fileserver.h"
|
||||
|
||||
Reference in New Issue
Block a user