summaryrefslogtreecommitdiff
path: root/INSTALL
Commit message (Collapse)AuthorAge
* Added something on unicode_collation to INSTALL.John MacFarlane2013-09-19
|
* INSTALL: Added instructions for pandoc-citeproc.John MacFarlane2013-08-31
|
* Improved INSTALL instructions:John MacFarlane2013-08-15
| | | | | * Note binary package for OSX. * Added URL of github wiki page on installing the dev version.
* Improved INSTALL instructions.John MacFarlane2013-08-08
|
* Added info about CABALDIR.John MacFarlane2013-07-20
| | | | Modified from a patch by achalddave.
* Updated instructions for submodules to avoid confusion.Jamie F. Olson2013-03-20
|
* Use hsb2hs preprocessor instead of TH for embed_data_files.John MacFarlane2013-01-23
| | | | | This should work on Windows, unlike the TH solution with file-embed.
* Updated INSTALL with new flags.John MacFarlane2012-12-29
|
* Updated INSTALL for new test/benchmarks.John MacFarlane2012-07-26
|
* Add support for Slideous output.Jonas Smedegaard2012-05-24
|
* Updated INSTALL instructions for tests.John MacFarlane2012-04-27
|
* Textile reader quick clean-up and added support for LaTeX blocks and inlines.paul.rivier2012-04-17
|
* Added section in INSTALL on creating relocatable binary on windows.John MacFarlane2012-02-10
|
* Removed obsolete flag info in INSTALL.John MacFarlane2012-01-20
|
* Removed highlighting flag. Highlighting support is now standard.John MacFarlane2011-12-22
|
* ADded note in INSTALL about a workaround for OSX.John MacFarlane2011-08-19
|
* Removed citeproc flag and CPP conditionals.John MacFarlane2010-11-23
|
* Reintroduced 'library' cabal flag.John MacFarlane2010-07-21
| | | | | | | It is needed for the Windows installer, since if a library is produced, the binary can't be made relocatable. See http://www.haskell.org/ghc/docs/6.12.2/html/Cabal/builders.html section 4.1.2.3.
* Removed 'library' Cabal flag.John MacFarlane2010-04-10
| | | | | | | | | | | | | | | | Reason: starting with Cabal 1.8, installing pandoc with '-library +executable' did not work, since the build-depends in the Library stanza were ignored. The problem could be solved by repeating the build-depends in the Executable stanza, but this seems non-ideal (and might lead to errors later on). The '-library' option isn't so useful anyway, since to compile pandoc in the first place, you need a large number of Haskell libraries installed, and in this case, why balk at another? It was chiefly intended for packagers, but packagers will need to use a chroot environment anyway, and they can then simply copy the executable and not the library. Thanks to Jim Pryor for calling the problem to my attention in connection with an arch linux package.
* Tweaked INSTALL instructions.fiddlosopher2010-02-04
| | | | git-svn-id: https://pandoc.googlecode.com/svn/trunk@1833 788f1e2b-df1e-0410-8736-df70ead52e1b
* Updated INSTALL instructions.fiddlosopher2010-02-03
| | | | git-svn-id: https://pandoc.googlecode.com/svn/trunk@1832 788f1e2b-df1e-0410-8736-df70ead52e1b
* INSTALL: Updated description of Arch linux packages.fiddlosopher2008-09-14
| | | | git-svn-id: https://pandoc.googlecode.com/svn/trunk@1451 788f1e2b-df1e-0410-8736-df70ead52e1b
* INSTALL - added note on quick Mac OSX install method, using cabal install.fiddlosopher2008-09-14
| | | | git-svn-id: https://pandoc.googlecode.com/svn/trunk@1450 788f1e2b-df1e-0410-8736-df70ead52e1b
* INSTALL: Documented citeproc-hs support.fiddlosopher2008-09-13
| | | | git-svn-id: https://pandoc.googlecode.com/svn/trunk@1444 788f1e2b-df1e-0410-8736-df70ead52e1b
* More minor changes to INSTALL instructions.fiddlosopher2008-09-12
| | | | git-svn-id: https://pandoc.googlecode.com/svn/trunk@1443 788f1e2b-df1e-0410-8736-df70ead52e1b
* Small updates to INSTALL.fiddlosopher2008-09-12
| | | | git-svn-id: https://pandoc.googlecode.com/svn/trunk@1442 788f1e2b-df1e-0410-8736-df70ead52e1b
* Added to INSTALL instructions on installing cabal-install w/ macports.fiddlosopher2008-09-12
| | | | git-svn-id: https://pandoc.googlecode.com/svn/trunk@1439 788f1e2b-df1e-0410-8736-df70ead52e1b
* Pandoc is no longer a native debian package.fiddlosopher2008-09-06
| | | | | | | | | | | It is easier for releases if debian packaging is separate. + Removed debian directory and references to debian in Makefile and INSTALL. + Made COPYRIGHT and changelog standalone files rather than symlinks to debian directory. git-svn-id: https://pandoc.googlecode.com/svn/trunk@1422 788f1e2b-df1e-0410-8736-df70ead52e1b
* Updated INSTALL in light of new dependencies (utf8-string and zip-archive).fiddlosopher2008-09-06
| | | | git-svn-id: https://pandoc.googlecode.com/svn/trunk@1421 788f1e2b-df1e-0410-8736-df70ead52e1b
* Simplified and improved UTF8 handling:fiddlosopher2008-08-14
| | | | | | | | | | | | | | + Removed utf8-string cabal configuration flag. + Instead, we just include System.IO.UTF8 and Codec.Binary.UTF8.String from utf8-string package in the source tree, avoiding a dependency on utf8-string and avoiding crufty custom UTF8 code. (The old Text.Pandoc.UTF8 had problems with the getContents function.) + Removed lots of CPP directives that are no longer needed. + In Setup.hs, use '-i..' in running RunTests.hs, so the local UTF8 code will be found. git-svn-id: https://pandoc.googlecode.com/svn/trunk@1411 788f1e2b-df1e-0410-8736-df70ead52e1b
* Removed markdown2pdf and all references to it.fiddlosopher2008-08-10
| | | | git-svn-id: https://pandoc.googlecode.com/svn/trunk@1395 788f1e2b-df1e-0410-8736-df70ead52e1b
* Added Text.Pandoc.UTF8 as a backup for when utf8-string is not present.fiddlosopher2008-08-08
| | | | | | | | | | | | | + Added Text.Pandoc.UTF8 + Changed flag name from utf8 to utf8-string + Changed CPP MACRO from _UTF8 to _UTF8STRING + Import IO functions from Text.Pandoc.UTF8 when utf8-string not available. + Removed utf8-string dependency from debian/control. + Removed pandoc.cabal.ghc66; we no longer support GHC 6.6 + Modified INSTALL instructions git-svn-id: https://pandoc.googlecode.com/svn/trunk@1383 788f1e2b-df1e-0410-8736-df70ead52e1b
* INSTALL: Included instructions on installing utf8-string.fiddlosopher2008-08-02
| | | | git-svn-id: https://pandoc.googlecode.com/svn/trunk@1371 788f1e2b-df1e-0410-8736-df70ead52e1b
* Added note on utf8-string dependency to INSTALL.fiddlosopher2008-08-01
| | | | git-svn-id: https://pandoc.googlecode.com/svn/trunk@1353 788f1e2b-df1e-0410-8736-df70ead52e1b
* Added 'library' and 'executable' configuration flags.fiddlosopher2008-07-31
| | | | | | | | Cabal can now be told to build just the library or just the executable. Updated INSTALL accordingly. git-svn-id: https://pandoc.googlecode.com/svn/trunk@1346 788f1e2b-df1e-0410-8736-df70ead52e1b
* Added note to INSTALL that Cabal >= 1.2 is required for build.fiddlosopher2008-07-10
| | | | | | | Resolves Issue #74. git-svn-id: https://pandoc.googlecode.com/svn/trunk@1296 788f1e2b-df1e-0410-8736-df70ead52e1b
* Revert "Added note in INSTALL about doing 'make templates' if installing ↵fiddlosopher2008-02-09
| | | | | | | | | | using Cabal from svn." This reverts commit 76c49ebc6361875d97825bab25e173742f0a90ab. No longer needed, since we'll do templates in cabal configure step. git-svn-id: https://pandoc.googlecode.com/svn/trunk@1227 788f1e2b-df1e-0410-8736-df70ead52e1b
* Updated INSTALL with instructions for compiling in syntax highlighting support.fiddlosopher2008-02-09
| | | | git-svn-id: https://pandoc.googlecode.com/svn/trunk@1223 788f1e2b-df1e-0410-8736-df70ead52e1b
* Added note in INSTALL about doing 'make templates' if installing using Cabal ↵fiddlosopher2008-01-24
| | | | | | from svn. git-svn-id: https://pandoc.googlecode.com/svn/trunk@1196 788f1e2b-df1e-0410-8736-df70ead52e1b
* Updated INSTALL with instructions for getting GHC + libraries using apt-get.fiddlosopher2008-01-16
| | | | git-svn-id: https://pandoc.googlecode.com/svn/trunk@1190 788f1e2b-df1e-0410-8736-df70ead52e1b
* Added Arch linux instructions to INSTALL.fiddlosopher2008-01-14
| | | | git-svn-id: https://pandoc.googlecode.com/svn/trunk@1188 788f1e2b-df1e-0410-8736-df70ead52e1b
* + Makefile now checks GHC version. If GHC is 6.6, pandoc.cabal.ghc66fiddlosopher2007-11-25
| | | | | | | | | | | | | is copied to pandoc.cabal, and the old pandoc.cabal is copied to pandoc.cabal.orig. Otherwise, pandoc.cabal is copied to pandoc.cabal.orig but otherwise unmodified. This way, the Makefile will work properly with either GHC 6.6 or 6.8. + The changes in debian/rules from r1066 have been reverted, since they are no longer needed. Also, debian/rules has been converted to UTF-8. + INSTALL instructions have been updated accordingly. git-svn-id: https://pandoc.googlecode.com/svn/trunk@1095 788f1e2b-df1e-0410-8736-df70ead52e1b
* Modified build procedure to allow compilation with GHC 6.8:fiddlosopher2007-11-06
| | | | | | | | | | | | | | | + pandoc.cabal now uses Cabal configurations and requires Cabal >=1.2. + An alternative pandoc.cabal.ghc66 is provided for those who have older versions of Cabal. + Debian build process has been modified to use pandoc.cabal.ghc66, as a temporary measure until GHC 6.8 gets into debian unstable. + INSTALL instructions have been updated. + Makefile has been updated to accommodate changes in pandoc.cabal. + pandoc.cabal.ghc68 has been removed, since the default version now works with GHC 6.8. git-svn-id: https://pandoc.googlecode.com/svn/trunk@1066 788f1e2b-df1e-0410-8736-df70ead52e1b
* Reverted back to state as of r1062. The template haskell changesfiddlosopher2007-11-03
| | | | | | | are more trouble than they're worth. git-svn-id: https://pandoc.googlecode.com/svn/trunk@1064 788f1e2b-df1e-0410-8736-df70ead52e1b
* Use template haskell to avoid the need for templates:fiddlosopher2007-11-03
| | | | | | | | | | | | | | | | | | + Added library Text.Pandoc.Include, with a template haskell function $(includeStrFrom fname) to include a file as a string constant at compile time. + This removes the need for the 'templates' directory or Makefile target. These have been removed. + The base source directory has been changed from src to . + A new 'data' directory has been added, containing the ASCIIMathML.js script, writer headers, and S5 files. + The src/wrappers directory has been moved to 'wrappers'. + The Text.Pandoc.ASCIIMathML library is no longer needed, since Text.Pandoc.Writers.HTML can use includeStrFrom to include the ASCIIMathML.js code directly. It has been removed. git-svn-id: https://pandoc.googlecode.com/svn/trunk@1063 788f1e2b-df1e-0410-8736-df70ead52e1b
* Removed local references to Portfile, since pandoc is now in thefiddlosopher2007-08-27
| | | | | | | MacPorts repository. Updated INSTALL instructions and website. git-svn-id: https://pandoc.googlecode.com/svn/trunk@919 788f1e2b-df1e-0410-8736-df70ead52e1b
* Added note about 'yourusername' in MacPorts section.fiddlosopher2007-08-26
| | | | git-svn-id: https://pandoc.googlecode.com/svn/trunk@914 788f1e2b-df1e-0410-8736-df70ead52e1b
* Added Cabal installation method to INSTALL.fiddlosopher2007-08-26
| | | | git-svn-id: https://pandoc.googlecode.com/svn/trunk@909 788f1e2b-df1e-0410-8736-df70ead52e1b
* Removed osx package targets in Makefile, and documentation forfiddlosopher2007-08-26
| | | | | | | | | them in INSTALL. osx packaging was not working well, because of the binary's dependency on a dynamic library GMP. A MacPorts port will be provided instead. git-svn-id: https://pandoc.googlecode.com/svn/trunk@905 788f1e2b-df1e-0410-8736-df70ead52e1b
* Updated INSTALL instructions.fiddlosopher2007-08-26
| | | | git-svn-id: https://pandoc.googlecode.com/svn/trunk@903 788f1e2b-df1e-0410-8736-df70ead52e1b