mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
godot: simplify pkg_config_additions.patch
This commit is contained in:
parent
2220b5fe99
commit
368ed89aa0
1 changed files with 4 additions and 8 deletions
|
@ -1,17 +1,13 @@
|
|||
+++ build/platform/x11/detect.py
|
||||
@@ -142,8 +142,13 @@
|
||||
+++ b/platform/x11/detect.py
|
||||
@@ -142,6 +142,11 @@
|
||||
env.ParseConfig('pkg-config xcursor --cflags --libs')
|
||||
env.ParseConfig('pkg-config xinerama --cflags --libs')
|
||||
env.ParseConfig('pkg-config xrandr --cflags --libs')
|
||||
-
|
||||
- if (env['touch']):
|
||||
+ env.ParseConfig('pkg-config xrender --cflags --libs')
|
||||
+ env.ParseConfig('pkg-config xext --cflags --libs')
|
||||
+ env.ParseConfig('pkg-config xfixes --cflags --libs')
|
||||
+ env.ParseConfig('pkg-config glu --cflags --libs')
|
||||
+ env.ParseConfig('pkg-config zlib --cflags --libs')
|
||||
+
|
||||
+ if (env['touch']):
|
||||
|
||||
if (env['touch']):
|
||||
x11_error = os.system("pkg-config xi --modversion > /dev/null ")
|
||||
if (x11_error):
|
||||
print("xi not found.. cannot build with touch. Aborting.")
|
||||
|
|
Loading…
Reference in a new issue