Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 188214 | Differences between
and this patch

Collapse All | Expand All

(-)SConstruct (-3 / +5 lines)
Lines 24-29 Link Here
24
24
25
base_env = Environment()
25
base_env = Environment()
26
26
27
base_env.SConsignFile()
28
27
if build_info['cross']:
29
if build_info['cross']:
28
  base_env.Tool('crossmingw', toolpath=['build'])
30
  base_env.Tool('crossmingw', toolpath=['build'])
29
31
Lines 95-104 Link Here
95
env.Append(LIBS = ['png', 'jpeg', 'z'])
97
env.Append(LIBS = ['png', 'jpeg', 'z'])
96
98
97
# FLTK
99
# FLTK
98
if build_info['platform'] == 'linux' and build_info['release']:
100
if build_info['platform'] == 'linux':
99
    env.Append(CCFLAGS = ['-DUSE_FLTK'])
101
    env.Append(CCFLAGS = ['-DUSE_FLTK'])
100
    env.ParseConfig('#linux_lib/fltk-1.1.7/fltk-config --cflags')
102
    env.ParseConfig('fltk-config --cflags')
101
    env.Append(LIBPATH = ['#linux_lib/fltk-1.1.7/lib'])
103
    env.ParseConfig('fltk-config --ldflags')
102
    env.Append(LIBS = ['fltk', 'fltk_images'])
104
    env.Append(LIBS = ['fltk', 'fltk_images'])
103
105
104
# HawkNL
106
# HawkNL

Return to bug 188214