summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSøren Sandmann Pedersen <sandmann@daimi.au.dk>2005-07-12 17:41:52 +0000
committerSøren Sandmann Pedersen <sandmann@daimi.au.dk>2005-07-12 17:41:52 +0000
commitfc1f512d7cd7876f79190511315fe219667b2e81 (patch)
treec5b72cf2af38b04e20197ffec0ae681cf7f26abc
parent6bc36c6c67fed984af4f60224a7ea693d1b7d217 (diff)
Build system for xprint
-rw-r--r--AUTHORS0
-rw-r--r--COPYING0
-rw-r--r--ChangeLog0
-rw-r--r--INSTALL0
-rw-r--r--Makefile.am161
-rw-r--r--NEWS0
-rw-r--r--README0
-rwxr-xr-xautogen.sh13
-rw-r--r--configure.ac47
9 files changed, 221 insertions, 0 deletions
diff --git a/AUTHORS b/AUTHORS
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/AUTHORS
diff --git a/COPYING b/COPYING
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/COPYING
diff --git a/ChangeLog b/ChangeLog
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/ChangeLog
diff --git a/INSTALL b/INSTALL
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/INSTALL
diff --git a/Makefile.am b/Makefile.am
new file mode 100644
index 0000000..e97ae06
--- /dev/null
+++ b/Makefile.am
@@ -0,0 +1,161 @@
+#
+# Copyright 2005 Red Hat, Inc.
+#
+# Permission to use, copy, modify, distribute, and sell this software and its
+# documentation for any purpose is hereby granted without fee, provided that
+# the above copyright notice appear in all copies and that both that
+# copyright notice and this permission notice appear in supporting
+# documentation, and that the name of Red Hat not be used in
+# advertising or publicity pertaining to distribution of the software without
+# specific, written prior permission. Red Hat makes no
+# representations about the suitability of this software for any purpose. It
+# is provided "as is" without express or implied warranty.
+#
+# RED HAT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
+# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
+# EVENT SHALL RED HAT BE LIABLE FOR ANY SPECIAL, INDIRECT OR
+# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
+# DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+# PERFORMANCE OF THIS SOFTWARE.
+
+bin_PROGRAMS = xedit
+noinst_LIBRARIES = liblisp.a libre.a libmp.a
+
+#
+# libmp.a
+#
+
+libmp_a_CFLAGS =
+libmp_a_SOURCES = \
+ lisp/mp/mp.c \
+ lisp/mp/mp.h \
+ lisp/mp/mpi.c \
+ lisp/mp/mpr.c
+
+#
+# liblisp.a
+#
+
+liblisp_a_CFLAGS = -I$(top_srcdir)/lisp/re -I$(top_srcdir)/lisp/mp -DLISP -DLISPDIR=\"$(libdir)/X11/xedit/lisp\"
+liblisp_a_LIBADD = libmp.a
+liblisp_a_SOURCES = \
+ lisp/bytecode.c \
+ lisp/bytecode.h \
+ lisp/core.c \
+ lisp/core.h \
+ lisp/debugger.c \
+ lisp/debugger.h \
+ lisp/format.c \
+ lisp/format.h \
+ lisp/hash.c \
+ lisp/hash.h \
+ lisp/helper.c \
+ lisp/helper.h \
+ lisp/internal.h \
+ lisp/io.c \
+ lisp/io.h \
+ lisp/lisp.c \
+ lisp/lisp.h \
+ lisp/lsp.c \
+ lisp/math.c \
+ lisp/math.h \
+ lisp/package.c \
+ lisp/package.h \
+ lisp/pathname.c \
+ lisp/pathname.h \
+ lisp/private.h \
+ lisp/read.c \
+ lisp/read.h \
+ lisp/regex.c \
+ lisp/regex.h \
+ lisp/require.c \
+ lisp/require.h \
+ lisp/stream.c \
+ lisp/stream.h \
+ lisp/string.c \
+ lisp/string.h \
+ lisp/struct.c \
+ lisp/struct.h \
+ lisp/time.c \
+ lisp/time.h \
+ lisp/write.c \
+ lisp/write.h \
+ lisp/xedit.c \
+ lisp/xedit.h
+
+#
+# libre.a
+#
+
+libre_a_CFLAGS =
+libre_a_SOURCES = \
+ lisp/re/re.c \
+ lisp/re/rec.c \
+ lisp/re/re.h \
+ lisp/re/reo.c \
+ lisp/re/rep.h \
+ lisp/re/tests.c
+
+#
+# xedit
+#
+
+xedit_CFLAGS = $(DEP_CFLAGS) -I$(top_srcdir)/lisp/re -D_BSD_SOURCE -DXEDIT -DINCLUDE_XPRINT_SUPPORT
+xedit_LDADD = $(DEP_LIBS) libre.a liblisp.a libmp.a -lm
+
+xedit_SOURCES = \
+ commands.c \
+ hook.c \
+ ispell.c \
+ lisp.c \
+ options.c \
+ realpath.c \
+ strcasecmp.c \
+ util.c \
+ xedit.c \
+ xedit.h
+
+if XAW_USE_XPRINT
+xedit_CFLAGS += -DINCLUDE_XPRINT_SUPPORT
+
+xedit_SOURCES += \
+ print.c \
+ printdialog.c \
+ printdialog.h \
+ printdialogprivates.h \
+ print.h
+endif
+
+# App default files (*.ad)
+
+appdefaultdir = $(sysconfdir)/X11/app-defaults
+
+
+APPDEFAULTFILES = \
+ Xedit-color \
+ Xedit
+
+if XAW_USE_XPRINT
+Xedit.ad:
+ cp $(top_srcdir)/Xedit-xprint.ad Xedit.ad
+else
+Xedit.ad:
+ cp $(top_srcdir)/Xedit-noxprint.ad Xedit.ad
+endif
+
+$(APPDEFAULTFILES): %: %.ad
+ cp $< $@
+
+appdefault_DATA = $(APPDEFAULTFILES)
+
+EXTRA_DIST = lisp/compile.c Xedit-color.ad \
+ Xedit-xprint.ad Xedit-noxprint.ad \
+ ./lisp/env.c \
+ lisp/mathimp.c
+
+
+
+CLEANFILES = $(APPDEFAULTFILES) Xedit.ad
+
+
diff --git a/NEWS b/NEWS
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/NEWS
diff --git a/README b/README
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/README
diff --git a/autogen.sh b/autogen.sh
new file mode 100755
index 0000000..e81f989
--- /dev/null
+++ b/autogen.sh
@@ -0,0 +1,13 @@
+#! /bin/sh
+
+srcdir=`dirname $0`
+test -z "$srcdir" && srcdir=.
+
+ORIGDIR=`pwd`
+cd $srcdir
+
+autoreconf -v --install || exit 1
+cd $ORIGDIR || exit $?
+
+$srcdir/configure --enable-maintainer-mode "$@"
+
diff --git a/configure.ac b/configure.ac
new file mode 100644
index 0000000..8233863
--- /dev/null
+++ b/configure.ac
@@ -0,0 +1,47 @@
+
+dnl Copyright 2005 Red Hat, Inc.
+dnl
+dnl Permission to use, copy, modify, distribute, and sell this software and its
+dnl documentation for any purpose is hereby granted without fee, provided that
+dnl the above copyright notice appear in all copies and that both that
+dnl copyright notice and this permission notice appear in supporting
+dnl documentation, and that the name of Red Hat not be used in
+dnl advertising or publicity pertaining to distribution of the software without
+dnl specific, written prior permission. Red Hat makes no
+dnl representations about the suitability of this software for any purpose. It
+dnl is provided "as is" without express or implied warranty.
+dnl
+dnl RED HAT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
+dnl INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
+dnl EVENT SHALL RED HAT BE LIABLE FOR ANY SPECIAL, INDIRECT OR
+dnl CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
+dnl DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+dnl TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+dnl PERFORMANCE OF THIS SOFTWARE.
+dnl
+dnl Process this file with autoconf to create configure.
+
+AC_PREREQ([2.57])
+AC_INIT(xedit,[7.0], [xorg@freedesktop.org],xedit)
+AM_INIT_AUTOMAKE([dist-bzip2])
+AM_MAINTAINER_MODE
+
+AM_CONFIG_HEADER(config.h)
+
+AC_PROG_CC
+AC_PROG_INSTALL
+AC_PROG_RANLIB
+
+# Checks for pkg-config packages
+XAW_CHECK_XPRINT_SUPPORT(DEP)
+if test "x$xaw_use_xprint" = "xyes" ; then
+ PKG_CHECK_MODULES(XPRINT_UTIL, xprintutil)
+
+ DEP_CFLAGS="$DEP_CFLAGS $XPRINT_UTIL_CFLAGS"
+ DEP_LIBS="$DEP_LIBS $XPRINT_UTIL_LIBS"
+fi
+
+AC_SUBST(DEP_CFLAGS)
+AC_SUBST(DEP_LIBS)
+
+AC_OUTPUT([Makefile])