Changeset 2

Show
Ignore:
Timestamp:
03/23/07 17:03:06 (2 years ago)
Author:
takkaria
Message:

Add the various lib/xtra/ files, and also main-lfb.c.

Closes #1.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/Makefile.am

    r1 r2  
    2222  wizard1.c wizard2.c \ 
    2323  main-cap.c main-gcu.c main-x11.c main-xaw.c main.c \ 
    24   main-win.c main-xpj.c main-vcs.c main-gtk.c
     24  main-win.c main-xpj.c main-vcs.c main-gtk.c main-lfb.c
    2525  generate.c dungeon.c init1.c init2.c randart.c \ 
    2626  use-obj.c x-spell.c obj-info.c squelch.c \ 
  • trunk/src/main.c

    r1 r2  
    2828static const struct module modules[] = 
    2929{ 
    30 #ifdef USE_LFB 
    31         { "lfb", help_lfb, init_lfb }, 
    32 #endif /* USE_LFB */ 
    33  
    3430#ifdef USE_GTK 
    3531        { "gtk", help_gtk, init_gtk }, 
     
    8379        { "vcs", help_vcs, init_vcs }, 
    8480#endif /* USE_VCS */ 
     81 
     82#ifdef USE_LFB 
     83        { "lfb", help_lfb, init_lfb }, 
     84#endif /* USE_LFB */ 
    8585}; 
    8686