-Fixes to OpenSSL compilation (more)

-Fix bug in GDScript, now static functions can call static functions.
This commit is contained in:
Juan Linietsky 2014-05-01 11:34:10 -03:00
parent 4dc4e96c8a
commit 6572d51288
9 changed files with 55 additions and 16 deletions

View file

@ -56,7 +56,7 @@ def get_flags():
('opengl', 'no'),
('legacygl', 'yes'),
('builtin_zlib', 'no'),
('openssl', 'yes'),
("openssl", "yes"),
]
@ -121,8 +121,7 @@ def configure(env):
env.ParseConfig('pkg-config x11 --cflags --libs')
env.ParseConfig('pkg-config xcursor --cflags --libs')
if (env["openssl"]=='yes'):
env.ParseConfig('pkg-config openssl --cflags --libs')
env.ParseConfig('pkg-config openssl --cflags --libs')
env.ParseConfig('pkg-config freetype2 --cflags --libs')