diff options
author | Peter Harris <pharris@opentext.com> | 2012-07-25 15:05:36 -0400 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2012-07-26 10:30:06 +1000 |
commit | 6d1037be26d8728300842de795a4dbe109d8e233 (patch) | |
tree | 46e5977f933adfcbe6cff2d0b49cd9a7ab3289b0 | |
parent | 4956bf2d66e6347344d4a1392b97f0505dc9c857 (diff) |
Build Xt13
Signed-off-by: Peter Harris <pharris@opentext.com>
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
-rw-r--r-- | configure.ac | 1 | ||||
-rw-r--r-- | xts5/Makefile.am | 2 | ||||
-rw-r--r-- | xts5/Xt13/.gitignore | 39 | ||||
-rw-r--r-- | xts5/Xt13/Makefile.am | 64 |
4 files changed, 105 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 08b1fbba..6622f781 100644 --- a/configure.ac +++ b/configure.ac @@ -193,6 +193,7 @@ xts5/Xt9/Makefile xts5/Xt10/Makefile xts5/Xt11/Makefile xts5/Xt12/Makefile +xts5/Xt13/Makefile xts5/SHAPE/Makefile xts5/XIproto/Makefile xts5/XI/Makefile diff --git a/xts5/Makefile.am b/xts5/Makefile.am index e0819f68..de107888 100644 --- a/xts5/Makefile.am +++ b/xts5/Makefile.am @@ -3,7 +3,7 @@ include common.mk SUBDIRS = . fonts src scenarios Xproto Xopen Xlib3 Xlib4 Xlib5 Xlib6 \ Xlib7 Xlib8 Xlib9 Xlib10 Xlib11 Xlib12 Xlib13 Xlib14 Xlib15 \ Xlib16 Xlib17 SHAPE XIproto XI Xt3 Xt4 Xt5 Xt6 Xt7 Xt8 Xt9 \ - Xt10 Xt11 Xt12 + Xt10 Xt11 Xt12 Xt13 noinst_HEADERS = include CLEANFILES = */*/tet_lock bin/xts-config bin/xts-run tetexec.cfg diff --git a/xts5/Xt13/.gitignore b/xts5/Xt13/.gitignore new file mode 100644 index 00000000..aeef2b36 --- /dev/null +++ b/xts5/Xt13/.gitignore @@ -0,0 +1,39 @@ +XtAddExposureToRegion +XtAllocateGC +XtAppError +XtAppErrorMsg +XtAppGetErrorDatabase +XtAppGetErrorDatabaseText +XtAppGetSelectionTimeout +XtAppSetErrorHandler +XtAppSetErrorMsgHandler +XtAppSetSelectionTimeout +XtAppSetWarningHandler +XtAppSetWarningMsgHandler +XtAppWarning +XtAppWarningMsg +XtCalloc +XtDisownSelection +XtFindFile/XtFindFile +XtFree +XtGetApplicationNameAndClass +XtGetGC +XtGetSelectionRequest +XtGetSelectionValue +XtGetSelectionValueIncremental +XtGetSelectionValues +XtGetSelectionValuesIncremental +XtLastTimestampProcessed +XtMalloc +XtNameToWidget +XtNew +XtNewString +XtNumber +XtOwnSelection +XtOwnSelectionIncremental +XtRealloc +XtReleaseGC +XtResolvePathname/XtResolvePathname +XtSetWMColormapWindows +XtTranslateCoords +XtWindowToWidget diff --git a/xts5/Xt13/Makefile.am b/xts5/Xt13/Makefile.am new file mode 100644 index 00000000..93894ce4 --- /dev/null +++ b/xts5/Xt13/Makefile.am @@ -0,0 +1,64 @@ +include ../common.mk +AUTOMAKE_OPTIONS = subdir-objects + +AM_CFLAGS = -I$(top_srcdir)/include \ + -I$(top_srcdir)/src/tet3/inc \ + -I$(top_srcdir)/xts5/include \ + $(XTS_CFLAGS) $(XAW_CFLAGS) +LDADD = $(top_builddir)/src/tet3/tcm/libtcmmain.la \ + $(top_builddir)/xts5/src/libxts5.la \ + $(top_builddir)/xts5/src/libXtTest/libXtTest.la \ + $(top_builddir)/xts5/src/libXtaw/libXtaw.la \ + $(top_builddir)/src/tet3/apilib/libapi.la \ + $(top_builddir)/src/tet3/apilib/libapi_s.la \ + $(XTS_LIBS) $(XAW_LIBS) + +testprogdir = $(libexecdir)/$(subdir) +nobase_testprog_PROGRAMS = $(tprogs) +BUILT_SOURCES = $(tprogs:=.c) +EXTRA_DIST = $(addsuffix .m,$(filter-out %_m,$(tprogs))) +DISTCLEANFILES = $(BUILT_SOURCES) + +tprogs = \ + XtAddExposureToRegion \ + XtAllocateGC \ + XtAppError \ + XtAppErrorMsg \ + XtAppGetErrorDatabase \ + XtAppGetErrorDatabaseText \ + XtAppGetSelectionTimeout \ + XtAppSetErrorHandler \ + XtAppSetErrorMsgHandler \ + XtAppSetSelectionTimeout \ + XtAppSetWarningHandler \ + XtAppSetWarningMsgHandler \ + XtAppWarning \ + XtAppWarningMsg \ + XtCalloc \ + XtDisownSelection \ + XtFindFile/XtFindFile \ + XtFree \ + XtGetApplicationNameAndClass \ + XtGetGC \ + XtGetSelectionRequest \ + XtGetSelectionValueIncremental \ + XtGetSelectionValue \ + XtGetSelectionValuesIncremental \ + XtGetSelectionValues \ + XtLastTimestampProcessed \ + XtMalloc \ + XtNameToWidget \ + XtNew \ + XtNewString \ + XtNumber \ + XtOwnSelectionIncremental \ + XtOwnSelection \ + XtRealloc \ + XtReleaseGC \ + XtResolvePathname/XtResolvePathname \ + XtSetWMColormapWindows \ + XtTranslateCoords \ + XtWindowToWidget + +# Data files for test programs +nobase_dist_testprog_DATA = $(srcdir)/*/data1 |