Jump to content

Problema al compilar


Samuel

Recommended Posts


  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  1
  • Reputation:   0
  • Joined:  08/19/14
  • Last Seen:  

Hola  /bo

 

Tengo problemas al tratar de compilar  /hum

 

Me muestra el siguiente error

 

Alguna idea

 

SO: Centos 6.5 64

Emulador: rAthena

 

Gracias

 

/no1

post-28350-0-09831300-1408418911_thumb.png

Link to comment
Share on other sites

  • 2 weeks later...

  • Group:  Members
  • Topic Count:  60
  • Topics Per Day:  0.02
  • Content Count:  207
  • Reputation:   16
  • Joined:  12/19/13
  • Last Seen:  

Hola

mira intenta primero usa

./configure

Make clean

Make sql

 

Si no te deja usarlo intenta agregando esto---> chmod 777 

usalo antes de utilziar el comando ejemplo

chmod777 make clean  --> lo usas solo una ves luego te tomara el comando, si los problemas sigen y ya utilizaste los chmod777 , abres tu archivo athena-start y lo remplazas por esto:
 

#!/bin/sh
# athena starting script by rowla
# modified by [email protected] (NL101541)

PATH=./:$PATH

L_SRV=login-server
C_SRV=char-server
M_SRV=map-server

print_start() {
#    more << EOF
echo "Athena Starting..."
echo "            (c) 2003 Athena Project"
echo "              modified by [email protected]"
echo ""
#echo "Debug informations will appear,"
#echo "since this is a test release."
#echo ""
echo "checking..."
#EOF
}

check_files() {

    for i in ${L_SRV} ${C_SRV} ${M_SRV}
    do
        if [ ! -f ./$i ]; then
            echo "$i does not exist, or can't run."
            echo "Stop. Check your compile."
            exit 1;
        fi
    done

#    more << EOF
echo "Check complete."
echo "Looks good, a nice Athena!"
#EOF
}
    

case $1 in
    'start')
        print_start
        check_files

        exec .{L_SRV}&
        exec .{C_SRV}&
        exec .{M_SRV}&

        echo "Now Started Athena."
;;
    'stop')
        ps ax | grep -E "${L_SRV}|${C_SRV}|${M_SRV}" | awk '{print $1}' | xargs kill
;;
    'restart')
        $0 stop
        $0 start
;;
    *)
        echo "Usage: athena-start { start | stop | restart }"
;;
esac

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...