Changeset 2465


Ignore:
Timestamp:
Jun 20, 2008, 2:39:20 PM (15 years ago)
Author:
Jean-Yves Lamoureux
Message:
  • Added a man page
Location:
neercs/trunk
Files:
3 added
4 edited

Legend:

Unmodified
Added
Removed
  • neercs/trunk/Makefile.am

    r1436 r2465  
    11
    2 SUBDIRS = src
     2SUBDIRS = src man
    33DIST_SUBDIRS = $(SUBDIRS) data
    44
  • neercs/trunk/configure.ac

    r2457 r2465  
    5959CFLAGS="${CFLAGS} -Wall -Wpointer-arith -Wcast-align -Wcast-qual -Wstrict-prototypes -Wshadow -Waggregate-return -Wmissing-prototypes -Wnested-externs -Wsign-compare"
    6060
     61AC_CONFIG_FILES([
     62  man/Makefile
     63])
    6164AC_OUTPUT([
    6265  Makefile
  • neercs/trunk/src/configuration.c

    r2464 r2465  
    234234        }
    235235    }
    236 
    237236    cur[o] = 0;
    238237    option->value = cur;
    239 
    240 
    241238    return 0;
    242239}
     
    284281        {
    285282            screen_list->screensaver_timeout = atoi(option->value) * 1000000;
     283            /* if timeout is 0, set it to 0xFFFFFFFFFFFFFFFF */
    286284            if(!screen_list->screensaver_timeout) screen_list->screensaver_timeout-=1;
    287285        } else
  • neercs/trunk/src/neercs.ini

    r2464 r2465  
    11; Neercs configuration file example
     2; This configuration follow the .ini file format, where :
     3;
     4; [section]       is a section
     5; key = value     sets key to value
     6;
     7; Comments begin with ';'
     8
     9
    210
    311[windows]
Note: See TracChangeset for help on using the changeset viewer.