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

Collapse All | Expand All

(-)file_not_specified_in_diff (-1 / +7 lines)
Line  Link Here
0
-- SConstruct
0
++ SConstruct
Lines 124-129 Link Here
124
124
125
else:
125
else:
126
	print "Compiling for Unix/Posix/Linux Environment"
126
	print "Compiling for Unix/Posix/Linux Environment"
127
	SConsignFile()
127
	env = Environment(ENV = os.environ)
128
	env = Environment(ENV = os.environ)
128
	env.Append(CPPPATH = ['/usr/include/SDL', '/usr/include/GL'])
129
	env.Append(CPPPATH = ['/usr/include/SDL', '/usr/include/GL'])
129
	libpath = ['/usr/X11R6/lib']
130
	libpath = ['/usr/X11R6/lib']
Lines 177-182 Link Here
177
		else:
178
		else:
178
			print 'Using x86 SSE/MMX optimizations.'
179
			print 'Using x86 SSE/MMX optimizations.'
179
	env.Append(CCFLAGS = ccflags)
180
	env.Append(CCFLAGS = ccflags)
181
	env.Replace(CXX = os.environ['CXX'])
182
	if os.environ.get('CXXFLAGS'):
183
		env.Replace(CCFLAGS = os.environ['CXXFLAGS'])
184
	if os.environ.get('LDFLAGS'):
185
		env.Replace(LINKFLAGS = os.environ['LDFLAGS'])
180
	datadir = '/usr/local/share/dangerdeep'
186
	datadir = '/usr/local/share/dangerdeep'
181
	build_dir = 'linux'
187
	build_dir = 'linux'
182
	# check for broken libGL, ignore undefined symbols then
188
	# check for broken libGL, ignore undefined symbols then

Return to bug 130023