Overview
Comment: | Adjust configure.ac to recent changes. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
3cc9e58d14aef423da1c0061ab12b368 |
User & Date: | js on 2010-07-30 01:24:23 |
Other Links: | manifest | tags |
Context
2010-08-10
| ||
14:30 | Fix a bug in buildsys.m4 that would cause some shells to fail. check-in: 8d783666c4 user: js tags: trunk | |
2010-07-30
| ||
01:24 | Adjust configure.ac to recent changes. check-in: 3cc9e58d14 user: js tags: trunk | |
2010-07-29
| ||
18:23 | More parallelism. check-in: 1f2625c8b1 user: js tags: trunk | |
Changes
Modified buildsys.mk.in from [e7585732d0] to [d486b3ab86].
︙ | ︙ | |||
44 45 46 47 48 49 50 | LDFLAGS = @LDFLAGS@ LDFLAGS_RPATH = @LDFLAGS_RPATH@ LIBS = @LIBS@ PYTHON_FLAGS = @PYTHON_FLAGS@ PROG_IMPLIB_NEEDED = @PROG_IMPLIB_NEEDED@ PROG_IMPLIB_LDFLAGS = @PROG_IMPLIB_LDFLAGS@ PROG_SUFFIX = @EXEEXT@ | < < | 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | LDFLAGS = @LDFLAGS@ LDFLAGS_RPATH = @LDFLAGS_RPATH@ LIBS = @LIBS@ PYTHON_FLAGS = @PYTHON_FLAGS@ PROG_IMPLIB_NEEDED = @PROG_IMPLIB_NEEDED@ PROG_IMPLIB_LDFLAGS = @PROG_IMPLIB_LDFLAGS@ PROG_SUFFIX = @EXEEXT@ LIB_CFLAGS = @LIB_CFLAGS@ LIB_LDFLAGS = @LIB_LDFLAGS@ LIB_PREFIX = @LIB_PREFIX@ LIB_SUFFIX = @LIB_SUFFIX@ PLUGIN_CFLAGS = @PLUGIN_CFLAGS@ PLUGIN_LDFLAGS = @PLUGIN_LDFLAGS@ PLUGIN_SUFFIX = @PLUGIN_SUFFIX@ INSTALL_LIB = @INSTALL_LIB@ UNINSTALL_LIB = @UNINSTALL_LIB@ CLEAN_LIB = @CLEAN_LIB@ LN_S = @LN_S@ |
︙ | ︙ |
Modified configure.ac from [bcc3c398ac] to [1abf375e1b].
︙ | ︙ | |||
23 24 25 26 27 28 29 | dnl If you want to build static libraries (for example build part of your dnl project as a static library and link it to the final program later so you dnl can easier split your program into multiple directories), you need to dnl uncomment the following line. dnl AC_PATH_TOOL(AR, ar) | | < < < < < < | 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | dnl If you want to build static libraries (for example build part of your dnl project as a static library and link it to the final program later so you dnl can easier split your program into multiple directories), you need to dnl uncomment the following line. dnl AC_PATH_TOOL(AR, ar) dnl If you want to build a shared library, you need to call BUILDSYS_SHARED_LIB. dnl It will automatically set the required LIB_* and PLUGIN_* variables. dnl See m4/buildsys.m4 for more details. dnl Uncomment the following line if you want to build a shared library. dnl BUILDSYS_SHARED_LIB dnl If your program uses plugins and should run on win32 as well, you need to dnl uncomment the following line dnl BUILDSYS_PROG_IMPLIB dnl You need to call this to generate the .deps files required by the buildsys. |
︙ | ︙ |