RE: Help with Code in jk_nwmain.c.

2001-06-12 Thread Joyce . Fung


Ok... but obviously something calls on it for it to run so I am trying to
modify the code.

Joyce 
Systems Group
Email  [EMAIL PROTECTED]



-Original Message-
From: Mike Anderson [mailto:[EMAIL PROTECTED]]
Sent: Monday, June 11, 2001 16:42
To: [EMAIL PROTECTED]
Subject: Re: Help with Code in jk_nwmain.c.


You don't need jk_nwmain if you are building on HPUX11.00.  This file is
only
for the NetWare platform.  That is why there is an #ifdef NETWARE around 
the whole thing.


Mike Anderson
Senior Software Engineer
Platform Services Group
[EMAIL PROTECTED]
Novell, Inc., the leading provider of Net services software
www.novell.com

 [EMAIL PROTECTED] 06/08/01 02:01PM 




I am trying to compile mod_jk in HPUX11.00 in 32 bit mode. I am using
Tomcat3.2.1
I am getting these error messages saying: 

./jk/jk_nwmain.c line 62 -unexpected void
./jk/jk_nwmain.c  line 64 TSR_THREAD undefined.


What am I doing wrong???

Thanks,

Joyce


Code from jk_nwmain.c
==



static void main();
#ifdef NETWARE
/*
 * NATIVE_MAIN
 */

/*
 * INCLUDES
 */

#include stdio.h
#include nwthread.h
#include netdb.h

NETDB_DEFINE_CONTEXT

/*
 * main ()
 *
 * Main entry point -- don't do much more than I've provided
 *
 * Entry:
 *
 * Exit:
 *Nothing
 */

void main ()
{
   ExitThread (TSR_THREAD, 0); 
}

#elif HPUX11
/*
 * NATIVE_MAIN
 */

  /*
   * INCLUDES
   */

#include stdio.h
#include pthread.h
#include netdb.h

NETDB_DEFINE_CONTEXT

  /*  # Can I generate an error  --- yes if not remmed out */


/*
 * main ()
 *
 * Main entry point -- don't do much more than I've provided
 *
 * Entry:
 *
 * Exit:
 *Nothing
 */

 void main()
 {
ExitThread (TSR_THREAD, 0);
 }
#endif



RE: RE: Help with Code in jk_nwmain.c.

2001-06-12 Thread Joyce . Fung


I removed the jk_nwmain.c file altogether, and it works!!
D'oh! :-)

Joyce Fung
Systems Group
Balance of Payments 
Statistics Canada
Email  [EMAIL PROTECTED]



-Original Message-
From: Fung, Joyce - BOP/BDP 
Sent: Tuesday, June 12, 2001 13:10
To: '[EMAIL PROTECTED]'
Cc: '[EMAIL PROTECTED]'; '[EMAIL PROTECTED]'
Subject: *X* RE: Help with Code in jk_nwmain.c.



Ok... but obviously something calls on it for it to run so I am trying to
modify the code.

Joyce 
Systems Group
Email  [EMAIL PROTECTED]



-Original Message-
From: Mike Anderson [mailto:[EMAIL PROTECTED]]
Sent: Monday, June 11, 2001 16:42
To: [EMAIL PROTECTED]
Subject: Re: Help with Code in jk_nwmain.c.


You don't need jk_nwmain if you are building on HPUX11.00.  This file is
only
for the NetWare platform.  That is why there is an #ifdef NETWARE around 
the whole thing.


Mike Anderson
Senior Software Engineer
Platform Services Group
[EMAIL PROTECTED]
Novell, Inc., the leading provider of Net services software
www.novell.com

 [EMAIL PROTECTED] 06/08/01 02:01PM 




I am trying to compile mod_jk in HPUX11.00 in 32 bit mode. I am using
Tomcat3.2.1
I am getting these error messages saying: 

./jk/jk_nwmain.c line 62 -unexpected void
./jk/jk_nwmain.c  line 64 TSR_THREAD undefined.


What am I doing wrong???

Thanks,

Joyce


Code from jk_nwmain.c
==



static void main();
#ifdef NETWARE
/*
 * NATIVE_MAIN
 */

/*
 * INCLUDES
 */

#include stdio.h
#include nwthread.h
#include netdb.h

NETDB_DEFINE_CONTEXT

/*
 * main ()
 *
 * Main entry point -- don't do much more than I've provided
 *
 * Entry:
 *
 * Exit:
 *Nothing
 */

void main ()
{
   ExitThread (TSR_THREAD, 0); 
}

#elif HPUX11
/*
 * NATIVE_MAIN
 */

  /*
   * INCLUDES
   */

#include stdio.h
#include pthread.h
#include netdb.h

NETDB_DEFINE_CONTEXT

  /*  # Can I generate an error  --- yes if not remmed out */


/*
 * main ()
 *
 * Main entry point -- don't do much more than I've provided
 *
 * Entry:
 *
 * Exit:
 *Nothing
 */

 void main()
 {
ExitThread (TSR_THREAD, 0);
 }
#endif



Re: Help with Code in jk_nwmain.c.

2001-06-11 Thread Mike Anderson

You don't need jk_nwmain if you are building on HPUX11.00.  This file is only
for the NetWare platform.  That is why there is an #ifdef NETWARE around 
the whole thing.


Mike Anderson
Senior Software Engineer
Platform Services Group
[EMAIL PROTECTED]
Novell, Inc., the leading provider of Net services software
www.novell.com

 [EMAIL PROTECTED] 06/08/01 02:01PM 




I am trying to compile mod_jk in HPUX11.00 in 32 bit mode. I am using
Tomcat3.2.1
I am getting these error messages saying: 

./jk/jk_nwmain.c line 62 -unexpected void
./jk/jk_nwmain.c  line 64 TSR_THREAD undefined.


What am I doing wrong???

Thanks,

Joyce


Code from jk_nwmain.c
==



static void main();
#ifdef NETWARE
/*
 * NATIVE_MAIN
 */

/*
 * INCLUDES
 */

#include stdio.h
#include nwthread.h
#include netdb.h

NETDB_DEFINE_CONTEXT

/*
 * main ()
 *
 * Main entry point -- don't do much more than I've provided
 *
 * Entry:
 *
 * Exit:
 *Nothing
 */

void main ()
{
   ExitThread (TSR_THREAD, 0); 
}

#elif HPUX11
/*
 * NATIVE_MAIN
 */

  /*
   * INCLUDES
   */

#include stdio.h
#include pthread.h
#include netdb.h

NETDB_DEFINE_CONTEXT

  /*  # Can I generate an error  --- yes if not remmed out */


/*
 * main ()
 *
 * Main entry point -- don't do much more than I've provided
 *
 * Entry:
 *
 * Exit:
 *Nothing
 */

 void main()
 {
ExitThread (TSR_THREAD, 0);
 }
#endif




Help with Code in jk_nwmain.c.

2001-06-08 Thread Joyce . Fung




I am trying to compile mod_jk in HPUX11.00 in 32 bit mode. I am using
Tomcat3.2.1
I am getting these error messages saying: 

../jk/jk_nwmain.c line 62 -unexpected void
../jk/jk_nwmain.c TSR_THREAD undefined.


What am I doing wrong???

Thanks,

Joyce


Code from jk_nwmain.c
==



static void main();
#ifdef NETWARE
/*
 * NATIVE_MAIN
 */

/*
 * INCLUDES
 */

#include stdio.h
#include nwthread.h
#include netdb.h

NETDB_DEFINE_CONTEXT

/*
 * main ()
 *
 * Main entry point -- don't do much more than I've provided
 *
 * Entry:
 *
 * Exit:
 *Nothing
 */

void main ()
{
   ExitThread (TSR_THREAD, 0); 
}

#elif HPUX11
/*
 * NATIVE_MAIN
 */

  /*
   * INCLUDES
   */

#include stdio.h
#include pthread.h
#include netdb.h

NETDB_DEFINE_CONTEXT

  /*  # Can I generate an error  --- yes if not remmed out */


/*
 * main ()
 *
 * Main entry point -- don't do much more than I've provided
 *
 * Entry:
 *
 * Exit:
 *Nothing
 */

 void main()
 {
ExitThread (TSR_THREAD, 0);
 }
#endif



Help with Code in jk_nwmain.c.

2001-06-08 Thread Joyce . Fung





I am trying to compile mod_jk in HPUX11.00 in 32 bit mode. I am using
Tomcat3.2.1
I am getting these error messages saying: 

../jk/jk_nwmain.c line 62 -unexpected void
../jk/jk_nwmain.c  line 64 TSR_THREAD undefined.


What am I doing wrong???

Thanks,

Joyce


Code from jk_nwmain.c
==



static void main();
#ifdef NETWARE
/*
 * NATIVE_MAIN
 */

/*
 * INCLUDES
 */

#include stdio.h
#include nwthread.h
#include netdb.h

NETDB_DEFINE_CONTEXT

/*
 * main ()
 *
 * Main entry point -- don't do much more than I've provided
 *
 * Entry:
 *
 * Exit:
 *Nothing
 */

void main ()
{
   ExitThread (TSR_THREAD, 0); 
}

#elif HPUX11
/*
 * NATIVE_MAIN
 */

  /*
   * INCLUDES
   */

#include stdio.h
#include pthread.h
#include netdb.h

NETDB_DEFINE_CONTEXT

  /*  # Can I generate an error  --- yes if not remmed out */


/*
 * main ()
 *
 * Main entry point -- don't do much more than I've provided
 *
 * Entry:
 *
 * Exit:
 *Nothing
 */

 void main()
 {
ExitThread (TSR_THREAD, 0);
 }
#endif



RE: Help with Code in jk_nwmain.c.

2001-06-08 Thread GOMEZ Henri

Why did you compile Netware code on HP-UX ?

-
Henri Gomez ___[_]
EMAIL : [EMAIL PROTECTED](. .) 
PGP KEY : 697ECEDD...oOOo..(_)..oOOo...
PGP Fingerprint : 9DF8 1EA8 ED53 2F39 DC9B 904A 364F 80E6 



-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Friday, June 08, 2001 10:01 PM
To: [EMAIL PROTECTED]
Subject: Help with Code in jk_nwmain.c.






I am trying to compile mod_jk in HPUX11.00 in 32 bit mode. I am using
Tomcat3.2.1
I am getting these error messages saying: 

../jk/jk_nwmain.c line 62 -unexpected void
../jk/jk_nwmain.c  line 64 TSR_THREAD undefined.


What am I doing wrong???

Thanks,

Joyce


Code from jk_nwmain.c
==



static void main();
#ifdef NETWARE
/*
 * NATIVE_MAIN
 */

/*
 * INCLUDES
 */

#include stdio.h
#include nwthread.h
#include netdb.h

NETDB_DEFINE_CONTEXT

/*
 * main ()
 *
 * Main entry point -- don't do much more than I've provided
 *
 * Entry:
 *
 * Exit:
 *Nothing
 */

void main ()
{
   ExitThread (TSR_THREAD, 0); 
}

#elif HPUX11
/*
 * NATIVE_MAIN
 */

  /*
   * INCLUDES
   */

#include stdio.h
#include pthread.h
#include netdb.h

NETDB_DEFINE_CONTEXT

  /*  # Can I generate an error  --- yes if not remmed out */


/*
 * main ()
 *
 * Main entry point -- don't do much more than I've provided
 *
 * Entry:
 *
 * Exit:
 *Nothing
 */

 void main()
 {
ExitThread (TSR_THREAD, 0);
 }
#endif