diff options
author | Johannes Hofmann <johannes.hofmann@gmx.de> | 2005-04-07 16:19:51 +0000 |
---|---|---|
committer | Johannes Hofmann <johannes.hofmann@gmx.de> | 2005-04-07 16:19:51 +0000 |
commit | c1b3c6da0aa40774c74180e7175eb619aee01cfe (patch) | |
tree | f2669dc63bd4b070aad01e6141c76d364f39ba2a | |
parent | 74cb200945b6080aa0b3e8bb900d3cc58685904e (diff) |
OS X installation instructions by Michael Grossman.
OS X installation instructions by Michael Grossman.
-rw-r--r-- | NEWS | 6 | ||||
-rw-r--r-- | README.OSX | 21 | ||||
-rw-r--r-- | configure.ac | 2 |
3 files changed, 27 insertions, 2 deletions
@@ -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) |