Changeset 2465
- Timestamp:
- Jun 20, 2008, 2:39:20 PM (15 years ago)
- Location:
- neercs/trunk
- Files:
-
- 3 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
neercs/trunk/Makefile.am
r1436 r2465 1 1 2 SUBDIRS = src 2 SUBDIRS = src man 3 3 DIST_SUBDIRS = $(SUBDIRS) data 4 4 -
neercs/trunk/configure.ac
r2457 r2465 59 59 CFLAGS="${CFLAGS} -Wall -Wpointer-arith -Wcast-align -Wcast-qual -Wstrict-prototypes -Wshadow -Waggregate-return -Wmissing-prototypes -Wnested-externs -Wsign-compare" 60 60 61 AC_CONFIG_FILES([ 62 man/Makefile 63 ]) 61 64 AC_OUTPUT([ 62 65 Makefile -
neercs/trunk/src/configuration.c
r2464 r2465 234 234 } 235 235 } 236 237 236 cur[o] = 0; 238 237 option->value = cur; 239 240 241 238 return 0; 242 239 } … … 284 281 { 285 282 screen_list->screensaver_timeout = atoi(option->value) * 1000000; 283 /* if timeout is 0, set it to 0xFFFFFFFFFFFFFFFF */ 286 284 if(!screen_list->screensaver_timeout) screen_list->screensaver_timeout-=1; 287 285 } else -
neercs/trunk/src/neercs.ini
r2464 r2465 1 1 ; 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 2 10 3 11 [windows]
Note: See TracChangeset
for help on using the changeset viewer.