Closed
Bug 22660
Opened 26 years ago
Closed 25 years ago
top level configure may not find XShm.h
Categories
(SeaMonkey :: Build Config, defect, P3)
Tracking
(Not tracked)
RESOLVED
FIXED
M15
People
(Reporter: ghouston, Assigned: cls)
Details
Attachments
(1 file)
|
571 bytes,
patch
|
Details | Diff | Splinter Review |
When running configure for the M12 release I noticed that XShm.h wasn't
found, although it's present on the system. The reason is that
configure's AC_CHECK_HEADERS uses a path which isn't updated with the
X11 search results. Adding something like this to configure.in
will fix it:
dnl Check in X11 include directory too.
ac_cpp="$ac_cpp -I$ac_x_includes"
Updated•26 years ago
|
Status: NEW → ASSIGNED
Target Milestone: M14
Comment 1•25 years ago
|
||
not being a configure hacker, I don't understand ac_cpp. reassigning to
cls@seawood.org.
Assignee: granrose → cls
Status: ASSIGNED → NEW
Target Milestone: M14 → M18
This patch should fix the general case. I'm a bit wary about getting this in
for M14 as I'm not sure what side effects it'll have on platforms where X_CFLAGS
sets more than just includes.
Target Milestone: M18 → M15
Fix checked in.
Status: ASSIGNED → RESOLVED
Closed: 25 years ago
Resolution: --- → FIXED
Updated•21 years ago
|
Product: Browser → Seamonkey
You need to log in
before you can comment on or make changes to this bug.
Description
•