Re: [Freeciv-Dev] Freeciv configure script bug (PR#110)
[Top] [All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index] [Thread Index]
mancini@xxxxxxx wrote:
> Full_Name: mancini
> Version: 1.8.1
> OS: HP-UX
> It seems that the configure option
> --with-xpm-prefix
> doesnt work.
> It stills search for something like "X11/xpm.h"
> My system administrator put xpm.h and libxpm.a in
> /usr/local/include and /usr/local/lib
> the option --with-xpm-prefix=/usr/local
> doesnt work.
If you mean that the problem is that xpm.h is not in a
subdirectory called X11, then thats a problem configure
cannot help with, because the code does, eg:
#include <X11/xpm.h>
So you *must* have xpm.h in such a subdirectory.
Maybe you can set something up with symlinks in your home
area? Eg something like:
...home/my_xpm/include/X11/xpm.h -> real xpm.h
...home/my_xpm/lib/libxpm.a -> real libxpm.a
and use --with-xpm-prefix="...home/my_xpm"
Also note you can specify separately --with-xpm-lib
and --with-xpm-include; see ./configure --help.
Regards,
-- David
|
|