f457c9608c
* BUG: Fix the component template script. [GB.FORM] * BUG: SidePanel controls now behave correctly when they are put inside a TabStrip. [GB.GMP] * NEW: Skeleton for a new component based on the GNU "big numbers" GMP library. [GB.GTK] * NEW: TabStrip.FindIndex() is a new method that returns the index of parent tab of a specific child. * BUG: Fix Control.Raise() and Control.Lower() method when the parent is a TabStrip. [GB.QT4] * NEW: TabStrip.FindIndex() is a new method that returns the index of parent tab of a specific child. [GB.QT4.EXT] * NEW: Editor: The current line is now visible when using a dark highlight theme. git-svn-id: svn://localhost/gambas/trunk@5016 867c0c6c-44f3-4631-809d-bfa615b0a4ec
17 lines
338 B
Text
17 lines
338 B
Text
dnl ---- configure.ac for gb.gmp
|
|
|
|
AC_INIT(configure.ac)
|
|
AC_CONFIG_MACRO_DIR([m4])
|
|
GB_INIT(gb.gmp)
|
|
AC_PROG_LIBTOOL
|
|
GB_COMPONENT(
|
|
gmp,
|
|
GMP,
|
|
gb.gmp,
|
|
[src],
|
|
[GB_FIND(gmp.h, /usr/local /usr, include)],
|
|
[GB_FIND(libgmp.$SHLIBEXT, /usr/local /usr, lib)],
|
|
[$C_LIB -lgmp],
|
|
[ ])
|
|
AC_OUTPUT( Makefile src/Makefile )
|
|
GB_PRINT_MESSAGES
|