Change to ltconfig to remove -z text for Solaris x86 Change to configure
* Change to ltconfig to remove -z text for Solaris x86 * Change to configure stuff so compile works on Solaris x86 * Added gdk/gdkkeysyms.h and gdk/gdkcursors.h back into the tree -Shawn
This commit is contained in:
@ -1,14 +1,8 @@
|
||||
# Makefile.in generated automatically by automake 1.2c from Makefile.am
|
||||
# Makefile.in generated automatically by automake 1.2 from Makefile.am
|
||||
|
||||
# Copyright (C) 1994, 1995, 1996, 1997 Free Software Foundation, Inc.
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
# with or without modifications, as long as this notice is preserved.
|
||||
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
# PARTICULAR PURPOSE.
|
||||
# gives unlimited permission to copy, distribute and modify it.
|
||||
|
||||
|
||||
SHELL = /bin/sh
|
||||
@ -58,13 +52,11 @@ POST_UNINSTALL = true
|
||||
host_alias = @host_alias@
|
||||
host_triplet = @host@
|
||||
CC = @CC@
|
||||
CPP = @CPP@
|
||||
LD = @LD@
|
||||
LIBTOOL = @LIBTOOL@
|
||||
LN_S = @LN_S@
|
||||
MAINT = @MAINT@
|
||||
MAKEINFO = @MAKEINFO@
|
||||
NM = @NM@
|
||||
PACKAGE = @PACKAGE@
|
||||
RANLIB = @RANLIB@
|
||||
VERSION = @VERSION@
|
||||
@ -167,7 +159,7 @@ DIST_COMMON = Makefile.am Makefile.in
|
||||
|
||||
DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
|
||||
|
||||
TAR = tar
|
||||
TAR = gtar
|
||||
GZIP = --best
|
||||
DEP_FILES = .deps/gdk.P .deps/gdkcolor.P .deps/gdkcursor.P \
|
||||
.deps/gdkdraw.P .deps/gdkfont.P .deps/gdkgc.P .deps/gdkglobals.P \
|
||||
@ -192,7 +184,7 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
|
||||
mostlyclean-libLTLIBRARIES:
|
||||
|
||||
clean-libLTLIBRARIES:
|
||||
-test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
|
||||
test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
|
||||
|
||||
distclean-libLTLIBRARIES:
|
||||
|
||||
@ -218,12 +210,12 @@ uninstall-libLTLIBRARIES:
|
||||
$(COMPILE) -c $<
|
||||
|
||||
mostlyclean-compile:
|
||||
-rm -f *.o core
|
||||
rm -f *.o core
|
||||
|
||||
clean-compile:
|
||||
|
||||
distclean-compile:
|
||||
-rm -f *.tab.c
|
||||
rm -f *.tab.c
|
||||
|
||||
maintainer-clean-compile:
|
||||
|
||||
@ -231,10 +223,10 @@ maintainer-clean-compile:
|
||||
$(LIBTOOL) --mode=compile $(COMPILE) -c $<
|
||||
|
||||
mostlyclean-libtool:
|
||||
-rm -f *.lo
|
||||
rm -f *.lo
|
||||
|
||||
clean-libtool:
|
||||
-rm -rf .libs
|
||||
rm -rf .libs
|
||||
|
||||
distclean-libtool:
|
||||
|
||||
@ -246,7 +238,7 @@ libgdk.la: $(libgdk_la_OBJECTS) $(libgdk_la_DEPENDENCIES)
|
||||
mostlyclean-binPROGRAMS:
|
||||
|
||||
clean-binPROGRAMS:
|
||||
-test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS)
|
||||
test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS)
|
||||
|
||||
distclean-binPROGRAMS:
|
||||
|
||||
@ -302,7 +294,7 @@ mostlyclean-tags:
|
||||
clean-tags:
|
||||
|
||||
distclean-tags:
|
||||
-rm -f TAGS ID
|
||||
rm -f TAGS ID
|
||||
|
||||
maintainer-clean-tags:
|
||||
|
||||
@ -313,7 +305,6 @@ subdir = gdk
|
||||
distdir: $(DISTFILES)
|
||||
here=`cd $(top_builddir) && pwd`; \
|
||||
top_distdir=`cd $(top_distdir) && pwd`; \
|
||||
distdir=`cd $(distdir) && pwd`; \
|
||||
cd $(top_srcdir) \
|
||||
&& $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu gdk/Makefile
|
||||
@for file in $(DISTFILES); do \
|
||||
@ -323,7 +314,7 @@ distdir: $(DISTFILES)
|
||||
|| cp -p $$d/$$file $(distdir)/$$file; \
|
||||
done
|
||||
|
||||
MKDEP = $(CC) -M $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)
|
||||
MKDEP = gcc -M $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)
|
||||
|
||||
DEPS_MAGIC := $(shell mkdir .deps > /dev/null 2>&1 || :)
|
||||
-include .deps/.P
|
||||
@ -339,7 +330,7 @@ clean-depend:
|
||||
distclean-depend:
|
||||
|
||||
maintainer-clean-depend:
|
||||
-rm -rf .deps
|
||||
rm -rf .deps
|
||||
|
||||
.deps/%.P: %.c
|
||||
@echo "Computing dependencies for $<..."
|
||||
@ -373,19 +364,19 @@ installdirs:
|
||||
|
||||
|
||||
mostlyclean-generic:
|
||||
-test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES)
|
||||
test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES)
|
||||
|
||||
clean-generic:
|
||||
-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
|
||||
test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
|
||||
|
||||
distclean-generic:
|
||||
-rm -f Makefile $(DISTCLEANFILES)
|
||||
-rm -f config.cache config.log stamp-h stamp-h[0-9]*
|
||||
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
||||
rm -f Makefile $(DISTCLEANFILES)
|
||||
rm -f config.cache config.log stamp-h stamp-h[0-9]*
|
||||
test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
||||
|
||||
maintainer-clean-generic:
|
||||
-test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
|
||||
-test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
|
||||
test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
|
||||
test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
|
||||
mostlyclean: mostlyclean-libLTLIBRARIES mostlyclean-compile \
|
||||
mostlyclean-libtool mostlyclean-binPROGRAMS \
|
||||
mostlyclean-tags mostlyclean-depend mostlyclean-generic
|
||||
@ -397,8 +388,8 @@ clean: clean-libLTLIBRARIES clean-compile clean-libtool \
|
||||
distclean: distclean-libLTLIBRARIES distclean-compile distclean-libtool \
|
||||
distclean-binPROGRAMS distclean-tags distclean-depend \
|
||||
distclean-generic clean
|
||||
-rm -f config.status
|
||||
-rm -f libtool
|
||||
rm -f config.status
|
||||
rm -f libtool
|
||||
|
||||
maintainer-clean: maintainer-clean-libLTLIBRARIES \
|
||||
maintainer-clean-compile maintainer-clean-libtool \
|
||||
|
||||
95
gdk/gdkcursors.h
Normal file
95
gdk/gdkcursors.h
Normal file
@ -0,0 +1,95 @@
|
||||
/* GDK - The GIMP Drawing Kit
|
||||
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Library General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Library General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Library General Public
|
||||
* License along with this library; if not, write to the Free
|
||||
* Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
*/
|
||||
GDK_NUM_GLYPHS = 154,
|
||||
GDK_X_CURSOR = 0,
|
||||
GDK_ARROW = 2,
|
||||
GDK_BASED_ARROW_DOWN = 4,
|
||||
GDK_BASED_ARROW_UP = 6,
|
||||
GDK_BOAT = 8,
|
||||
GDK_BOGOSITY = 10,
|
||||
GDK_BOTTOM_LEFT_CORNER = 12,
|
||||
GDK_BOTTOM_RIGHT_CORNER = 14,
|
||||
GDK_BOTTOM_SIDE = 16,
|
||||
GDK_BOTTOM_TEE = 18,
|
||||
GDK_BOX_SPIRAL = 20,
|
||||
GDK_CENTER_PTR = 22,
|
||||
GDK_CIRCLE = 24,
|
||||
GDK_CLOCK = 26,
|
||||
GDK_COFFEE_MUG = 28,
|
||||
GDK_CROSS = 30,
|
||||
GDK_CROSS_REVERSE = 32,
|
||||
GDK_CROSSHAIR = 34,
|
||||
GDK_DIAMOND_CROSS = 36,
|
||||
GDK_DOT = 38,
|
||||
GDK_DOTBOX = 40,
|
||||
GDK_DOUBLE_ARROW = 42,
|
||||
GDK_DRAFT_LARGE = 44,
|
||||
GDK_DRAFT_SMALL = 46,
|
||||
GDK_DRAPED_BOX = 48,
|
||||
GDK_EXCHANGE = 50,
|
||||
GDK_FLEUR = 52,
|
||||
GDK_GOBBLER = 54,
|
||||
GDK_GUMBY = 56,
|
||||
GDK_HAND1 = 58,
|
||||
GDK_HAND2 = 60,
|
||||
GDK_HEART = 62,
|
||||
GDK_ICON = 64,
|
||||
GDK_IRON_CROSS = 66,
|
||||
GDK_LEFT_PTR = 68,
|
||||
GDK_LEFT_SIDE = 70,
|
||||
GDK_LEFT_TEE = 72,
|
||||
GDK_LEFTBUTTON = 74,
|
||||
GDK_LL_ANGLE = 76,
|
||||
GDK_LR_ANGLE = 78,
|
||||
GDK_MAN = 80,
|
||||
GDK_MIDDLEBUTTON = 82,
|
||||
GDK_MOUSE = 84,
|
||||
GDK_PENCIL = 86,
|
||||
GDK_PIRATE = 88,
|
||||
GDK_PLUS = 90,
|
||||
GDK_QUESTION_ARROW = 92,
|
||||
GDK_RIGHT_PTR = 94,
|
||||
GDK_RIGHT_SIDE = 96,
|
||||
GDK_RIGHT_TEE = 98,
|
||||
GDK_RIGHTBUTTON = 100,
|
||||
GDK_RTL_LOGO = 102,
|
||||
GDK_SAILBOAT = 104,
|
||||
GDK_SB_DOWN_ARROW = 106,
|
||||
GDK_SB_H_DOUBLE_ARROW = 108,
|
||||
GDK_SB_LEFT_ARROW = 110,
|
||||
GDK_SB_RIGHT_ARROW = 112,
|
||||
GDK_SB_UP_ARROW = 114,
|
||||
GDK_SB_V_DOUBLE_ARROW = 116,
|
||||
GDK_SHUTTLE = 118,
|
||||
GDK_SIZING = 120,
|
||||
GDK_SPIDER = 122,
|
||||
GDK_SPRAYCAN = 124,
|
||||
GDK_STAR = 126,
|
||||
GDK_TARGET = 128,
|
||||
GDK_TCROSS = 130,
|
||||
GDK_TOP_LEFT_ARROW = 132,
|
||||
GDK_TOP_LEFT_CORNER = 134,
|
||||
GDK_TOP_RIGHT_CORNER = 136,
|
||||
GDK_TOP_SIDE = 138,
|
||||
GDK_TOP_TEE = 140,
|
||||
GDK_TREK = 142,
|
||||
GDK_UL_ANGLE = 144,
|
||||
GDK_UMBRELLA = 146,
|
||||
GDK_UR_ANGLE = 148,
|
||||
GDK_WATCH = 150,
|
||||
GDK_XTERM = 152,
|
||||
1316
gdk/gdkkeysyms.h
Normal file
1316
gdk/gdkkeysyms.h
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user