diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-10-17 06:03:09 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-10-17 06:03:09 +0000 |
commit | 9ed99ac081ccb22ecba3befc39d9ea68dabbf55f (patch) | |
tree | eeb466d4b8bc201a37b487380f684192f4d5d65b | |
parent | 3e74e344a78998a29059371d922e2dfc7963fe0b (diff) | |
download | emacs-9ed99ac081ccb22ecba3befc39d9ea68dabbf55f.tar.gz |
(bitmapdirs): Default to /usr/include/X11/bitmaps.
-rwxr-xr-x | configure1.in | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/configure1.in b/configure1.in index 3cf4858e906..2201547e2a4 100755 --- a/configure1.in +++ b/configure1.in @@ -1336,7 +1336,11 @@ esac [ -n "${x_libraries}" ] && LD_SWITCH_X_SITE_AUX="-R${x_libraries}" [ -n "${x_includes}" ] && C_SWITCH_X_SITE="-I${x_includes}" -bitmapdir="${x_includes}" +if [ x"${x_includes}" = x ]; then + bitmapdir=/usr/include/X11/bitmaps; +else + bitmapdir="${x_includes}/bitmaps"; +fi # Avoid forcing the search of /usr/include before fixed include files. if [ "$C_SWITCH_X_SITE" = "-I/usr/include" ]; then |