• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

D bindings to the GraphicsMagick library.


Commit MetaInfo

Revisiónaf102f3f4f8364d2392dde6a5093c3787bd6622a (tree)
Tiempo2023-07-15 17:58:58
AutorMio <stigma@disr...>
CommiterMio

Log Message

Re-organize README

Just moving to be sub-sections that flow a little better.

Thanks May!

Cambiar Resumen

Diferencia incremental

--- a/README.md
+++ b/README.md
@@ -63,8 +63,7 @@ not using [dub], then you'll need to specify the `GMagick_Static` version.)
6363
6464 [dub]: https://dub.pm
6565
66-macOS - MacPorts - Dynamic Bindings
67------------------------------------
66+#### macOS - MacPorts - Dynamic Bindings
6867
6968 A quick heads up if you've installed GraphicsMagick via [MacPorts], you will
7069 need to make sure that the `LD_LIBRARY_PATH` environment variable will include
--- a/graphicsmagick_c/README.md
+++ b/graphicsmagick_c/README.md
@@ -80,6 +80,20 @@ In dub.json (again, replace Q16):
8080 }
8181 ```
8282
83+### macOS - MacPorts - Dynamic Bindings
84+
85+A quick heads up if you've installed GraphicsMagick via [MacPorts], you will
86+need to make sure that the `LD_LIBRARY_PATH` environment variable will include
87+the directory which holds `GraphicsMagick.dylib` and `GraphicsMagickWand.dylib`.
88+By default, the directory is `/opt/local/lib`. For example:
89+
90+```sh
91+$ cd examples/
92+$ ./dmd.sh --shared
93+$ LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/opt/local/lib" \
94+ ./dmd/ping_dmd /path/to/my/picture.png
95+```
96+
8397 ### Logging
8498
8599 By default, graphicsmagick_c does **not** print anything to the stderr file.
@@ -94,21 +108,6 @@ Examples
94108
95109 See the `examples/` directory.
96110
97-macOS - MacPorts - Dynamic Bindings
98------------------------------------
99-
100-A quick heads up if you've installed GraphicsMagick via [MacPorts], you will
101-need to make sure that the `LD_LIBRARY_PATH` environment variable will include
102-the directory which holds `GraphicsMagick.dylib` and `GraphicsMagickWand.dylib`.
103-By default, the directory is `/opt/local/lib`. For example:
104-
105-```sh
106-$ cd examples/
107-$ ./dmd.sh --shared
108-$ LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/opt/local/lib" \
109- ./dmd/ping_dmd /path/to/my/picture.png
110-```
111-
112111 [MacPorts]: https://www.macports.org/
113112
114113 License