dynamic link by default (really, who wants to use static linking?)

This commit is contained in:
raburton 2007-06-13 13:26:20 +00:00
parent 67a04a105b
commit 13f2e75bfa
2 changed files with 11 additions and 7 deletions

View File

@ -4,6 +4,11 @@ Started 2007-June-11
Please add newer entries at the top, list the date and your name with
email address.
2007-June-13 UPDATE Richard A Burton <richardaburton@gmail.com>
================================================================================
+ build:
dynamic linking by default, use make -f makefile.gtk KICAD_STATIC_LINK=1
or uncomment the bit in libs.linux for static
2007-June-11 UPDATE Richard A Burton <richardaburton@gmail.com>

View File

@ -10,13 +10,12 @@ FINAL = 1
# You must comment or uncomment this line to disable/enable python support
#KICAD_PYTHON = 1
# You must comment this line for dynamic link (or build with "make -f makefile.gtk KICAD_STATIC_LINK=0")
# dynamic link is less difficult than static link choose it if you have problems (libs not found, or
# unresolved references), or if kicad is running only on YOUR system.
ifndef KICAD_PYTHON
KICAD_STATIC_LINK = 1
endif
# You must uncomment these lines for static link (or build with "make -f makefile.gtk KICAD_STATIC_LINK=1")
# dynamic link is less difficult than static link and is what you would normally want
# to use if kicad is running only on your system or one with same level of libraries.
#ifndef KICAD_PYTHON
#KICAD_STATIC_LINK = 1
#endif
ifdef KICAD_PYTHON
PYTHON_VERSION=2.3