Commit 439c107f 439c107f897d17676a33c2605d3b3bce9de5627a by Sergey Poznyakoff

Added placeholders for PROGRAM_INVOCATION_NAME_DECLARED and

HAVE_PROGRAM_INVOCATION_NAME.
(@BOTTOM@): Provide external declarations for program_invocation_.*name
if necessary.
1 parent d5b8ee98
...@@ -80,6 +80,9 @@ ...@@ -80,6 +80,9 @@
80 80
81 #undef MU_CONF_MAILDIR 81 #undef MU_CONF_MAILDIR
82 82
83 #undef PROGRAM_INVOCATION_NAME_DEFINED
84 #undef HAVE_PROGRAM_INVOCATION_NAME
85
83 @BOTTOM@ 86 @BOTTOM@
84 87
85 #ifdef HAVE_PATHS_H 88 #ifdef HAVE_PATHS_H
...@@ -104,3 +107,8 @@ ...@@ -104,3 +107,8 @@
104 #ifndef HAVE_RL_COMPLETION_MATCHES 107 #ifndef HAVE_RL_COMPLETION_MATCHES
105 # define rl_completion_matches completion_matches 108 # define rl_completion_matches completion_matches
106 #endif 109 #endif
110
111 #ifndef PROGRAM_INVOCATION_NAME_DECLARED
112 extern char *program_invocation_short_name;
113 extern char *program_invocation_name;
114 #endif
......