浏览代码

libgdi.so nightmare fixed

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@35606 15284696-431f-4ddb-bdfa-cd5b030d7da7
Markus Neteler 16 年之前
父节点
当前提交
fad50261a8
共有 1 个文件被更改,包括 0 次插入30 次删除
  1. 0 30
      gui/wxpython/README

+ 0 - 30
gui/wxpython/README

@@ -157,33 +157,3 @@ To enable digitizer you need to compile 'vdigit'
 component. Note that you must configure GRASS with C++ (--with-cxx),
 Python (--with-python) and wxWidgets (--with-wxwidgets) support.
 
-NOTE: There is no need to do the following symlink or ldconfig on MacOSX.
-
-First, create a symlink to _gdi_.so shared library
-
-- find out architecture (32 or 64bit):
-   $ echo "$HOSTTYPE"
-
-- find the _gdi_.so file and check if compliant:
-   $ locate _gdi_.so
-   $ file /path/to/_gdi_.so
-
-  It will report "ELF 32-bit..." or "ELF 64-bit..". If you have
-  multiple results with locate, link below the appropriate file.
-
-- link as library:
-   $ sudo ln -s /path/to/_gdi_.so /usr/local/lib/libgdi.so
-
-  e.g.
-   $ sudo ln -s /usr/lib64/python2.4/site-packages/wx-2.8-gtk2-unicode/wx/_gdi_.so /usr/local/lib/libgdi.so
-
-Then update LD_LIBRARY_PATH or add '/usr/local/lib' to /etc/ld.so.conf
-(in this case run 'sudo ldconfig').
-
-TODO grass-dev: Avoid direct linking here, implement a better solution.
-
-Then you can compile the driver
-
-$ cd gui/wxpython/vdigit
-$ make
-