Pay attention to HAVE_X11_XAW_COMMAND_H.
authorhanda <handa>
Wed, 27 Oct 2004 07:48:29 +0000 (07:48 +0000)
committerhanda <handa>
Wed, 27 Oct 2004 07:48:29 +0000 (07:48 +0000)
example/otfview.c

index 809b69c..531f549 100644 (file)
@@ -28,6 +28,8 @@ write to the Free Software Foundation, Inc., 59 Temple Place, Suite
 #include <unistd.h>
 #include <libgen.h>
 
+#ifdef HAVE_X11_XAW_COMMAND_H
+
 #include <X11/Xatom.h>
 #include <X11/Intrinsic.h>
 #include <X11/StringDefs.h>
@@ -1349,3 +1351,16 @@ main (int argc, char **argv)
 
   exit (0);
 }
+
+#else /* not HAVE_X11_XAW_COMMAND_H */
+
+int
+main (int argc, char **argv)
+{
+  fprintf (stderr, 
+          "Building of this program failed (lack of some header files)\n",
+          argv[0]);
+  exit (1);
+}
+
+#endif