diff --git a/change_log.txt b/change_log.txt index da956811b3..8c190dc62e 100644 --- a/change_log.txt +++ b/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 email address. +2007-June-13 UPDATE Richard A Burton +================================================================================ ++ 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 diff --git a/libs.linux b/libs.linux index 5dcc2c10b6..48fa7a9cb4 100644 --- a/libs.linux +++ b/libs.linux @@ -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