summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS6
-rw-r--r--README.OSX21
-rw-r--r--configure.ac2
3 files changed, 27 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 8191142..25f3870 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,10 @@
flpsed ChangeLog
=================
-
+flpsed-0.3.4
+ - Switched to automake/autoconf (thanks to Peter Seiderer).
+ - Fixed a compile problem on amd64 (Debian bug 303406).
+ - Added compilation instructions for Mac OS X (by Michael Grossman).
+
flpsed-0.3.3
- Implement PDF import/export based on pdftops and ps2pdf.
- Fix segfault when using arrow keys on empty document
diff --git a/README.OSX b/README.OSX
new file mode 100644
index 0000000..8047266
--- /dev/null
+++ b/README.OSX
@@ -0,0 +1,21 @@
+
+To compile flpsed on Mac OS X Panther, first make sure you have Fink
+installed. Make sure Fink is set up to install unstable packages.
+(See the Fink Docs about this at the Fink website.)
+
+Then use Fink to install the following packages.
+
+Apple X11, xfree, or xorg
+ If you choose Apple X11, make sure you install X11-SDK which is
+ found on the Panther install disks.
+
+fltk-x11
+fltk-x11-shlibs
+ghostscript
+
+DO NOT INSTALL the Fink package called fltk, as this appears to be for
+building aqua fltk applications rather than X11 apps.
+
+You must unset the C-preprocessor macro __APPLE__ to get flpsed to compile
+under OS X. This is done by adding -U__APPLE__ to the CFLAGS in the Makefile.
+
diff --git a/configure.ac b/configure.ac
index 950a071..aecf0dc 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.59)
-AC_INIT(flpsed, 0.3.3, Johannes.Hofmann@gmx.de)
+AC_INIT(flpsed, 0.3.4, Johannes.Hofmann@gmx.de)
AM_INIT_AUTOMAKE
AC_CONFIG_SRCDIR([src/GsWidget.H])
AC_CONFIG_HEADER(config.h)