summaryrefslogtreecommitdiff
path: root/bootstrap.sh
Commit message (Collapse)AuthorAgeFilesLines
* use current macOS naming style consistentlyMike Frysinger2021-10-301-1/+1
|
* bootstrap: tweak sed script to try and make it pass on macOSMike Frysinger2021-02-201-1/+1
|
* bootstrap: fix config.h.cmake generation (#622)Mike Frysinger2021-02-201-1/+1
| | | | | The generated header file was manually changed, but rerunning this script will change it back. Fix the script to use the new format.
* scripts: clean up various shellcheck warningsMike Frysinger2021-02-081-1/+1
| | | | Should hopefully not break anything :).
* \b is not support in MacOS sedwillson-chen2019-10-091-1/+1
|
* fix MacOS sed error when running bootstrap.shwillson-chen2019-10-091-1/+1
|
* Remove Git ident attributesPeter Kokot2018-06-271-1/+0
| | | | | | | | Git ident attributes were in most cases utilized with SVN and keywords substitutions, where $Id$ were replaced with certain revision from the repository. In Git this functionality is different. Each $Id$ needs to be defined in .gitattributes file to be effective. This patch removes unused and outdated attributes.
* make gd/gd2 image formats optional #428Mike Frysinger2018-01-301-1/+2
| | | | | We still enable them by default, but we'll probably flip them off in the next major release series.
* Remove apple-gcc42 from bootstrap adviceTim D. Smith2018-01-241-1/+1
| | | The package doesn't exist anymore (and Xcode clang is good now).
* travis: convert OS X build to common autoconf+cmake logicMike Frysinger2016-05-211-2/+4
| | | | This gets us the same coverage as Linux.
* docs: clean up a bit and support `NaturalDocs`Mike Frysinger2016-05-181-9/+4
| | | | | Some installs use `NaturalDocs` instead of `naturaldocs`, so add support for either form.
* configure/cmake: unify header checks and config.h generationMike Frysinger2016-05-171-1/+5
| | | | | Rather than hand maintain config.h.cmake (which is already out of date), re-use the autogenerated config.h from autoheader.
* bootstrap: switch to autoreconfMike Frysinger2016-05-171-36/+9
| | | | This is simpler and handles all the right subtools for us.
* bootstrap.sh now offers build tips on OS X and defaults to glibtoolizeNathanael Jones2014-10-021-0/+4
|
* Added beginnings of an updated manualChris Reuter2013-11-181-0/+12
| | | | | | | | | | | This changeset adds scripts and frontmatter for a user manual for LibGD. The manual is written using naturaldoc. That is, the actual manual (minus some front-matter taken from the manual for version 2.0.36) is generated from specially-formatted comments in the source code. bootstrap.sh has been modified to also trigger generation of the manual.
* We have moved to gitTakeshi Abe2013-04-241-1/+1
|
* Fix build with autotools.Vincent Bernat2013-04-071-0/+37
`configure.ac` and `bootstrap.sh` are moved in the top directory. `bootstrap.sh` is completed to execute `libtoolize`. The list of files to clean is reduced. Other files can be cleaned with `make distclean`. `src/Makefile.am` is fixed for missing `gd_nnquant.c` dependency. `ACX_PTHREAD` macro is moved to a `m4` directory to make `configure.ac` easier to read. --HG-- branch : fix/autotools rename : src/bootstrap.sh => bootstrap.sh rename : src/configure.ac => configure.ac