Browse Source

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

pull/1/head
raburton 19 years ago
parent
commit
13f2e75bfa
  1. 5
      change_log.txt
  2. 13
      libs.linux

5
change_log.txt

@ -4,6 +4,11 @@ Started 2007-June-11
Please add newer entries at the top, list the date and your name with Please add newer entries at the top, list the date and your name with
email address. 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> 2007-June-11 UPDATE Richard A Burton <richardaburton@gmail.com>

13
libs.linux

@ -10,13 +10,12 @@ FINAL = 1
# You must comment or uncomment this line to disable/enable python support # You must comment or uncomment this line to disable/enable python support
#KICAD_PYTHON = 1 #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 ifdef KICAD_PYTHON
PYTHON_VERSION=2.3 PYTHON_VERSION=2.3

Loading…
Cancel
Save