[ASK] plugin compile centos 6 x86_64

akbare

New member
Messages
52
Points
0
sory im new coomer in Hercules emulator

maybe sameone can help me for this

i'm use @afk plugins

in my setting :

conf/plugins.conf

plugins_list: [
/* Enable HPMHooking when plugins in use rely on Hooking */
//"HPMHooking",
//"db2sql",
//"sample",
//"other",
"@afk",
]


src/plugins/Makefile.in

# Note: DO NOT include the .c extension!!! #

MYPLUGINS :
@afk
#


i'm use command in terminal

./configure

make plugins

error

make[1]: Leaving directory `/home/akbare/Hercules/src/common'
MAKE plugins
make[1]: Entering directory `/home/akbare/Hercules/src/plugins'
Makefile:37: *** missing separator. Stop.
make[1]: Leaving directory `/home/akbare/Hercules/src/plugins'
make: *** [plugins] Error 2
[akbare@MyPvtRO Hercules]$




Question :

are these plugins not running right now? and why almost all plugins I can't compile, maybe someone can give me enlightenment.

maybe someone can link for related

thanks

 
you have syntax error in src/plugins/Makefile.in and make said about it. See how other plugins added

in other way you can not change make file, but use separate make command.

for example:

Code:
make plugin.@afk
 
you have syntax error in src/plugins/Makefile.in and make said about it. See how other plugins added

in other way you can not change make file, but use separate make command.

for example:

make plugin.@afk

make plugin.@afk

Hoho... owh oke thx work like a charm 🤣

 
Back
Top