gambas-source-code/TEMPLATE/template/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

70 lines
1.1 KiB
Text

dnl ---- configure.ac for __COMPONENT
AC_INIT(configure.ac)
AC_CONFIG_MACRO_DIR([m4])
GB_INIT(__COMPONENT)
AC_PROG_LIBTOOL
#if __USE_XWINDOW || __USE_QT
GB_CHECK_XWINDOW
#endif
#if __USE_QT
GB_FIND_QT_MOC
#endif
#if __USE_PKGCONFIG
GB_COMPONENT_PKG_CONFIG(
__NAME,
__UNAME,
__COMPONENT,
[src],
__PKGCONFIG_NAME)
#else
#if __USE_C
#define __LIBRARY_C $C_LIB
#else
#define __LIBRARY_C
#endif
#if __USE_CPP
#define __LIBRARY_CPP $CXX_LIB
#else
#define __LIBRARY_CPP
#endif
#if __USE_THREAD
#define __LIBRARY_THREAD $THREAD_LIB
#define __INCLUDE_THREAD $THREAD_INC
#else
#define __LIBRARY_THREAD
#define __INCLUDE_THREAD
#endif
GB_COMPONENT(
__NAME,
__UNAME,
__COMPONENT,
[src],
#ifdef __SEARCH_INCLUDE
[GB_FIND(__SEARCH_INCLUDE, __SEARCH_INCLUDE_PATH, __SEARCH_INCLUDE_DIR)],
#else
[],
#endif
#ifdef __SEARCH_LIBRARY
[GB_FIND(__SEARCH_LIBRARY, __SEARCH_LIBRARY_PATH, __SEARCH_LIBRARY_DIR)],
#else
[],
#endif
[__LIBRARY_C __LIBRARY_CPP __LIBRARY_THREAD __LIBRARY],
[__INCLUDE_THREAD __INCLUDE])
#endif
AC_OUTPUT( \
Makefile \
src/Makefile \
)
GB_PRINT_MESSAGES