Difference between revisions of "Talk:Module inclusion"

From AOLserver Wiki
Jump to navigation Jump to search
(added query about 4.0 to 4.5 changes in C modules)
 
m (added log snippet which adds no real information)
 
Line 2: Line 2:
  
 
http://panoptic.com/wiki/aolserver/Writing_your_first_C_module
 
http://panoptic.com/wiki/aolserver/Writing_your_first_C_module
 +
 +
<pre>
 +
[08/Oct/2009:19:46:30][26013.18446744072300399344][-main-] Notice: modload: loading '/usr/lib/aolserver4/bin/nsperm.so'
 +
[08/Oct/2009:19:46:30][26013.18446744072300399344][-main-] Notice: modload: loading '/usr/lib/aolserver4/bin/nstokyo.so'
 +
[08/Oct/2009:19:46:30][26013.18446744072300399344][-main-] Warning: modload: could not load /usr/lib/aolserver4/bin/nstokyo.so: libnstokyo.so: cannot open shared object file: No such file or directory
 +
[08/Oct/2009:19:46:30][26013.18446744072300399344][-main-] Fatal: modload: failed to load module 'nstokyo.so'
 +
</pre>
  
 
Ends up with the nshello.so module being attempted loaded but searching for libnshello.so as well, which fails -- has the C module build and deployment changed? --[[User:Caveman|Caveman]] 15:41, 8 October 2009 (EDT)
 
Ends up with the nshello.so module being attempted loaded but searching for libnshello.so as well, which fails -- has the C module build and deployment changed? --[[User:Caveman|Caveman]] 15:41, 8 October 2009 (EDT)

Latest revision as of 19:53, 8 October 2009

I'm having trouble using something which worked in aolserver4 with aolserver4.5 -- for example my 'writing your first C module' article:

http://panoptic.com/wiki/aolserver/Writing_your_first_C_module

[08/Oct/2009:19:46:30][26013.18446744072300399344][-main-] Notice: modload: loading '/usr/lib/aolserver4/bin/nsperm.so'
[08/Oct/2009:19:46:30][26013.18446744072300399344][-main-] Notice: modload: loading '/usr/lib/aolserver4/bin/nstokyo.so'
[08/Oct/2009:19:46:30][26013.18446744072300399344][-main-] Warning: modload: could not load /usr/lib/aolserver4/bin/nstokyo.so: libnstokyo.so: cannot open shared object file: No such file or directory
[08/Oct/2009:19:46:30][26013.18446744072300399344][-main-] Fatal: modload: failed to load module 'nstokyo.so'

Ends up with the nshello.so module being attempted loaded but searching for libnshello.so as well, which fails -- has the C module build and deployment changed? --Caveman 15:41, 8 October 2009 (EDT)