]> git.eshelyaron.com Git - emacs.git/commitdiff
(SYSV): Don't define on Solaris 2.
authorGerd Moellmann <gerd@gnu.org>
Thu, 16 Aug 2001 12:55:40 +0000 (12:55 +0000)
committerGerd Moellmann <gerd@gnu.org>
Thu, 16 Aug 2001 12:55:40 +0000 (12:55 +0000)
From Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>.

src/ChangeLog
src/xrdb.c

index ed0ecf7fd26d1a9315daa0abbda7144d637b5e7d..733bde62594ca4ece65a7b2b103963208c6996b5 100644 (file)
@@ -1,5 +1,8 @@
 2001-08-16  Gerd Moellmann  <gerd@gnu.org>
 
+       * xrdb.c (SYSV): Don't define on Solaris 2.
+       From Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>.
+
        * xdisp.c (move_it_by_lines) <DVPOS < 0>: Start at the beginning
        of the screen line, not text line, containing IT's current
        position.
index 632e447e851c9b4f5a7802f2a14e4538e40834d9..e51a774dc477d01764ba660396ad905ba8c2d808 100644 (file)
@@ -33,12 +33,15 @@ Boston, MA 02111-1307, USA.  */
 #include <stdio.h>
 
 #if 1 /* I'd really appreciate it if this code could go away...  -JimB */
-/* this avoids lossage in the `dual-universe' headers on AT&T SysV X11 */
-#ifdef USG5
+/* This avoids lossage in the `dual-universe' headers on AT&T SysV
+   X11.  Don't do it on Solaris, because it breaks compilation with
+   XFree86 4.0.3 (and probably many other X11R6 releases) on Solaris
+   2 */
+#if defined(USG5) && !defined(SOLARIS2)
 #ifndef SYSV
 #define SYSV
 #endif
-#endif /* USG5 */
+#endif /* USG5 && !SOLARIS2 */
 
 #endif /* 1 */