gambas-source-code/gb.gmp/configure.ac
Benoît Minisini f457c9608c [CONFIGURATION]
* 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
2012-08-07 14:04:55 +00:00

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