SF.net SVN: gar:[23407] csw/mgar/pkg/opencsw-manual/trunk/files/ for-developers
wahwah at users.sourceforge.net
wahwah at users.sourceforge.net
Sun Apr 13 13:18:04 CEST 2014
Revision: 23407
http://sourceforge.net/p/gar/code/23407
Author: wahwah
Date: 2014-04-13 11:18:03 +0000 (Sun, 13 Apr 2014)
Log Message:
-----------
/home/maciej/opencsw/opencsw-manual/trunk: Simplified the layout of the for-developers part
Modified Paths:
--------------
csw/mgar/pkg/opencsw-manual/trunk/files/for-developers/index.rst
Removed Paths:
-------------
csw/mgar/pkg/opencsw-manual/trunk/files/for-developers/linking.rst
csw/mgar/pkg/opencsw-manual/trunk/files/for-developers/upstream.rst
Modified: csw/mgar/pkg/opencsw-manual/trunk/files/for-developers/index.rst
===================================================================
--- csw/mgar/pkg/opencsw-manual/trunk/files/for-developers/index.rst 2014-04-13 11:01:04 UTC (rev 23406)
+++ csw/mgar/pkg/opencsw-manual/trunk/files/for-developers/index.rst 2014-04-13 11:18:03 UTC (rev 23407)
@@ -5,8 +5,35 @@
This is a manual for developers who want to build own software, using
tools and libraries provided by OpenCSW.
-.. toctree::
- :maxdepth: 1
+.. _linking against OpenCSW libraries:
- linking
- upstream
+Linking against OpenCSW libraries
+=================================
+
+To build own software against libraries distributed by OpenCSW, install the
+relevant ``*_dev`` packages. They contain the header files, and ``*.so``
+symlinks necessary during linking.
+
+When building againt OpenCSW software, aside from setting the ``PATH``
+correctly, these flags will typically make it work::
+
+ CPPFLAGS="-I/opt/csw/include"
+ LDFLAGS="-L/opt/csw/lib -R/opt/csw/lib"
+ PKG_CONFIG_PATH="/opt/csw/lib/pkgconfig"
+
+If you're building a 64-bit binary, use these::
+
+ CPPFLAGS="-I/opt/csw/include"
+ LDFLAGS="-L/opt/csw/lib/64 -R/opt/csw/lib/64"
+ PKG_CONFIG_PATH="/opt/csw/lib/64/pkgconfig"
+
+64-bit libraries live in the ``/opt/csw/lib/sparcv9`` and/or
+``/opt/csw/lib/amd64`` directories. The ``/opt/csw/lib/64`` path is
+a symlink to a chosen architecture subdirectory. For example, on SPARC
+``/opt/csw/lib/64`` is a symlink to ``/opt/csw/lib/sparcv9``. All
+binaries compiled with the ``-R/opt/csw/lib/64`` flag will try to look
+at that path and find their libraries.
+
+
+.. _LD_LIBRARY_PATH - just say no:
+ https://blogs.oracle.com/rie/entry/tt_ld_library_path_tt
Deleted: csw/mgar/pkg/opencsw-manual/trunk/files/for-developers/linking.rst
===================================================================
--- csw/mgar/pkg/opencsw-manual/trunk/files/for-developers/linking.rst 2014-04-13 11:01:04 UTC (rev 23406)
+++ csw/mgar/pkg/opencsw-manual/trunk/files/for-developers/linking.rst 2014-04-13 11:18:03 UTC (rev 23407)
@@ -1,32 +0,0 @@
-.. _linking against OpenCSW libraries:
-
-Linking against OpenCSW libraries
-=================================
-
-To build own software against libraries distributed by OpenCSW, install the
-relevant ``*_dev`` packages. They contain the header files, and ``*.so``
-symlinks necessary during linking.
-
-When building againt OpenCSW software, aside from setting the ``PATH``
-correctly, these flags will typically make it work::
-
- CPPFLAGS="-I/opt/csw/include"
- LDFLAGS="-L/opt/csw/lib -R/opt/csw/lib"
- PKG_CONFIG_PATH="/opt/csw/lib/pkgconfig"
-
-If you're building a 64-bit binary, use these::
-
- CPPFLAGS="-I/opt/csw/include"
- LDFLAGS="-L/opt/csw/lib/64 -R/opt/csw/lib/64"
- PKG_CONFIG_PATH="/opt/csw/lib/64/pkgconfig"
-
-64-bit libraries live in the ``/opt/csw/lib/sparcv9`` and/or
-``/opt/csw/lib/amd64`` directories. The ``/opt/csw/lib/64`` path is
-a symlink to a chosen architecture subdirectory. For example, on SPARC
-``/opt/csw/lib/64`` is a symlink to ``/opt/csw/lib/sparcv9``. All
-binaries compiled with the ``-R/opt/csw/lib/64`` flag will try to look
-at that path and find their libraries.
-
-
-.. _LD_LIBRARY_PATH - just say no:
- https://blogs.oracle.com/rie/entry/tt_ld_library_path_tt
Deleted: csw/mgar/pkg/opencsw-manual/trunk/files/for-developers/upstream.rst
===================================================================
--- csw/mgar/pkg/opencsw-manual/trunk/files/for-developers/upstream.rst 2014-04-13 11:01:04 UTC (rev 23406)
+++ csw/mgar/pkg/opencsw-manual/trunk/files/for-developers/upstream.rst 2014-04-13 11:18:03 UTC (rev 23407)
@@ -1,4 +0,0 @@
-Bugs/issues filed by OpenCSW maintainers
-========================================
-
-OpenCSW maintainers
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the devel
mailing list