diff options
author | Adam Jackson <ajax@nwnk.net> | 2005-11-09 22:31:56 +0000 |
---|---|---|
committer | Adam Jackson <ajax@nwnk.net> | 2005-11-09 22:31:56 +0000 |
commit | fcf7eee8248f0029f73927861e640984b2efe0c3 (patch) | |
tree | 76bc0695ec13596d82cda615a4c859247148195c | |
parent | 4e76e346fc73c6650cee2882be993105acf0bd2e (diff) |
#include "foowmstr.h" -> #include <X11/extensions/foowmstr.h>
-rwxr-xr-x | src/windowswm.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/windowswm.c b/src/windowswm.c index c61f792..38c427d 100755 --- a/src/windowswm.c +++ b/src/windowswm.c @@ -33,8 +33,11 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. #define NEED_EVENTS #define NEED_REPLIES +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif #include <X11/Xlibint.h> -#include "windowswmstr.h" +#include <X11/extensions/windowswmstr.h> #include <X11/extensions/Xext.h> #include "extutil.h" #include <stdio.h> |