Team-To-Be-Determined / gnome-paint

Gnome Paint - A Lightweight Paint Application
GNU General Public License v3.0
0 stars 2 forks source link

Please do not install .xpm files to /usr/include/ #23

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
As to my understanding you include .xpm files during compilation, e.g. sel2.xpm 
seems to be included from src/toolbar.c:

  #include "./pixmaps/sel2.xpm"

If you want to make these images available to other programs please install 
them to somewhere below /usr/share/gome-paint/, not /usr/include.  Otherwise 
you may turn these files to no-install files by modifiying 
./src/pixmaps/Makefile.am as following:

  --- pixmaps_HEADERS = \
  +++ noinst_pixmaps_HEADERS = \

  --- pixmapsdir = \
  ---    $(pkgincludedir)

I hope that works.  Thanks for consideration!

Original issue reported on code.google.com by webmas...@hartwork.org on 16 Jun 2011 at 4:49