summaryrefslogtreecommitdiffstats
path: root/doc/user/parseconfig.xml
diff options
context:
space:
mode:
Diffstat (limited to 'doc/user/parseconfig.xml')
-rw-r--r--doc/user/parseconfig.xml26
1 files changed, 22 insertions, 4 deletions
diff --git a/doc/user/parseconfig.xml b/doc/user/parseconfig.xml
index 3613d77..4adf97d 100644
--- a/doc/user/parseconfig.xml
+++ b/doc/user/parseconfig.xml
@@ -89,8 +89,17 @@
<screen>
% <userinput>scons -Q</userinput>
- ['/lib/compat', '/usr/X11/include']
- scons: `.' is up to date.
+ Package x11 was not found in the pkg-config search path.
+ Perhaps you should add the directory containing `x11.pc'
+ to the PKG_CONFIG_PATH environment variable
+ No package 'x11' found
+ OSError: 'pkg-config x11 --cflags --libs' exited 1:
+ File "/home/my/project/SConstruct", line 3:
+ env.ParseConfig("pkg-config x11 --cflags --libs")
+ File "bootstrap/src/engine/SCons/Environment.py", line 1474:
+ None
+ File "bootstrap/src/engine/SCons/Environment.py", line 593:
+ None
</screen>
<para>
@@ -131,6 +140,15 @@
<screen>
% <userinput>scons -Q</userinput>
- ['/usr/X11/include']
- scons: `.' is up to date.
+ Package x11 was not found in the pkg-config search path.
+ Perhaps you should add the directory containing `x11.pc'
+ to the PKG_CONFIG_PATH environment variable
+ No package 'x11' found
+ OSError: 'pkg-config x11 --cflags --libs' exited 1:
+ File "/home/my/project/SConstruct", line 2:
+ env.ParseConfig("pkg-config x11 --cflags --libs")
+ File "bootstrap/src/engine/SCons/Environment.py", line 1474:
+ None
+ File "bootstrap/src/engine/SCons/Environment.py", line 593:
+ None
</screen>