Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 159779
Collapse All | Expand All

(-)wizd-24/Makefile (-4 / +4 lines)
Lines 6-23 Link Here
6
.SUFFIXES: .c .o .obj
6
.SUFFIXES: .c .o .obj
7
7
8
CC = gcc
8
CC = gcc
9
CFLAGS = -pipe -O2 -Wall
9
CFLAGS = -pipe -O2 
10
CFLAGS += -g	# debug symbols
10
CFLAGS += -g	# debug symbols
11
CFLAGS += -D_FILE_OFFSET_BITS=64
11
CFLAGS += -D_FILE_OFFSET_BITS=64
12
CFLAGS += -D_LARGEFILE_SOURCE
12
CFLAGS += -D_LARGEFILE_SOURCE
13
### -- If you dont want to use JPEG resize feature, comment it out.
13
### -- If you dont want to use JPEG resize feature, comment it out.
14
CFLAGS += -DRESIZE_JPEG
14
CFLAGS += -DRESIZE_JPEG
15
CFLAGS += -I/usr/local/include
15
CFLAGS += -I/usr/local/include
16
LDFLAGS += -static -L/usr/local/lib -ljpeg -ldvdread
16
LDFLAGS += -L/usr/local/lib -ljpeg -ldvdread -lm
17
17
18
# keep the following lines only if you have the w32api library
18
# keep the following lines only if you have the w32api library
19
LDFLAGS += -L/lib/w32api -lole32 -luuid
19
#LDFLAGS += -L/lib/w32api -lole32 -luuid
20
CFLAGS += -DHAVE_W32API
20
#CFLAGS += -DHAVE_W32API
21
21
22
### --
22
### --
23
LDFLAGS += -s	# strip symbols
23
LDFLAGS += -s	# strip symbols
(-)wizd-24/wizd_http.c (-1 / +3 lines)
Lines 23-30 Link Here
23
#include <dirent.h>
23
#include <dirent.h>
24
#include <fcntl.h>
24
#include <fcntl.h>
25
#include <libgen.h>
25
#include <libgen.h>
26
#include <sys/cygwin.h>
27
26
27
#ifdef HAVE_W32API
28
	#include <sys/cygwin.h>
29
#endif
28
#include "wizd.h"
30
#include "wizd.h"
29
#include "wizd_skin.h"
31
#include "wizd_skin.h"
30
32
(-)wizd-24/wizd_menu.c (-1 / +4 lines)
Lines 27-33 Link Here
27
#include <errno.h>
27
#include <errno.h>
28
#include <libgen.h>
28
#include <libgen.h>
29
#include <regex.h>
29
#include <regex.h>
30
#include <sys/cygwin.h>
30
31
#ifdef HAVE_W32API
32
	#include <sys/cygwin.h>
33
#endif
31
34
32
#include <dvdread/dvd_reader.h>
35
#include <dvdread/dvd_reader.h>
33
#include <dvdread/ifo_types.h>
36
#include <dvdread/ifo_types.h>
(-)wizd-24/wizd.conf (-1 / +1 lines)
Lines 175-181 Link Here
175
## Skin name is the subdirectory under skin_root for the selected skin.
175
## Skin name is the subdirectory under skin_root for the selected skin.
176
##  When using skins, if these directories do not exist, the server will 
176
##  When using skins, if these directories do not exist, the server will 
177
##  close immediately.
177
##  close immediately.
178
skin_root	./skin
178
skin_root	/usr/share/wizd/skins
179
skin_name	simplicity_hires
179
skin_name	simplicity_hires
180
180
181
## Define alternate skin names which are selected based on the User-Agent string
181
## Define alternate skin names which are selected based on the User-Agent string

Return to bug 159779