diff -uNr unrtf-0.21.1.orig/doc/unrtf.1 unrtf-0.21.1/doc/unrtf.1
|
|
|
87 | 87 | configuration files are a simple format. To change the behaviour of |
88 | 88 | unrtf, a local copy of a system configuration file can be be made and |
89 | 89 | edited. The most complete configuration file and hence the best starting |
90 | | point is /usr/local/lib/unrtf/html.conf. |
| 90 | point is /opt/local/lib/unrtf/html.conf. |
91 | 91 | .TP |
92 | 92 | \-P config_search_path |
93 | 93 | specifies the directories in which the configuration file for the specified |
94 | 94 | format will be sought. The path can be provided as a single directory |
95 | 95 | or a list of colon separated directories. |
96 | | The default is /usr/local/lib/unrtf/ where distributed output |
| 96 | The default is /opt/local/lib/unrtf/ where distributed output |
97 | 97 | configuration files are installed. |
98 | 98 | .SH FILES |
99 | 99 | .TP |
100 | | /usr/local/lib/unrtf/*.conf |
| 100 | /opt/local/lib/unrtf/*.conf |
101 | 101 | - run time output configuration files. |
102 | 102 | .TP |
103 | | /usr/local/lib/unrtf/SYMBOL.charmap |
| 103 | /opt/local/lib/unrtf/SYMBOL.charmap |
104 | 104 | - UTF encoding of the SYMBOL font |
105 | 105 | used in many RTF files. Unfortunately the iconv package does not include |
106 | 106 | font encodings. The format is identical to iconv code page files. |
diff -uNr unrtf-0.21.1.orig/src/main.h unrtf-0.21.1/src/main.h
|
|
|
47 | 47 | #include "output.h" |
48 | 48 | #endif |
49 | 49 | |
50 | | #define CONFIG_DIR "/usr/local/lib/unrtf/" |
| 50 | #define CONFIG_DIR "/opt/local/lib/unrtf/" |
51 | 51 | #define DEFAULT_OUTPUT "html" |
52 | 52 | |
53 | 53 | extern OutputPersonality *op; |
diff -uNr unrtf-0.21.1.orig/src/my_iconv.h unrtf-0.21.1/src/my_iconv.h
|
|
|
10 | 10 | #define HAVE_ICONV_H |
11 | 11 | #endif |
12 | 12 | |
13 | | #define CHARMAP_DIR "/usr/local/lib/unrtf/charmaps/" |
| 13 | #define CHARMAP_DIR "/opt/local/lib/unrtf/charmaps/" |
14 | 14 | #define char_table_size 256 |
15 | 15 | |
16 | 16 | typedef struct |
diff -uNr unrtf-0.21.1.orig/src/path.h unrtf-0.21.1/src/path.h
|
|
|
1 | | #define DEFAULT_UNRTF_SEARCH_PATH "/usr/local/lib/unrtf/" |
| 1 | #define DEFAULT_UNRTF_SEARCH_PATH "/opt/local/lib/unrtf/" |
2 | 2 | |
3 | 3 | char *search_path; |
4 | 4 | int n_path_dirs; |