diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2007-06-13 17:35:14 +0000 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2007-06-13 17:35:14 +0000 |
commit | 8ab9202e27387b8495e62d6bd1c075d6032065c5 (patch) | |
tree | c523e53339a39a7ba2ae8740edd1a3d004ef008d /src/xfns.c | |
parent | 52a0e11160eed1e8c22fc23148fc47d68998184f (diff) | |
download | emacs-8ab9202e27387b8495e62d6bd1c075d6032065c5.tar.gz emacs-8ab9202e27387b8495e62d6bd1c075d6032065c5.tar.bz2 emacs-8ab9202e27387b8495e62d6bd1c075d6032065c5.zip |
Link to xaw3d if available.
Diffstat (limited to 'src/xfns.c')
-rw-r--r-- | src/xfns.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/xfns.c b/src/xfns.c index 023a9bbfdf4..a5ac1094aec 100644 --- a/src/xfns.c +++ b/src/xfns.c @@ -72,8 +72,13 @@ Boston, MA 02110-1301, USA. */ #include <X11/Shell.h> #ifndef USE_MOTIF +#ifdef HAVE_XAW3D +#include <X11/Xaw3d/Paned.h> +#include <X11/Xaw/Label.h> +#else /* !HAVE_XAW3D */ #include <X11/Xaw/Paned.h> #include <X11/Xaw/Label.h> +#endif /* HAVE_XAW3D */ #endif /* USE_MOTIF */ #ifdef USG |